|
@@ -2038,8 +2038,12 @@ void tpg_log_status(struct tpg_data *tpg)
|
|
|
tpg->compose.left, tpg->compose.top);
|
|
|
pr_info("tpg colorspace: %d\n", tpg->colorspace);
|
|
|
pr_info("tpg transfer function: %d/%d\n", tpg->xfer_func, tpg->real_xfer_func);
|
|
|
- pr_info("tpg Y'CbCr encoding: %d/%d\n", tpg->ycbcr_enc, tpg->real_ycbcr_enc);
|
|
|
- pr_info("tpg HSV encoding: %d/%d\n", tpg->hsv_enc, tpg->real_hsv_enc);
|
|
|
+ if (tpg->color_enc == TGP_COLOR_ENC_HSV)
|
|
|
+ pr_info("tpg HSV encoding: %d/%d\n",
|
|
|
+ tpg->hsv_enc, tpg->real_hsv_enc);
|
|
|
+ else if (tpg->color_enc == TGP_COLOR_ENC_YCBCR)
|
|
|
+ pr_info("tpg Y'CbCr encoding: %d/%d\n",
|
|
|
+ tpg->ycbcr_enc, tpg->real_ycbcr_enc);
|
|
|
pr_info("tpg quantization: %d/%d\n", tpg->quantization, tpg->real_quantization);
|
|
|
pr_info("tpg RGB range: %d/%d\n", tpg->rgb_range, tpg->real_rgb_range);
|
|
|
}
|