( looks like very high contrast ) or pale color.
I think the problem is that the gui is rendered in full RGB ( like every PC graphics card ) and that the video output has to be adjusted to 16-235 output. But not for the gui.
In JB source it's inside hdmi-core.c
if(hdmi->edid.ycbcr444)
video.color_output = HDMI_COLOR_YCbCr444;
else if(hdmi->edid.ycbcr422)
video.color_output = HDMI_COLOR_YCbCr422;
else
video.color_output = HDMI_COLOR_RGB;
}
if(hdmi->ops->setVideo)
hdmi->ops->setVideo(hdmi, &video);
walter77
Comment