[FFmpeg-cvslog] avformat/dashenc: allow setting custom movflags using format_options
James Almer
git at videolan.org
Thu Jan 16 05:13:17 EET 2020
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed Nov 20 09:25:09 2019 -0300| [c96a9636c8efd3fd51b696c29a76af8c4d77a729] | committer: James Almer
avformat/dashenc: allow setting custom movflags using format_options
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c96a9636c8efd3fd51b696c29a76af8c4d77a729
---
libavformat/dashenc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 70b2b37b05..2b86a781bc 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1507,12 +1507,12 @@ static int dash_init(AVFormatContext *s)
if (c->streaming)
// skip_sidx : Reduce bitrate overhead
// skip_trailer : Avoids growing memory usage with time
- av_dict_set(&opts, "movflags", "dash+delay_moov+skip_sidx+skip_trailer", 0);
+ av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_sidx+skip_trailer", AV_DICT_APPEND);
else {
if (c->global_sidx)
- av_dict_set(&opts, "movflags", "dash+delay_moov+global_sidx+skip_trailer", 0);
+ av_dict_set(&opts, "movflags", "+dash+delay_moov+global_sidx+skip_trailer", AV_DICT_APPEND);
else
- av_dict_set(&opts, "movflags", "dash+delay_moov+skip_trailer", 0);
+ av_dict_set(&opts, "movflags", "+dash+delay_moov+skip_trailer", AV_DICT_APPEND);
}
if (os->frag_type == FRAG_TYPE_EVERY_FRAME)
av_dict_set(&opts, "movflags", "+frag_every_frame", AV_DICT_APPEND);
More information about the ffmpeg-cvslog
mailing list