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

Unified Diff: webrtc/video/stream_synchronization.h

Issue 2452163004: Stop using VoEVideoSync in Call/VideoReceiveStream. (Closed)
Patch Set: comment 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
« no previous file with comments | « webrtc/video/rtp_streams_synchronizer.cc ('k') | webrtc/video/stream_synchronization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/stream_synchronization.h
diff --git a/webrtc/video/stream_synchronization.h b/webrtc/video/stream_synchronization.h
index 0b1ad4fd3a865dfb86e71edf595eafa81e5bf29a..d32966bc53f75006c125c23371db742554d96288 100644
--- a/webrtc/video/stream_synchronization.h
+++ b/webrtc/video/stream_synchronization.h
@@ -27,7 +27,7 @@ class StreamSynchronization {
uint32_t latest_timestamp;
};
- StreamSynchronization(uint32_t video_primary_ssrc, int audio_channel_id);
+ StreamSynchronization(int video_stream_id, int audio_stream_id);
bool ComputeDelays(int relative_delay_ms,
int current_audio_delay_ms,
@@ -53,8 +53,8 @@ class StreamSynchronization {
};
SynchronizationDelays channel_delay_;
- const uint32_t video_primary_ssrc_;
- const int audio_channel_id_;
+ const int video_stream_id_;
+ const int audio_stream_id_;
int base_target_delay_ms_;
int avg_diff_ms_;
};
« no previous file with comments | « webrtc/video/rtp_streams_synchronizer.cc ('k') | webrtc/video/stream_synchronization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698