diff options
author | jstebbins <[email protected]> | 2010-12-17 16:13:52 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-12-17 16:13:52 +0000 |
commit | 8289b05efce0dcbe22881abd2a060b3998641cdf (patch) | |
tree | 2703953479bcfa058f01f42840f82a17621b53c8 /test/test.c | |
parent | 6bf984c0169bf68f9a21f8cd751053392b134fcd (diff) |
cli: fix constant quality setting for theora
we had special cased such that only % values were being allowed for theora
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3709 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/test.c')
-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 6416c20b5..330054063 100644 --- a/test/test.c +++ b/test/test.c @@ -1428,7 +1428,7 @@ static int HandleEvents( hb_handle_t * h ) break; } - if( vquality >= 0.0 && ( ( vquality <= 1.0 ) || ( vcodec == HB_VCODEC_X264 ) || (vcodec == HB_VCODEC_FFMPEG) ) ) + if( vquality >= 0.0 ) { job->vquality = vquality; job->vbitrate = 0; |