Commit 00f54c15 authored by Tristan Matthews's avatar Tristan Matthews Committed by Michael Niedermayer

rtpenc_chain: forward strict_std_compliance flags to rtp muxer

fixes: https://trac.ffmpeg.org/ticket/6713Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 37e4c226
......@@ -59,6 +59,7 @@ int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s,
/* Copy other stream parameters. */
rtpctx->streams[0]->sample_aspect_ratio = st->sample_aspect_ratio;
rtpctx->flags |= s->flags & AVFMT_FLAG_BITEXACT;
rtpctx->strict_std_compliance = s->strict_std_compliance;
/* Get the payload type from the codec */
if (st->id < RTP_PT_PRIVATE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment