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

Unified Diff: webrtc/video/call.cc

Issue 1241123002: Remove UpdateSsrcs from EncoderStateFeedback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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 | « no previous file | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/call.cc
diff --git a/webrtc/video/call.cc b/webrtc/video/call.cc
index a73932509b1c7876eb747fe43f164c6b77cd8f75..5d898b6686f3987c65a27acd4ea0a41cb7963b79 100644
--- a/webrtc/video/call.cc
+++ b/webrtc/video/call.cc
@@ -180,8 +180,9 @@ Call::Call(const Call::Config& config)
// TODO(pbos): Remove base channel when CreateReceiveChannel no longer
// requires one.
- CHECK(channel_group_->CreateSendChannel(
- base_channel_id_, 0, &transport_adapter_, num_cpu_cores_, 1, true));
+ CHECK(channel_group_->CreateSendChannel(base_channel_id_, 0,
+ &transport_adapter_, num_cpu_cores_,
+ std::vector<uint32_t>(1, 0), true));
sprang_webrtc 2015/07/20 13:45:22 This will create a channel with an encoder with ss
pbos-webrtc 2015/07/20 13:59:03 Yeah, no. I shouldn't get away with this. Adding c
if (config.overuse_callback) {
overuse_observer_proxy_.reset(
« no previous file with comments | « no previous file | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698