[FFmpeg-cvslog] avformat/movenc: disallow buggy flags combination

Gyan Doshi git at videolan.org
Mon May 26 20:15:01 EEST 2025


ffmpeg | branch: master | Gyan Doshi <ffmpeg at gyani.pro> | Mon May 26 18:30:58 2025 +0530| [c79bce92b8407199b6e70205393411650e4342ca] | committer: Gyan Doshi

avformat/movenc: disallow buggy flags combination

Use of hybrid_fragmented and faststart together can result in files with
loss of sync and bitstream parsing errors upon playback.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c79bce92b8407199b6e70205393411650e4342ca
---

 libavformat/movenc.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 4bc8bd1b2a..9392ba5370 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -7731,6 +7731,12 @@ static int mov_init(AVFormatContext *s)
                       FF_MOV_FLAG_FRAG_EVERY_FRAME))
         mov->flags |= FF_MOV_FLAG_FRAGMENT;
 
+    if (mov->flags & FF_MOV_FLAG_HYBRID_FRAGMENTED &&
+        mov->flags & FF_MOV_FLAG_FASTSTART) {
+        av_log(s, AV_LOG_ERROR, "Setting both hybrid_fragmented and faststart is not supported.\n");
+        return AVERROR(EINVAL);
+    }
+
     /* Set other implicit flags immediately */
     if (mov->flags & FF_MOV_FLAG_HYBRID_FRAGMENTED)
         mov->flags |= FF_MOV_FLAG_FRAGMENT;



More information about the ffmpeg-cvslog mailing list