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

Unified Diff: media/audio/win/audio_manager_win.h

Issue 17401: Low level windows audio support (part 1 of 2)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/audio_output.h ('k') | media/audio/win/audio_output_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/win/audio_manager_win.h
===================================================================
--- media/audio/win/audio_manager_win.h (revision 0)
+++ media/audio/win/audio_manager_win.h (revision 0)
@@ -0,0 +1,41 @@
+// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_
+#define MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_
+
+#include <windows.h>
+
+#include "base/basictypes.h"
+#include "media/audio/audio_output.h"
+
+class PCMWaveOutAudioOutputStream;
+class AudioOutputStreamMockWin;
+
+// Windows implementation of the AudioManager singleton. This class is internal
+// to the audio output and only internal users can call methods not exposed by
+// the AudioManager class.
+class AudioManagerWin : public AudioManager {
+ public:
+ AudioManagerWin() {}
+ // Implementation of AudioManager.
+ virtual AudioOutputStream* MakeAudioStream(Format format, int channels,
+ int sample_rate,
+ char bits_per_sample);
+ virtual void MuteAll();
+ virtual void UnMuteAll();
+ virtual const void* GetLastMockBuffer();
+
+ // Windows-only methods to free a stream created in MakeAudioStream. These
+ // are called internally by the audio stream when it has been closed.
+ void ReleaseStream(PCMWaveOutAudioOutputStream* stream);
+ void ReleaseStream(AudioOutputStreamMockWin* stream);
+
+ private:
+ virtual ~AudioManagerWin();
+ DISALLOW_COPY_AND_ASSIGN(AudioManagerWin);
+};
+
+#endif // MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_
+
« no previous file with comments | « media/audio/audio_output.h ('k') | media/audio/win/audio_output_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698