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

Unified Diff: media/audio/openbsd/audio_manager_openbsd.cc

Issue 2966005: Add recording capability to AudioManager, and implemented on windows using the WaveIn APIs. (Closed)
Patch Set: Patch Created 10 years, 5 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/openbsd/audio_manager_openbsd.h ('k') | media/audio/win/audio_input_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/openbsd/audio_manager_openbsd.cc
diff --git a/media/audio/openbsd/audio_manager_openbsd.cc b/media/audio/openbsd/audio_manager_openbsd.cc
index 641b181aca20391d91c36f19c3b4e23ffaee7c78..7d7a249aa1edda30bea9d2767a237a30dc469ced 100644
--- a/media/audio/openbsd/audio_manager_openbsd.cc
+++ b/media/audio/openbsd/audio_manager_openbsd.cc
@@ -17,6 +17,21 @@ bool AudioManagerOpenBSD::HasAudioOutputDevices() {
return false;
}
+bool AudioManagerOpenBSD::HasAudioInputDevices() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+AudioInputStream* AudioManagerOpenBSD::MakeAudioInputStream(
+ Format format,
+ int channels,
+ int sample_rate,
+ char bits_per_sample,
+ uint32 samples_per_packet) {
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
AudioOutputStream* AudioManagerOpenBSD::MakeAudioOutputStream(
Format format,
int channels,
« no previous file with comments | « media/audio/openbsd/audio_manager_openbsd.h ('k') | media/audio/win/audio_input_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698