Index: webrtc/video_receive_stream.h |
diff --git a/webrtc/video_receive_stream.h b/webrtc/video_receive_stream.h |
index a8003c1aa9c53c49aa1ebd8478617d34c51f5dc9..11033812d592abdf0a0bd45fee71d7ee25cc1bc1 100644 |
--- a/webrtc/video_receive_stream.h |
+++ b/webrtc/video_receive_stream.h |
@@ -145,10 +145,10 @@ class VideoReceiveStream { |
// Only valid if 'renderer' is set. |
int render_delay_ms = 10; |
- // Audio channel corresponding to this video stream, used for audio/video |
- // synchronization. 'audio_channel_id' is ignored if no VoiceEngine is set |
- // when creating the VideoEngine instance. '-1' disables a/v sync. |
- int audio_channel_id = -1; |
+ // Identifier for an A/V synchronization group. Empty string to disable. |
+ // TODO(pbos): Synchronize streams in a sync group, not just video streams |
+ // to one of the audio streams. |
+ std::string sync_group; |
// Called for each incoming video frame, i.e. in encoded state. E.g. used |
// when |