Commit 85a5f85e authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] v4l2-tpg: ignore V4L2_DV_RGB_RANGE setting for YUV formats

The V4L2_DV_RGB_RANGE_* settings are, as the name says, for RGB formats only.
So they should be ignored for non-RGB formats.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent c1023ba7
...@@ -777,7 +777,7 @@ static void precalculate_color(struct tpg_data *tpg, int k) ...@@ -777,7 +777,7 @@ static void precalculate_color(struct tpg_data *tpg, int k)
* Remember that r, g and b are still in the 0 - 0xff0 range. * Remember that r, g and b are still in the 0 - 0xff0 range.
*/ */
if (tpg->real_rgb_range == V4L2_DV_RGB_RANGE_LIMITED && if (tpg->real_rgb_range == V4L2_DV_RGB_RANGE_LIMITED &&
tpg->rgb_range == V4L2_DV_RGB_RANGE_FULL) { tpg->rgb_range == V4L2_DV_RGB_RANGE_FULL && !tpg->is_yuv) {
/* /*
* Convert from full range (which is what r, g and b are) * Convert from full range (which is what r, g and b are)
* to limited range (which is the 'real' RGB range), which * to limited range (which is the 'real' RGB range), which
...@@ -787,7 +787,7 @@ static void precalculate_color(struct tpg_data *tpg, int k) ...@@ -787,7 +787,7 @@ static void precalculate_color(struct tpg_data *tpg, int k)
g = (g * 219) / 255 + (16 << 4); g = (g * 219) / 255 + (16 << 4);
b = (b * 219) / 255 + (16 << 4); b = (b * 219) / 255 + (16 << 4);
} else if (tpg->real_rgb_range != V4L2_DV_RGB_RANGE_LIMITED && } else if (tpg->real_rgb_range != V4L2_DV_RGB_RANGE_LIMITED &&
tpg->rgb_range == V4L2_DV_RGB_RANGE_LIMITED) { tpg->rgb_range == V4L2_DV_RGB_RANGE_LIMITED && !tpg->is_yuv) {
/* /*
* Clamp r, g and b to the limited range and convert to full * Clamp r, g and b to the limited range and convert to full
* range since that's what we deliver. * range since that's what we deliver.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment