From 1343cc5cc156adf8d698a266284da61bcc1536f7 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 30 Sep 2024 12:41:22 +0200 Subject: [PATCH] gpujpeg_color_space_get_name: print limited range Print limited range explicitly - namely for for BT.601 where BT.601 full-range is standard for JFIF. --- src/gpujpeg_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gpujpeg_common.c b/src/gpujpeg_common.c index 6fe29cf1..df4fd116 100644 --- a/src/gpujpeg_common.c +++ b/src/gpujpeg_common.c @@ -1888,11 +1888,11 @@ gpujpeg_color_space_get_name(enum gpujpeg_color_space color_space) case GPUJPEG_YUV: return "YUV"; case GPUJPEG_YCBCR_BT601: - return "YCbCr BT.601"; + return "YCbCr BT.601 (limtted range)"; case GPUJPEG_YCBCR_BT601_256LVLS: return "YCbCr BT.601 256 Levels (YCbCr JPEG)"; case GPUJPEG_YCBCR_BT709: - return "YCbCr BT.709"; + return "YCbCr BT.709 (limited range)"; } if ( color_space == GPUJPEG_CS_DEFAULT ) { return "(default CS)";