Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: webrtc/modules/audio_device/win/audio_device_core_win.h

Issue 2933953003: Fix play block size mismatch in Win audio device. (Closed)
Patch Set: fix format Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_device/win/audio_device_core_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 306
307 HANDLE _hGetCaptureVolumeThread; 307 HANDLE _hGetCaptureVolumeThread;
308 HANDLE _hSetCaptureVolumeThread; 308 HANDLE _hSetCaptureVolumeThread;
309 HANDLE _hSetCaptureVolumeEvent; 309 HANDLE _hSetCaptureVolumeEvent;
310 310
311 HANDLE _hMmTask; 311 HANDLE _hMmTask;
312 312
313 UINT _playAudioFrameSize; 313 UINT _playAudioFrameSize;
314 uint32_t _playSampleRate; 314 uint32_t _playSampleRate;
315 uint32_t _devicePlaySampleRate; 315 uint32_t _devicePlaySampleRate;
316 uint32_t _playBlockSizePerChannel; 316 uint32_t _playBlockSizeInFrames;
317 uint32_t _playBlockSize; 317 uint32_t _playBlockSizeInSamples;
318 uint32_t _devicePlayBlockSize; 318 uint32_t _devicePlayBlockSize;
319 uint32_t _playChannels; 319 uint32_t _playChannels;
320 uint32_t _sndCardPlayDelay; 320 uint32_t _sndCardPlayDelay;
321 UINT64 _writtenSamples; 321 UINT64 _writtenSamples;
322 LONGLONG _playAcc; 322 LONGLONG _playAcc;
323 323
324 UINT _recAudioFrameSize; 324 UINT _recAudioFrameSize;
325 uint32_t _recSampleRate; 325 uint32_t _recSampleRate;
326 uint32_t _recBlockSize; 326 uint32_t _recBlockSize;
327 uint32_t _recChannels; 327 uint32_t _recChannels;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 uint16_t _newMicLevel; 365 uint16_t _newMicLevel;
366 366
367 mutable char _str[512]; 367 mutable char _str[512];
368 }; 368 };
369 369
370 #endif // #if (_MSC_VER >= 1400) 370 #endif // #if (_MSC_VER >= 1400)
371 371
372 } // namespace webrtc 372 } // namespace webrtc
373 373
374 #endif // WEBRTC_AUDIO_DEVICE_AUDIO_DEVICE_CORE_WIN_H_ 374 #endif // WEBRTC_AUDIO_DEVICE_AUDIO_DEVICE_CORE_WIN_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_device/win/audio_device_core_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698