Commit f2d0138f authored by Marton Balint's avatar Marton Balint

avformat/smoothstreamingenc: do not override movflag defaults

Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 8d8feea0
...@@ -340,7 +340,7 @@ static int ism_write_header(AVFormatContext *s) ...@@ -340,7 +340,7 @@ static int ism_write_header(AVFormatContext *s)
} }
av_dict_set_int(&opts, "ism_lookahead", c->lookahead_count, 0); av_dict_set_int(&opts, "ism_lookahead", c->lookahead_count, 0);
av_dict_set(&opts, "movflags", "frag_custom", 0); av_dict_set(&opts, "movflags", "+frag_custom", 0);
ret = avformat_write_header(ctx, &opts); ret = avformat_write_header(ctx, &opts);
av_dict_free(&opts); av_dict_free(&opts);
if (ret < 0) { if (ret < 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment