summaryrefslogtreecommitdiffstats
path: root/libhb/work.c
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2007-11-16 16:21:16 +0000
committerjbrjake <[email protected]>2007-11-16 16:21:16 +0000
commit9f0ec015e60bdfefb0956cd45a762c04d2d8bcb0 (patch)
tree408a774e00eebe0e4fd36d9b183f267b67796664 /libhb/work.c
parent374a7b7ef9ab2cce69497ad418a9ebe61975f1c0 (diff)
Moves the readout of applied x264 options from test.c to work.c, so the MacGui can see it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1064 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r--libhb/work.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c
index fdeace025..19c498f0f 100644
--- a/libhb/work.c
+++ b/libhb/work.c
@@ -240,6 +240,8 @@ static void do_job( hb_job_t * job, int cpu_count )
break;
case HB_VCODEC_X264:
hb_log( " + encoder x264" );
+ if( job->x264opts != NULL && *job->x264opts != '\0' )
+ hb_log( " + x264 options: %s", job->x264opts);
w = getWork( WORK_ENCX264 );
break;
}