OSDN Git Service

drm/amd/display: w/a no color space info for HDMI when build AVI
authorCharlene Liu <charlene.liu@amd.com>
Sat, 24 Jun 2017 20:01:37 +0000 (16:01 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:08:15 +0000 (18:08 -0400)
Signed-off-by: Charlene Liu <charlene.liu@amd.com>
Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_resource.c

index 90eb839..f0183d5 100644 (file)
@@ -1605,6 +1605,9 @@ static void set_avi_info_frame(
        union hdmi_info_packet *hdmi_info = &info_frame.avi_info_packet.info_packet_hdmi;
 
        color_space = pipe_ctx->stream->public.output_color_space;
+       if (color_space == COLOR_SPACE_UNKNOWN)
+               color_space = (stream->public.timing.pixel_encoding == PIXEL_ENCODING_RGB)?
+                       COLOR_SPACE_SRGB:COLOR_SPACE_YCBCR709;
 
        /* Initialize header */
        hdmi_info->bits.header.info_frame_type = HDMI_INFOFRAME_TYPE_AVI;