diff options
author | Tristan Matthews <tmatth@videolan.org> | 2019-02-22 15:40:27 -0500 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-02-23 22:48:35 +0100 |
commit | 00f54c15f45b72c7ec56821573068568b3d49211 (patch) | |
tree | 9fe53313efa9b07f50f0cd3a0e3d0ba1047a5a13 /libavformat/rtpenc_chain.c | |
parent | 37e4c226c06c4ac6b8e3a0ccb2c0933397d6f96f (diff) | |
download | ffmpeg-00f54c15f45b72c7ec56821573068568b3d49211.tar.gz |
rtpenc_chain: forward strict_std_compliance flags to rtp muxer
fixes: https://trac.ffmpeg.org/ticket/6713
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/rtpenc_chain.c')
-rw-r--r-- | libavformat/rtpenc_chain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c index d3c1bc96dc..e7a4dffaba 100644 --- a/libavformat/rtpenc_chain.c +++ b/libavformat/rtpenc_chain.c @@ -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) |