Commit 8ff0f6ae authored by Marton Balint's avatar Marton Balint

avformat/segment: set format options for all segments

Fixes ticket #5318.
Reviewed-by: 's avatarStefano Sabatini <stefasab@gmail.com>
Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 5a195060
......@@ -256,7 +256,11 @@ static int segment_start(AVFormatContext *s, int write_header)
av_opt_set(oc->priv_data, "mpegts_flags", "+resend_headers", 0);
if (write_header) {
if ((err = avformat_write_header(oc, NULL)) < 0)
AVDictionary *options = NULL;
av_dict_copy(&options, seg->format_options, 0);
err = avformat_write_header(oc, &options);
av_dict_free(&options);
if (err < 0)
return err;
}
......
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