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

Unified Diff: webrtc/video/vie_channel.h

Issue 1701683002: Move back receiver VCM into ViEChannel. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: feedback Created 4 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
« no previous file with comments | « webrtc/video/video_send_stream.cc ('k') | webrtc/video/vie_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_channel.h
diff --git a/webrtc/video/vie_channel.h b/webrtc/video/vie_channel.h
index 320ce7c1fc1b1091992c1b847571bbb68a2017ee..7ee381eae82ab4f57d0ad60af865377591f498e7 100644
--- a/webrtc/video/vie_channel.h
+++ b/webrtc/video/vie_channel.h
@@ -67,7 +67,6 @@ class ViEChannel : public VCMFrameTypeCallback,
ViEChannel(Transport* transport,
ProcessThread* module_process_thread,
PayloadRouter* send_payload_router,
- VideoCodingModule* vcm,
RtcpIntraFrameObserver* intra_frame_observer,
RtcpBandwidthObserver* bandwidth_observer,
TransportFeedbackObserver* transport_feedback_observer,
@@ -79,7 +78,7 @@ class ViEChannel : public VCMFrameTypeCallback,
bool sender);
~ViEChannel();
- int32_t Init();
+ void Init();
// Sets the encoder to use for the channel. |new_stream| indicates the encoder
// type has changed and we should start a new RTP stream.
@@ -168,6 +167,7 @@ class ViEChannel : public VCMFrameTypeCallback,
int32_t SetMTU(uint16_t mtu);
// Gets the modules used by the channel.
+ VideoCodingModule* vcm();
RtpRtcp* rtp_rtcp();
ViEReceiver* vie_receiver();
VCMProtectionCallback* vcm_protection_callback();
@@ -357,7 +357,7 @@ class ViEChannel : public VCMFrameTypeCallback,
// Owned modules/classes.
rtc::scoped_ptr<ViEChannelProtectionCallback> vcm_protection_callback_;
- VideoCodingModule* const vcm_;
+ const rtc::scoped_ptr<VideoCodingModule> vcm_;
ViEReceiver vie_receiver_;
ViESyncModule vie_sync_;
« no previous file with comments | « webrtc/video/video_send_stream.cc ('k') | webrtc/video/vie_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698