diff options
author | jstebbins <[email protected]> | 2010-03-05 22:27:53 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-03-05 22:27:53 +0000 |
commit | 13ee1bb5c7e1ac454bf68bd786f1e00ea15bba51 (patch) | |
tree | e2c448881e63be7d4098b014e036e1bb205490be /libhb/encx264.c | |
parent | 2366449c40bc1497e736708ba531a9cd7fdd0f70 (diff) |
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
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r-- | libhb/encx264.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; |