summaryrefslogtreecommitdiffstats
path: root/libhb/work.c
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-01-14 16:15:10 +0000
committerjbrjake <[email protected]>2008-01-14 16:15:10 +0000
commit622b70b1c8edd8c09a60f130ccf19befc4efd170 (patch)
tree1752fc983947e60dfb6e4fbc3df3ef88f0096644 /libhb/work.c
parent8520e5c0c5ccc2f96f4d7b995ff6a56ecf27babe (diff)
Don't bother informing the user when grayscale is off, since that's the case 99% of the time anyway.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1193 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r--libhb/work.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c
index 1ddea78f0..e1d342f59 100644
--- a/libhb/work.c
+++ b/libhb/work.c
@@ -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 )
{