diff options
author | jstebbins <[email protected]> | 2011-08-08 20:24:30 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-08-08 20:24:30 +0000 |
commit | 8f930a4ecbf1bbb3f658fae5bdeb7c272ff4250e (patch) | |
tree | c1cbcd43e43f8e18d5c0db89e5ae51eb3d02b04e /libhb/work.c | |
parent | 1a10eb0fcb770aa7eab1a08e0ebd03646bb6bfdc (diff) |
libhb: allow changing colorimetry in x264 options
Setting "colorprim", "transfer", or "colormarix" in the x264 advanced
options will no longer be ignored and will propagate to the mp4 muxer
where those values also get set in the container.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4164 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/work.c b/libhb/work.c index 222ae240f..9ab11fec9 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -194,8 +194,8 @@ void hb_display_job_info( hb_job_t * job ) if( job->mp4_optimize ) hb_log( " + optimized for progressive web downloads"); - if( job->color_matrix ) - hb_log( " + custom color matrix: %s", job->color_matrix == 1 ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)"); + if( job->color_matrix_code ) + hb_log( " + custom color matrix: %s", job->color_matrix_code == 1 ? "ITU Bt.601 (SD)" : job->color_matrix_code == 2 ? "ITU Bt.709 (HD)" : "Custom" ); break; case HB_MUX_MKV: |