From: jstebbins Date: Fri, 5 Mar 2010 22:27:53 +0000 (+0000) Subject: temporary hack to use old x264 b-pyramid default of 0 (none) X-Git-Tag: 0.9.5~584 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13ee1bb5c7e1ac454bf68bd786f1e00ea15bba51;p=handbrake temporary hack to use old x264 b-pyramid default of 0 (none) 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 --- diff --git a/libhb/encx264.c b/libhb/encx264.c index 7199fd98c..2451692a9 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -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;