Index: webrtc/audio_receive_stream.h |
diff --git a/webrtc/audio_receive_stream.h b/webrtc/audio_receive_stream.h |
index c68d2647f20beb2142877558686764783f4b6571..5f04303cf866927c4561144d8f0cafe7e87a4968 100644 |
--- a/webrtc/audio_receive_stream.h |
+++ b/webrtc/audio_receive_stream.h |
@@ -43,6 +43,15 @@ class AudioReceiveStream { |
std::vector<RtpExtension> extensions; |
} rtp; |
+ // Handle to underlying VoiceEngine handle, used to map AudioReceiveStream |
the sun
2015/06/11 15:38:48
Handle to a handle? Rephrase, also include somethi
pbos-webrtc
2015/06/12 15:53:14
Done.
|
+ // to lower-level components. |
+ int voe_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. Tracked by issue webrtc:4762. |
+ std::string sync_group; |
+ |
// Decoders for every payload that we can receive. Call owns the |
// AudioDecoder instances once the Config is submitted to |
// Call::CreateReceiveStream(). |