From 224d71db30d1afcc4cdf571cd5c612a4d820d6c9 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Fri, 17 Dec 2010 16:13:52 +0000 Subject: [PATCH] cli: fix constant quality setting for theora we had special cased such that only % values were being allowed for theora git-svn-id: svn://localhost/HandBrake/trunk@3709 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- test/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.c b/test/test.c index 6416c20b..33005406 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; -- 2.11.0