| Index: webrtc/video/rtp_stream_receiver.cc
|
| diff --git a/webrtc/video/rtp_stream_receiver.cc b/webrtc/video/rtp_stream_receiver.cc
|
| index 00f41a29c0bbfc1c0baa54c6f5845086b197a63a..84e03c608147568c5c272f6030e5eb50efd0d261 100644
|
| --- a/webrtc/video/rtp_stream_receiver.cc
|
| +++ b/webrtc/video/rtp_stream_receiver.cc
|
| @@ -497,6 +497,10 @@ void RtpStreamReceiver::NotifyReceiverOfFecPacket(const RTPHeader& header) {
|
| if (header.extension.hasVideoRotation) {
|
| rtp_header.type.Video.rotation = header.extension.videoRotation;
|
| }
|
| + rtp_header.type.Video.content_type = kVideoContent_Default;
|
| + if (header.extension.hasVideoContentType) {
|
| + rtp_header.type.Video.content_type = header.extension.videoContentType;
|
| + }
|
| rtp_header.type.Video.playout_delay = header.extension.playout_delay;
|
|
|
| OnReceivedPayloadData(nullptr, 0, &rtp_header);
|
|
|