OSDN Git Service

temporary hack to use old x264 b-pyramid default of 0 (none)
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Fri, 5 Mar 2010 22:27:53 +0000 (22:27 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
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://localhost/HandBrake/trunk@3150 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/encx264.c

index 7199fd9..2451692 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;