[FFmpeg-cvslog] rtpenc_chain: forward strict_std_compliance flags to rtp muxer
Tristan Matthews
git at videolan.org
Sat Feb 23 23:54:00 EET 2019
ffmpeg | branch: master | Tristan Matthews <tmatth at videolan.org> | Fri Feb 22 15:40:27 2019 -0500| [00f54c15f45b72c7ec56821573068568b3d49211] | committer: Michael Niedermayer
rtpenc_chain: forward strict_std_compliance flags to rtp muxer
fixes: https://trac.ffmpeg.org/ticket/6713
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=00f54c15f45b72c7ec56821573068568b3d49211
---
libavformat/rtpenc_chain.c | 1 +
1 file changed, 1 insertion(+)
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)
More information about the ffmpeg-cvslog
mailing list