提交 0f5d9d2e 编写于 作者: T Tomi Valkeinen

OMAPDSS: HDMI: fix interlace output

The HDMI output video format's yres needs to be divided by two for
interlace. Fix it.
Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
上级 5f0bc7a9
......@@ -171,6 +171,8 @@ void hdmi_wp_init_vid_fmt_timings(struct hdmi_video_format *video_fmt,
video_fmt->packing_mode = HDMI_PACK_10b_RGB_YUV444;
video_fmt->y_res = param->timings.y_res;
video_fmt->x_res = param->timings.x_res;
if (param->timings.interlace)
video_fmt->y_res /= 2;
timings->hbp = param->timings.hbp;
timings->hfp = param->timings.hfp;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册