| Index: webrtc/video/rtp_stream_receiver.cc
|
| diff --git a/webrtc/video/rtp_stream_receiver.cc b/webrtc/video/rtp_stream_receiver.cc
|
| index 499ee0953e69ed90e6f2de6d1d14af47d79e5ace..09de07b5208cbe7f7e0a3c718b590ff62cd39f00 100644
|
| --- a/webrtc/video/rtp_stream_receiver.cc
|
| +++ b/webrtc/video/rtp_stream_receiver.cc
|
| @@ -503,6 +503,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 = VideoContentType::kDefault;
|
| + 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);
|
|
|