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

Unified Diff: webrtc/video/rtp_streams_synchronizer.h

Issue 2452163004: Stop using VoEVideoSync in Call/VideoReceiveStream. (Closed)
Patch Set: fixed build error Created 3 years, 11 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
Index: webrtc/video/rtp_streams_synchronizer.h
diff --git a/webrtc/video/rtp_streams_synchronizer.h b/webrtc/video/rtp_streams_synchronizer.h
index bc24d6f8071762c390b3a2e42cbbcaba1ef5afc2..1337bf0afbb923c9719e4ad1e891dd0b489e97c8 100644
--- a/webrtc/video/rtp_streams_synchronizer.h
+++ b/webrtc/video/rtp_streams_synchronizer.h
@@ -25,8 +25,8 @@
namespace webrtc {
class Clock;
+class Syncable;
class VideoFrame;
-class VoEVideoSync;
namespace vcm {
class VideoReceiver;
@@ -37,8 +37,7 @@ class RtpStreamsSynchronizer : public Module {
RtpStreamsSynchronizer(vcm::VideoReceiver* vcm,
RtpStreamReceiver* rtp_stream_receiver);
- void ConfigureSync(int voe_channel_id,
- VoEVideoSync* voe_sync_interface);
+ void ConfigureSync(Syncable* syncable);
// Implements Module.
int64_t TimeUntilNextProcess() override;
@@ -59,8 +58,7 @@ class RtpStreamsSynchronizer : public Module {
RtpRtcp* const video_rtp_rtcp_;
rtc::CriticalSection crit_;
- int voe_channel_id_ GUARDED_BY(crit_);
- VoEVideoSync* voe_sync_interface_ GUARDED_BY(crit_);
+ Syncable* syncable_ GUARDED_BY(crit_);
RtpReceiver* audio_rtp_receiver_ GUARDED_BY(crit_);
RtpRtcp* audio_rtp_rtcp_ GUARDED_BY(crit_);
std::unique_ptr<StreamSynchronization> sync_ GUARDED_BY(crit_);

Powered by Google App Engine
This is Rietveld 408576698