diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-11-25 11:15:13 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-11-26 11:32:03 +0800 |
commit | 59d264b0a1218094709d61e30c9056c90859567f (patch) | |
tree | 3f83e1d03f71209b2fe2622df170dafd2d13c002 /libavformat/hlsenc.c | |
parent | d07d1c1dd06541b3b48f3eacb7d8747a3456c6ad (diff) | |
download | ffmpeg-59d264b0a1218094709d61e30c9056c90859567f.tar.gz |
avformat/hlsenc: set strict_std_compliance from the parent AVFormatContext
fix ticket: 8388
Reviewed-by: Jan Ekström <jeebjp@gmail.com>
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 013e91ad88..043438368e 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -776,12 +776,13 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs) if (!oc->url) return AVERROR(ENOMEM); - oc->oformat = vs->oformat; - oc->interrupt_callback = s->interrupt_callback; - oc->max_delay = s->max_delay; - oc->opaque = s->opaque; - oc->io_open = s->io_open; - oc->io_close = s->io_close; + oc->oformat = vs->oformat; + oc->interrupt_callback = s->interrupt_callback; + oc->max_delay = s->max_delay; + oc->opaque = s->opaque; + oc->io_open = s->io_open; + oc->io_close = s->io_close; + oc->strict_std_compliance = s->strict_std_compliance; av_dict_copy(&oc->metadata, s->metadata, 0); if (vs->vtt_oformat) { |