summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2009-08-09 15:17:50 +0000
committerjbrjake <[email protected]>2009-08-09 15:17:50 +0000
commit8306e8da55ce41e0ad6b799a165a4912872dac57 (patch)
tree79a7ac1b2ca78ee06c79cd20c7be10ca1fecba42 /libhb
parent37f17b20c0534197156407810371eaa94a95e41e (diff)
Oops, forgot the job->areBframes check needed to be updated for the new x264 defaults. Thanks for the catch, Rodeo.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2756 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/encx264.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c
index 5e3fbc03c..e0f9f3401 100644
--- a/libhb/encx264.c
+++ b/libhb/encx264.c
@@ -181,15 +181,15 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
When B-frames are enabled, the max frame count increments
by 1 (regardless of the number of B-frames). If you don't
change the duration of the video track when you mux, libmp4
- barfs. So, check if the x264opts are using B-frames, and
- when they are, set the boolean job->areBframes as true.
+ barfs. So, check if the x264opts aren't using B-frames, and
+ when they aren't, set the boolean job->areBframes as false.
*/
-
+ job->areBframes = 1;
if( !( strcmp( name, "bframes" ) ) )
{
- if( atoi( value ) > 0 )
+ if( atoi( value ) == 0 )
{
- job->areBframes = 1;
+ job->areBframes = 0;
}
}