diff options
author | jbrjake <[email protected]> | 2008-11-01 15:32:37 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-11-01 15:32:37 +0000 |
commit | 331ade8cdfbda17404b07668e59c5222f8f55766 (patch) | |
tree | 87200ec853041435880187aba17835e1386ba564 /libhb/work.c | |
parent | a1e5d59b8fa5eb8b46a34bf120f6a70e4c1d5608 (diff) |
Minor tweaks the job config display for the COLR atom: only show when not using a default value, display with the name "color matrix" instead of "color space" to avoid confusion with conversions to YUV420 planar color space, and appear with the other container settings instead of video settings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1889 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/libhb/work.c b/libhb/work.c index 00edd050a..2538f41ff 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -153,6 +153,9 @@ 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)"); break; case HB_MUX_AVI: @@ -214,15 +217,6 @@ hb_display_job_info( hb_job_t * job ) title->width, title->height, job->width, job->height, job->crop[0], job->crop[1], job->crop[2], job->crop[3] ); } - - if( job->color_matrix ) - { - hb_log( " + color space: %s", job->color_matrix == 1 ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)"); - } - else - { - hb_log( " + color space: %s", ( title->width < 1280 || title->height < 720 ) ? "ITU Bt.601 (SD)" : "ITU Bt.709 (HD)"); - } if ( job->grayscale ) hb_log( " + grayscale mode" ); |