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

Unified Diff: webrtc/audio_receive_stream.h

Issue 1181653002: Base A/V synchronization on sync_labels. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add missing tests + fix bug Created 5 years, 6 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/audio_receive_stream.h
diff --git a/webrtc/audio_receive_stream.h b/webrtc/audio_receive_stream.h
index c68d2647f20beb2142877558686764783f4b6571..c628c1d480a9c2976d76b924a0b6fef9bbe1a3da 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
+ // to lower-level components.
+ int channel_id = -1;
the sun 2015/06/11 11:52:03 voe_channel_id
pbos-webrtc 2015/06/11 14:48:53 Done.
+
+ // Identifier for an A/V synchronization group. Empty string to disable.
+ // TODO(pbos): Synchronize streams in a sync group, not just video streams
the sun 2015/06/11 11:52:03 Is this TODO necessary? Will it be addressed in th
pbos-webrtc 2015/06/11 14:48:52 Added an issue, and referenced it here. I think it
+ // to one of the audio streams.
+ 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().

Powered by Google App Engine
This is Rietveld 408576698