summaryrefslogtreecommitdiffstats
path: root/media/audio/win/waveout_output_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/audio/win/waveout_output_win.h')
-rw-r--r--media/audio/win/waveout_output_win.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/media/audio/win/waveout_output_win.h b/media/audio/win/waveout_output_win.h
index 7bee81e..7437416 100644
--- a/media/audio/win/waveout_output_win.h
+++ b/media/audio/win/waveout_output_win.h
@@ -7,6 +7,7 @@
#include <windows.h>
#include <mmsystem.h>
+#include <mmreg.h>
#include "base/basictypes.h"
#include "base/scoped_handle_win.h"
@@ -100,13 +101,13 @@ class PCMWaveOutAudioOutputStream : public AudioOutputStream {
UINT device_id_;
// Windows native structure to encode the format parameters.
- WAVEFORMATEX format_;
+ WAVEFORMATPCMEX format_;
// Handle to the instance of the wave device.
HWAVEOUT waveout_;
// Pointer to the first allocated audio buffer. This object owns it.
- WAVEHDR* buffer_;
+ WAVEHDR* buffer_;
// An event that is signaled when the callback thread is ready to stop.
ScopedHandle stopped_event_;