[FFmpeg-devel] [PATCH] avformat/mov: fix sidx loading issues in fragmented files.

2019-02-09 Thread agrecascino123
From: mptcultist fixed issue where if sidx was after another sidx and happened to point to the same media, it wouldn't be read. this is done by counting the sidx atoms before they're read. for #7572 --- libavformat/isom.h | 2 ++ libavformat/mov.c | 45

[FFmpeg-devel] [PATCH] fix sidx size being doubled in offset. fixes an issue where if the video size was very specific, ffmpeg would hang from not filling the sidx_pts for all streams, due to not read

2019-01-30 Thread agrecascino123
From: mptcultist --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 9b9739f788..c222582886 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -4933,7 +4933,7 @@ static int mov_read_trun(MOVContext *c,

[FFmpeg-devel] [PATCH] avformat/mov: fix sidx size being doubled in offset.

2019-01-30 Thread agrecascino123
From: mptcultist fixes an issue where if the video size was very specific, ffmpeg would hang from not filling the sidx_pts for all streams, due to not reading the last sidx lump. for #7572 --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git