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

Unified Diff: media/cast/net/cast_transport_config.h

Issue 2307653002: Adding CastRemotingSender for media remoting. (Closed)
Patch Set: Rebased. Created 4 years, 3 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 | « media/cast/net/cast_transport.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/cast_transport_config.h
diff --git a/media/cast/net/cast_transport_config.h b/media/cast/net/cast_transport_config.h
index 3ba95dce590c78cbbdbaf7c2deaecdd18182314d..abace7f8ca8e76a58714a18920b57519518ff00f 100644
--- a/media/cast/net/cast_transport_config.h
+++ b/media/cast/net/cast_transport_config.h
@@ -24,10 +24,12 @@ enum Codec {
CODEC_AUDIO_OPUS,
CODEC_AUDIO_PCM16,
CODEC_AUDIO_AAC,
+ CODEC_AUDIO_REMOTE,
CODEC_VIDEO_FAKE,
CODEC_VIDEO_VP8,
CODEC_VIDEO_H264,
- CODEC_LAST = CODEC_VIDEO_H264
+ CODEC_VIDEO_REMOTE,
+ CODEC_LAST = CODEC_VIDEO_REMOTE
};
// Describes the content being transported over RTP streams.
@@ -63,6 +65,9 @@ struct CastTransportRtpConfig {
CastTransportRtpConfig();
~CastTransportRtpConfig();
+ // Identifier for the RTP stream.
+ int32_t rtp_stream_id;
Jeffrey Yasskin 2016/09/15 20:48:12 You forgot to initialize this field in the constru
+
// Identifier refering to this sender.
uint32_t ssrc;
« no previous file with comments | « media/cast/net/cast_transport.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698