summaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-12-17 16:13:52 +0000
committerjstebbins <[email protected]>2010-12-17 16:13:52 +0000
commit8289b05efce0dcbe22881abd2a060b3998641cdf (patch)
tree2703953479bcfa058f01f42840f82a17621b53c8 /test/test.c
parent6bf984c0169bf68f9a21f8cd751053392b134fcd (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.c2
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;