]> granicus.if.org Git - handbrake/commitdiff
Blah, need to pay more attention when transcripting patches. job->areBframes needs...
authorjbrjake <jb.rubin@gmail.com>
Sun, 9 Aug 2009 17:37:30 +0000 (17:37 +0000)
committerjbrjake <jb.rubin@gmail.com>
Sun, 9 Aug 2009 17:37:30 +0000 (17:37 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2758 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/encx264.c

index e0f9f34017cb972cf18f1c60e01d81b9265950f5..249d42c5ada5d3747456bd37435d0c26fcf729cb 100644 (file)
@@ -136,6 +136,9 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
                 param.i_level_idc );
     }
 
+    /* B-frames are on by default.*/
+    job->areBframes = 1;
+    
     /*
                This section passes the string x264opts to libx264 for parsing into
         parameter names and values.
@@ -184,7 +187,6 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
                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 )