[FFmpeg-devel] [PATCH] avformat/isom: support 16:9 DV in QuickTime

2022-07-01 Thread Brion Vibber
Attached patch adds input support for 16:9 DV video in QuickTime. I found some old files produced by Adobe Premiere and Radius SoftDV which were affected by this: 4:3 files were marked as type 'dvc ' which already worked; 16:9 files as 'dvl ' which was missing. PAL uses 'p' in place of the ' ' spa

Re: [FFmpeg-devel] [PATCH] Fix huge reported DTS on Ogg Theora files with bogus granulepos

2017-01-17 Thread Brion Vibber
On Sun, Jan 15, 2017 at 5:35 PM, Michael Niedermayer wrote: > > --- a/libavformat/oggparsetheora.c > > +++ b/libavformat/oggparsetheora.c > > @@ -153,6 +153,10 @@ static uint64_t theora_gptopts(AVFormatContext > *ctx, int idx, uint64_t gp, > > if (!thp) > > return AV_NOPTS_VALUE; >

[FFmpeg-devel] [PATCH] Fix huge reported DTS on Ogg Theora files with bogus granulepos

2017-01-13 Thread Brion Vibber
Patch fixes an issue with broken Ogg Theora videos containing bogus negative granulepos on some packets: libavformat was reporting huge positive dts timestamps for these packets, causing downstream problems for ffmpeg2theora at Wikimedia Commons (near-infinite loop during transcoding). Bug report: