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

Unified Diff: webrtc/video/vie_sync_module.h

Issue 1905983002: Use vcm::VideoReceiver on the receive side. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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/vie_receiver.cc ('k') | webrtc/video/vie_sync_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_sync_module.h
diff --git a/webrtc/video/vie_sync_module.h b/webrtc/video/vie_sync_module.h
index 2b499ff4d38a49cef992281e1af155712ea8f896..8a1933b7ea42fae8ba0255fd015c7e65c2f997af 100644
--- a/webrtc/video/vie_sync_module.h
+++ b/webrtc/video/vie_sync_module.h
@@ -26,20 +26,23 @@ namespace webrtc {
class Clock;
class RtpRtcp;
-class VideoCodingModule;
class VideoFrame;
class ViEChannel;
class VoEVideoSync;
+namespace vcm {
+class VideoReceiver;
+} // namespace vcm
+
class ViESyncModule : public Module {
public:
- explicit ViESyncModule(VideoCodingModule* vcm);
+ explicit ViESyncModule(vcm::VideoReceiver* vcm);
~ViESyncModule();
void ConfigureSync(int voe_channel_id,
VoEVideoSync* voe_sync_interface,
RtpRtcp* video_rtcp_module,
- RtpReceiver* video_receiver);
+ RtpReceiver* rtp_receiver);
// Implements Module.
int64_t TimeUntilNextProcess() override;
@@ -52,9 +55,9 @@ class ViESyncModule : public Module {
private:
rtc::CriticalSection data_cs_;
- VideoCodingModule* const vcm_;
+ vcm::VideoReceiver* const video_receiver_;
Clock* const clock_;
- RtpReceiver* video_receiver_;
+ RtpReceiver* rtp_receiver_;
RtpRtcp* video_rtp_rtcp_;
int voe_channel_id_;
VoEVideoSync* voe_sync_interface_;
« no previous file with comments | « webrtc/video/vie_receiver.cc ('k') | webrtc/video/vie_sync_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698