Re: [FFmpeg-devel] [PATCH] avformat/mov: Fix decoding fragmented MP4 with multiple sample entries and empty stsc

2025-04-28 Thread Dimitry Andric
On 19 Apr 2025, at 16:27, Dimitry Andric wrote: > > On 10 Apr 2025, at 11:03, Dimitry Andric > wrote: >> >> On 3 Apr 2025, at 22:02, Dimitry Andric >> wrote: >>> >>> When decoding fragmented MP4 files that have an empty stsc box, and >>&g

Re: [FFmpeg-devel] [PATCH] avformat/mov: Fix decoding fragmented MP4 with multiple sample entries and empty stsc

2025-04-19 Thread Dimitry Andric
On 10 Apr 2025, at 11:03, Dimitry Andric wrote: > > On 3 Apr 2025, at 22:02, Dimitry Andric wrote: >> >> When decoding fragmented MP4 files that have an empty stsc box, and >> instead contain sample description indexes in their tfhd boxes, the mov >> demux

Re: [FFmpeg-devel] [PATCH] avformat/mov: Fix decoding fragmented MP4 with multiple sample entries and empty stsc

2025-04-10 Thread Dimitry Andric
On 3 Apr 2025, at 22:02, Dimitry Andric wrote: > > When decoding fragmented MP4 files that have an empty stsc box, and > instead contain sample description indexes in their tfhd boxes, the mov > demuxer does not notify the decoder whenever the current sample > description index

[FFmpeg-devel] [PATCH] avformat/mov: Fix decoding fragmented MP4 with multiple sample entries and empty stsc

2025-04-03 Thread Dimitry Andric
-off-by: Dimitry Andric --- libavformat/mov.c | 50 --- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 452690090c..ead89192f4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -10756,25