diff options
author | jstebbins <[email protected]> | 2009-06-11 23:26:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-11 23:26:05 +0000 |
commit | ff7639bdf5ae1cd3977ca16f0a0892d58f554f7a (patch) | |
tree | 36725b3adc639bd6cf9b856cb15196adf43b9879 /libhb/work.c | |
parent | 929760aca797da1c3388e769ce3381bf4935af72 (diff) |
libhb: interjob vrate info did not get updated when there is an indepth scan
due to job sequence_id mismatch. masking interjob sequence_id properly fixes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2522 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 53d9e27c7..b7cf32ae7 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -354,7 +354,7 @@ void correct_framerate( hb_job_t * job ) hb_interjob_t * interjob = hb_interjob_get( job->h ); - if( ( job->sequence_id & 0xFFFFFF ) != ( interjob->last_job ) ) + if( ( job->sequence_id & 0xFFFFFF ) != ( interjob->last_job && 0xFFFFFF) ) return; // Interjob information is for a different encode. /* Cache the original framerate before altering it. */ |