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

Unified Diff: media/audio/audio_manager_base.cc

Issue 1130063002: Allowing a custom audio buffer size in WebRtcAudioCapturer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
Index: media/audio/audio_manager_base.cc
diff --git a/media/audio/audio_manager_base.cc b/media/audio/audio_manager_base.cc
index dbe1b68a64e3567b4b63dbd52bb3dbc4bf9e930f..0ef88afdfc593c7838bc113fb40a8468e994dd81 100644
--- a/media/audio/audio_manager_base.cc
+++ b/media/audio/audio_manager_base.cc
@@ -200,6 +200,9 @@ AudioInputStream* AudioManagerBase::MakeAudioInputStream(
return NULL;
}
+ LOG(INFO) << "Creating a new AudioInputStream with buffer size = "
Charlie 2015/05/06 23:47:44 Disregard this statement. It's a temporary testing
+ << params.frames_per_buffer();
+
AudioInputStream* stream;
switch (params.format()) {
case AudioParameters::AUDIO_PCM_LINEAR:

Powered by Google App Engine
This is Rietveld 408576698