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

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

Issue 387933005: Cast: Refactor RTCP handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: smaller diff Created 6 years, 5 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: 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 15407cbc88b25cf3cf1b04e07b85af9b9c660429..e6a9a57f7d5680c2708d70c194ce81f59c0994e8 100644
--- a/media/cast/net/cast_transport_config.h
+++ b/media/cast/net/cast_transport_config.h
@@ -19,11 +19,6 @@
namespace media {
namespace cast {
-enum RtcpMode {
- kRtcpCompound, // Compound RTCP mode is described by RFC 4585.
- kRtcpReducedSize, // Reduced-size RTCP mode is described by RFC 5506.
-};
-
enum Codec {
CODEC_UNKNOWN,
CODEC_AUDIO_OPUS,
@@ -41,6 +36,12 @@ struct CastTransportRtpConfig {
// Identifier refering to this sender.
uint32 ssrc;
+ // Identifier for incoming RTCP traffic.
+ uint32 feedback_ssrc;
+
+ // Identifier for this stream.
+ std::string c_name;
+
// RTP payload type enum: Specifies the type/encoding of frame data.
int rtp_payload_type;

Powered by Google App Engine
This is Rietveld 408576698