This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit c78350af98ee49089dec1739b9d29ec9d8951971 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Tue Jun 23 16:55:42 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Jun 23 17:05:02 2026 +0200 avformat/hlsenc: Forward AVFormatContext.flags Needed for AVFMT_FLAG_BITEXACT. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/hlsenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 6376c4e635..c9adbe5b44 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -792,6 +792,7 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs) oc->io_open = s->io_open; oc->io_close2 = s->io_close2; oc->strict_std_compliance = s->strict_std_compliance; + oc->flags = s->flags; av_dict_copy(&oc->metadata, s->metadata, 0); if (vs->vtt_oformat) { @@ -799,6 +800,7 @@ static int hls_mux_init(AVFormatContext *s, VariantStream *vs) if (ret < 0) return ret; vtt_oc = vs->vtt_avf; + vtt_oc->flags = s->flags; av_dict_copy(&vtt_oc->metadata, s->metadata, 0); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
