[FFmpeg-devel] [PATCH] libavformat/mov.c: fix seek issues for fragmented mp4 files

2025-01-28 Thread Srikanth Kiran Kotagiri
From: Srikanth Kiran Kotagiri For Fragmented MP4 files where the audio and video streams are written to seperate fragments, the -ss option will cause the file pointer to be set to the first available fragment. This is due to an interaction in search_frag_timestamp() function and get_frag_time(

Re: [FFmpeg-devel] [PATCH] libavformat/mov.c: fix seek issues for fragmented mp4 files

2025-01-28 Thread Srikanth Kotagiri
please ignore this patch. I will submit a corrected one. On Mon, Jan 27, 2025 at 5:20 PM Srikanth Kiran Kotagiri wrote: > > For Fragmented MP4 files where the audio and video streams are written to > seperate fragments, the -ss option will cause the file pointer to be set to > the first availab

[FFmpeg-devel] [PATCH] libavformat/mov.c: fix seek issues for fragmented mp4 files

2025-01-27 Thread Srikanth Kiran Kotagiri
For Fragmented MP4 files where the audio and video streams are written to seperate fragments, the -ss option will cause the file pointer to be set to the first available fragment. This is due to an interaction in search_frag_timestamp() function and get_frag_time() functions. With this change,