[FFmpeg-cvslog] avformat/dashenc: Used the movenc option skip_sidx instead of global_sidx

kjeyapal@akamai.com git at videolan.org
Tue Dec 11 07:30:57 EET 2018


ffmpeg | branch: master | kjeyapal at akamai.com <kjeyapal at akamai.com> | Wed Dec  5 12:06:40 2018 +0530| [876ed08b0d13dc163d84fb5f8365c5cd9060c326] | committer: Karthick J

avformat/dashenc: Used the movenc option skip_sidx instead of global_sidx

Anyways the intended behaviour was to disable SIDX atom.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=876ed08b0d13dc163d84fb5f8365c5cd9060c326
---

 libavformat/dashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 4d9b564a94..585b34cb97 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1162,7 +1162,7 @@ static int dash_init(AVFormatContext *s)
 
         if (os->segment_type == SEGMENT_TYPE_MP4) {
             if (c->streaming)
-                av_dict_set(&opts, "movflags", "frag_every_frame+dash+delay_moov+global_sidx", 0);
+                av_dict_set(&opts, "movflags", "frag_every_frame+dash+delay_moov+skip_sidx", 0);
             else
                 av_dict_set(&opts, "movflags", "frag_custom+dash+delay_moov", 0);
         } else {



More information about the ffmpeg-cvslog mailing list