On Fri, 25 Mar 2016, Stefano Sabatini wrote:
On date Tuesday 2016-03-15 19:21:23 +0100, Marton Balint encoded:
Fixes ticket #5318.
Signed-off-by: Marton Balint <c...@passwd.hu>
---
libavformat/segment.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/libavformat/segment.c b/libavformat/segment.c
index ccedd04..70590b4 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -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;
}
LGTM, missed the patch, thanks.
Pushed, thanks.
Regards,
Marton
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel