]> granicus.if.org Git - handbrake/commitdiff
temporary hack to use old x264 b-pyramid default of 0 (none)
authorjstebbins <jstebbins.hb@gmail.com>
Fri, 5 Mar 2010 22:27:53 +0000 (22:27 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Fri, 5 Mar 2010 22:27:53 +0000 (22:27 +0000)
this will be reverted when the gui's and presets are updated to
reflect the new default of 2 (normal).

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3150 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/encx264.c

index 7199fd98c6cd597c213fe6628073dfc4bf1ea34e..2451692a9bd797d29efa2153cacde33c3c740224 100644 (file)
@@ -123,6 +123,9 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
         }
     }
     
+    /* Temporary hack to use old b-pyramid default */
+    param.i_bframe_pyramid = 0;
+
     /* Enable metrics */
     param.analyse.b_psnr = 1;
     param.analyse.b_ssim = 1;