diff options
author | jbrjake <[email protected]> | 2007-01-04 19:48:54 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-01-04 19:48:54 +0000 |
commit | 6481b2d707275c582b9cf90dbe96598082a1fe33 (patch) | |
tree | 4b1e8d56bb73b9e7c03e21532687f59d948e44a3 /libhb/encx264.c | |
parent | b30e6cee64f1005cd31f5deb00ca5120c9852d23 (diff) |
Added CRF x264 rate control method to HBTest.
Constant quantizer is maintained as the default so nothing changes:
HBTest -i input -o output -e x264 -q 0.60
Switch to constant rate factor by throwing a -Q on the end:
HBTest -i input -o output -e x264 -q 0.60 -Q
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@89 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r-- | libhb/encx264.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c index a72a9603e..1bc24866c 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -77,11 +77,23 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job ) if( job->vquality >= 0.0 && job->vquality <= 1.0 ) { - /* Constant QP */ - param.rc.i_rc_method = X264_RC_CQP; - param.rc.i_qp_constant = 51 - job->vquality * 51; - hb_log( "encx264: encoding at constant QP %d", + switch(job->crf) + { + case 1: + /*Constant RF*/ + param.rc.i_rc_method = X264_RC_CRF; + param.rc.f_rf_constant = 51 - job->vquality * 51; + hb_log( "encx264: Encoding at constant RF %f", param.rc.f_rf_constant ); + break; + + case 0: + /*Constant QP*/ + param.rc.i_rc_method = X264_RC_CQP; + param.rc.i_qp_constant = 51 - job->vquality * 51; + hb_log( "encx264: encoding at constant QP %d", param.rc.i_qp_constant ); + break; + } } else { |