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

Unified Diff: content/renderer/media/webrtc_audio_capturer.cc

Issue 177113012: Minor fixes to the capturer and the processor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: content/renderer/media/webrtc_audio_capturer.cc
diff --git a/content/renderer/media/webrtc_audio_capturer.cc b/content/renderer/media/webrtc_audio_capturer.cc
index 8313fcac5f4228ebf10ff50856e2a12ab2f41edb..bb83dfe46f9f2f7f3a18a3695ebb1bf7d7753b1c 100644
--- a/content/renderer/media/webrtc_audio_capturer.cc
+++ b/content/renderer/media/webrtc_audio_capturer.cc
@@ -466,7 +466,7 @@ void WebRtcAudioCapturer::Capture(media::AudioBus* audio_source,
// Notify the tracks on when the format changes. This will do nothing if
// |tracks_to_notify_format| is empty.
- media::AudioParameters output_params = audio_processor_->OutputFormat();
+ media::AudioParameters output_params = audio_processor->OutputFormat();
for (TrackList::ItemList::const_iterator it = tracks_to_notify_format.begin();
it != tracks_to_notify_format.end(); ++it) {
(*it)->OnSetFormat(output_params);

Powered by Google App Engine
This is Rietveld 408576698