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

Unified Diff: media/audio/audio_util.cc

Issue 10952024: Adding pulseaudio input support to chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moved the pulse code to AudioManagerPulse, and addressed Dale's comments. Created 7 years, 10 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 | « no previous file | media/audio/linux/audio_manager_linux.cc » ('j') | media/audio/pulse/pulse_input.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_util.cc
diff --git a/media/audio/audio_util.cc b/media/audio/audio_util.cc
index fe7b7ec62039bbd5f535969822d24142a65f7ba7..400a7cf6c0f5984c92331d8a7a2b76c768cf36d7 100644
--- a/media/audio/audio_util.cc
+++ b/media/audio/audio_util.cc
@@ -137,8 +137,6 @@ int GetAudioHardwareSampleRate() {
#elif defined(OS_ANDROID)
return 16000;
#else
- // Hardware for Linux is nearly always 48KHz.
- // TODO(crogers) : return correct value in rare non-48KHz cases.
return 48000;
#endif
}
@@ -156,6 +154,8 @@ int GetAudioInputHardwareSampleRate(const std::string& device_id) {
#elif defined(OS_ANDROID)
return 16000;
#else
+ // Hardware for Linux is nearly always 48KHz.
+ // TODO(crogers) : return correct value in rare non-48KHz cases.
scherkus (not reviewing) 2013/02/14 00:51:35 did you mean to move this comment?
no longer working on chromium 2013/02/14 11:36:07 Yes, but not by this CL, it will be done in a foll
return 48000;
#endif
}
« no previous file with comments | « no previous file | media/audio/linux/audio_manager_linux.cc » ('j') | media/audio/pulse/pulse_input.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698