Re: [FFmpeg-devel] [PATCH] avformat/movenc: disallow buggy flags combination

2025-05-26 Thread Gyan Doshi
On 2025-05-26 06:17 pm, Martin Storsjö wrote: On Mon, 26 May 2025, Gyan Doshi wrote: Usage of hybrid_fragmented and faststart together can result in files with loss of sync and bitstream parsing errors upon playback. --- libavformat/movenc.c | 6 ++ 1 file changed, 6 insertions(+) diff -

Re: [FFmpeg-devel] [PATCH] avformat/movenc: disallow buggy flags combination

2025-05-26 Thread Martin Storsjö
On Mon, 26 May 2025, Gyan Doshi wrote: Usage of hybrid_fragmented and faststart together can result in files with loss of sync and bitstream parsing errors upon playback. --- libavformat/movenc.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/movenc.c b/libavformat/movenc.c

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

2025-05-26 Thread Gyan Doshi
Usage of hybrid_fragmented and faststart together can result in files with loss of sync and bitstream parsing errors upon playback. --- libavformat/movenc.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 4bc8bd1b2a..9392ba5370 100644 ---