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

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: empty SSRC vector handling 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..adfaa53b45f59d1c75a93fdb5b09e3d42bf1e32f 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>(), true));
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