diff options
author | jstebbins <[email protected]> | 2009-10-19 20:32:20 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-10-19 20:32:20 +0000 |
commit | 23fb2706d3b4e2594829d70275df8c4c21f07688 (patch) | |
tree | b800967dbbbf21c062b35762a2ce70fdf6219a77 /libhb/work.c | |
parent | 41dc72b96a5b99eb0d80439b95c0b02efc9f84af (diff) |
remove crf flag and all uses of it
x264 encodes will only use crf now. qp mode is gone.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2891 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 752839bce..2209b15f2 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -273,7 +273,7 @@ void hb_display_job_info( hb_job_t * job ) } else if( job->vquality > 1 ) { - hb_log( " + quality: %.2f %s", job->vquality, job->crf && job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); + hb_log( " + quality: %.2f %s", job->vquality, job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); } else { |