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

Unified Diff: webrtc/video_engine/vie_receiver.cc

Issue 1335353005: Remove channel ids from various interfaces. (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 | « webrtc/video_engine/vie_receiver.h ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video_engine/vie_receiver.cc
diff --git a/webrtc/video_engine/vie_receiver.cc b/webrtc/video_engine/vie_receiver.cc
index a3ef2cfc3c5aeb61f9c1a17983300212e56c6634..f10f287017f5904cfc35ed757df4a99a14b1281c 100644
--- a/webrtc/video_engine/vie_receiver.cc
+++ b/webrtc/video_engine/vie_receiver.cc
@@ -33,8 +33,7 @@ namespace webrtc {
static const int kPacketLogIntervalMs = 10000;
-ViEReceiver::ViEReceiver(const int32_t channel_id,
- VideoCodingModule* module_vcm,
+ViEReceiver::ViEReceiver(VideoCodingModule* module_vcm,
RemoteBitrateEstimator* remote_bitrate_estimator,
RtpFeedback* rtp_feedback)
: receive_cs_(CriticalSectionWrapper::CreateCriticalSection()),
@@ -43,8 +42,7 @@ ViEReceiver::ViEReceiver(const int32_t channel_id,
rtp_payload_registry_(
new RTPPayloadRegistry(RTPPayloadStrategy::CreateStrategy(false))),
rtp_receiver_(
- RtpReceiver::CreateVideoReceiver(channel_id,
- clock_,
+ RtpReceiver::CreateVideoReceiver(clock_,
this,
rtp_feedback,
rtp_payload_registry_.get())),
« no previous file with comments | « webrtc/video_engine/vie_receiver.h ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698