diff options
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: |