OSDN Git Service

Don't bother informing the user when grayscale is off, since that's the case 99%...
authorjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 14 Jan 2008 16:15:10 +0000 (16:15 +0000)
committerjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 14 Jan 2008 16:15:10 +0000 (16:15 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@1193 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/work.c

index 1ddea78..e1d342f 100644 (file)
@@ -158,7 +158,9 @@ static void do_job( hb_job_t * job, int cpu_count )
     hb_log( " + %dx%d -> %dx%d, crop %d/%d/%d/%d",
             title->width, title->height, job->width, job->height,
             job->crop[0], job->crop[1], job->crop[2], job->crop[3] );
-    hb_log( " + grayscale %s", job->grayscale ? "on" : "off" );
+
+    if ( job->grayscale )
+        hb_log( " + grayscale mode" );
     
     if ( job->vfr )
     {