diff options
author | jstebbins <[email protected]> | 2008-06-08 21:33:21 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-06-08 21:33:21 +0000 |
commit | 2861d8a12526539b5e3b372168fe9dfaaefbe0db (patch) | |
tree | 43c12e9bca07183c63a871ae67736ab62e177a26 /test | |
parent | eae2b0f3e10c035140077ed4d23c3059d99f6e24 (diff) |
Improve image quality for ffmpeg constant quality
Allow entry of QP for ffmpeg
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1503 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index 2c91287a6..81b6486a6 100644 --- a/test/test.c +++ b/test/test.c @@ -861,7 +861,7 @@ static int HandleEvents( hb_handle_t * h ) hb_fix_aspect( job, HB_KEEP_WIDTH ); } - if( vquality >= 0.0 && ( ( vquality <= 1.0 ) || ( vcodec == HB_VCODEC_X264 ) ) ) + if( vquality >= 0.0 && ( ( vquality <= 1.0 ) || ( vcodec == HB_VCODEC_X264 ) || (vcodec == HB_VCODEC_FFMPEG) ) ) { job->vquality = vquality; job->vbitrate = 0; |