| Index: webrtc/config.cc
|
| diff --git a/webrtc/config.cc b/webrtc/config.cc
|
| index 616ca6e76ad4ce714cb7f1cbb73d3c4bcfafdc7c..c3525d7ac838f59a3deccf2fb459284b6e1535db 100644
|
| --- a/webrtc/config.cc
|
| +++ b/webrtc/config.cc
|
| @@ -76,6 +76,13 @@ const char* RtpExtension::kVideoContentTypeUri =
|
| "http://www.webrtc.org/experiments/rtp-hdrext/video-content-type";
|
| const int RtpExtension::kVideoContentTypeDefaultId = 7;
|
|
|
| +// This extensions provides meta-information about the RTP streams outside the
|
| +// encrypted media payload, an RTP switch can do codec-agnostic
|
| +// selective forwarding without decrypting the payload
|
| +const char* RtpExtension::kFrameMarkingUri =
|
| + "urn:ietf:params:rtp-hdrext:framemarking";
|
| +const int RtpExtension::kFrameMarkingDefaultId = 8;
|
| +
|
| const int RtpExtension::kMinId = 1;
|
| const int RtpExtension::kMaxId = 14;
|
|
|
| @@ -90,7 +97,8 @@ bool RtpExtension::IsSupportedForVideo(const std::string& uri) {
|
| uri == webrtc::RtpExtension::kVideoRotationUri ||
|
| uri == webrtc::RtpExtension::kTransportSequenceNumberUri ||
|
| uri == webrtc::RtpExtension::kPlayoutDelayUri ||
|
| - uri == webrtc::RtpExtension::kVideoContentTypeUri;
|
| + uri == webrtc::RtpExtension::kVideoContentTypeUri ||
|
| + uri == webrtc::RtpExtension::kFrameMarkingUri;
|
| }
|
|
|
| VideoStream::VideoStream()
|
|
|