diff options
author | jbrjake <[email protected]> | 2009-02-23 17:07:25 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2009-02-23 17:07:25 +0000 |
commit | 0113160aaf73ba3c2f791af4ef91d5dd66637a31 (patch) | |
tree | af0846c2b82acbb7b9274f14c16ca885c3acc558 /libhb/work.c | |
parent | 9c285a3fe71ac86f71e55aac1faff4d8ccc02fb6 (diff) |
Don't truncate RF/QP values down to integers when displaying job config. Still needs to be restructured for encoders other than x264, but I wanted to get this minor change in now so I don't forget and because it won't break any patches to work.c.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2175 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 d5d314c25..b6e4aa6c2 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -265,7 +265,7 @@ void hb_display_job_info( hb_job_t * job ) } else if( job->vquality > 1 ) { - hb_log( " + quality: %.0f %s", job->vquality, job->crf && job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); + hb_log( " + quality: %.2f %s", job->vquality, job->crf && job->vcodec == HB_VCODEC_X264 ? "(RF)" : "(QP)" ); } else { |