[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,

[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

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

2025-02-12 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