Re: [FFmpeg-devel] [PATCH] avformat/mov: prevent duplication of first fragment's ctts_data

2017-08-31 Thread Michael Niedermayer
On Mon, Aug 28, 2017 at 03:22:43PM -0700, Dale Curtis wrote: > lgtm, my patch is still necessary to ensure ctts samples aren't trampled > when new headers do need to be read. This should prevent unnecessary work > and spammy logs. will apply thanks [...] -- Michael GnuPG fingerprint: 9FF212

Re: [FFmpeg-devel] [PATCH] avformat/mov: prevent duplication of first fragment's ctts_data

2017-08-28 Thread Dale Curtis
lgtm, my patch is still necessary to ensure ctts samples aren't trampled when new headers do need to be read. This should prevent unnecessary work and spammy logs. - dale On Sat, Aug 5, 2017 at 6:04 PM, Daniel Glöckner wrote: > MP4 files with fragments might have the first moof box that is ment

[FFmpeg-devel] [PATCH] avformat/mov: prevent duplication of first fragment's ctts_data

2017-08-05 Thread Daniel Glöckner
MP4 files with fragments might have the first moof box that is mentioned in a fragment index before the first mdat box. Since it is then already parsed by mov_read_header, we have to make sure that mov_switch_root will not parse it again when seeking by setting the headers_read flag in the index. P