1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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

Anyways the intended behaviour was to disable SIDX atom.
This commit is contained in:
kjeyapal@akamai.com 2018-12-05 11:48:40 +05:30 committed by Karthick J
parent 1d01ab399f
commit 876ed08b0d

View File

@ -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 {