| Index: webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc
|
| index 849ed78eadc07a94ad988683cef58c330701f89c..4f7a3c669845e587cd63a6a5ada37f6d53b58c16 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc
|
| @@ -324,6 +324,10 @@ bool RTPSenderVideo::SendVideo(RtpVideoCodecTypes video_type,
|
| current_rotation != kVideoRotation_0)
|
| rtp_header->SetExtension<VideoOrientation>(current_rotation);
|
| last_rotation_ = current_rotation;
|
| + // Report content type only for key frames.
|
| + if (frame_type == kVideoFrameKey)
|
| + rtp_header->SetExtension<VideoContentTypeExtension>(
|
| + video_header->content_type);
|
| }
|
|
|
| // FEC settings.
|
|
|