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

Unified Diff: talk/app/webrtc/webrtcsession.cc

Issue 1331443003: Remove GetOutputScaling from VoiceMediaChannel. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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 | talk/media/base/fakemediaengine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/app/webrtc/webrtcsession.cc
diff --git a/talk/app/webrtc/webrtcsession.cc b/talk/app/webrtc/webrtcsession.cc
index 6a761e6ab95a75d80fec9c2dd741860a2f99d967..082e21437b1376d3a3ab6d0b12b5811ca0bf2df7 100644
--- a/talk/app/webrtc/webrtcsession.cc
+++ b/talk/app/webrtc/webrtcsession.cc
@@ -1206,8 +1206,9 @@ void WebRtcSession::SetAudioPlayoutVolume(uint32 ssrc, double volume) {
return;
}
- if (!voice_channel_->SetOutputScaling(ssrc, volume, volume))
+ if (!voice_channel_->SetOutputScaling(ssrc, volume, volume)) {
ASSERT(false);
+ }
}
bool WebRtcSession::SetCaptureDevice(uint32 ssrc,
« no previous file with comments | « no previous file | talk/media/base/fakemediaengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698