diff options
author | jstebbins <[email protected]> | 2011-04-02 19:58:34 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-04-02 19:58:34 +0000 |
commit | c5493132981f650d13c03181d53da5e3fd205bcd (patch) | |
tree | 85845fd91828ab1f7b87814567f447564ada5872 /test/test.c | |
parent | 889409ab149f8d7b20be0dfb720359c80fb7471e (diff) |
Fix garbled previews from BD h.264 sources
Forome reason, frames that are tagged as recovery points in many BD h.264
streams do not result in complete frames when decoded. Pushing 2 extra
frames through the decoder seems to always fix this. This patch extends
something I was already doing when generating previews from a BD structure.
This just applies the same logic to ffmpeg streams that have h.264 video.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3895 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index c6363a036..97ecfd3e9 100644 --- a/test/test.c +++ b/test/test.c @@ -385,7 +385,7 @@ static void PrintTitleInfo( hb_title_t * title ) { fprintf( stderr, " + Main Feature\n" ); } - if ( title->type == HB_STREAM_TYPE ) + if ( title->type == HB_STREAM_TYPE || title->type == HB_FF_STREAM_TYPE ) { fprintf( stderr, " + stream: %s\n", title->path ); } |