diff options
author | jstebbins <[email protected]> | 2010-04-25 21:15:43 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-04-25 21:15:43 +0000 |
commit | c22e82ad0081856466a92a6e47a72b3ea9b5628c (patch) | |
tree | 4118bfdb4913105820b98e7317021704c8f39faa /contrib/ffmpeg/A03-png-sequences.patch | |
parent | e6ba7dc071b0b1f070b7f92e3b30eab1ee00a0b5 (diff) |
bump ffmpeg to rev 22950
offset ffmpeg seeks by value of initial timestamp since it can be non-zero
catch pix fmt that is unsupported by swscale, log it, skip the track
use new ffmpeg avg_frame_rate for more accurate framerate estimate
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3267 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/ffmpeg/A03-png-sequences.patch')
-rw-r--r-- | contrib/ffmpeg/A03-png-sequences.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ffmpeg/A03-png-sequences.patch b/contrib/ffmpeg/A03-png-sequences.patch index 5259160fb..6f244170b 100644 --- a/contrib/ffmpeg/A03-png-sequences.patch +++ b/contrib/ffmpeg/A03-png-sequences.patch @@ -1,6 +1,6 @@ Index: libavcodec/pngdec.c =================================================================== ---- ffmpeg.orig/libavcodec/pngdec.c (revision 20594) +--- ffmpeg.orig/libavcodec/pngdec.c (revision 22823) +++ ffmpeg/libavcodec/pngdec.c (working copy) @@ -597,6 +597,18 @@ } @@ -20,7 +20,7 @@ Index: libavcodec/pngdec.c +#if 0 /* handle p-frames only if a predecessor frame is available */ if(s->last_picture->data[0] != NULL) { - if(!(avpkt->flags & PKT_FLAG_KEY)) { + if(!(avpkt->flags & AV_PKT_FLAG_KEY)) { @@ -613,6 +625,7 @@ } } |