diff mbox

[FFmpeg-devel] rtpenc_chain: forward strict_std_compliance flags to rtp muxer

Message ID 20190222204027.26695-1-tmatth@videolan.org
State Accepted
Commit 00f54c15f45b72c7ec56821573068568b3d49211
Headers show

Commit Message

Tristan Matthews Feb. 22, 2019, 8:40 p.m. UTC
fixes: https://trac.ffmpeg.org/ticket/6713
---
 libavformat/rtpenc_chain.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Michael Niedermayer Feb. 23, 2019, 8:58 p.m. UTC | #1
On Fri, Feb 22, 2019 at 03:40:27PM -0500, Tristan Matthews wrote:
> fixes: https://trac.ffmpeg.org/ticket/6713
> ---
>  libavformat/rtpenc_chain.c | 1 +
>  1 file changed, 1 insertion(+)

will apply

thanks

[...]
diff mbox

Patch

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)