SDVO: reset pixel repeat in avi frame
For #19115, the root cause is avi_if.u.avi.PR in i830_sdvo_set_avi_infoframe() belongs to element for interlaced mode based on CEA_861B, but currently we don't support interlaced mode. So it should be set as 0.
This commit is contained in:
parent
d8e89b26ef
commit
e38fd84fcc
|
|
@ -947,7 +947,6 @@ static void i830_sdvo_set_avi_infoframe(xf86OutputPtr output,
|
|||
.len = DIP_LEN_AVI,
|
||||
};
|
||||
|
||||
avi_if.u.avi.PR = i830_sdvo_get_pixel_multiplier(mode) - 1;
|
||||
avi_if.checksum = i830_sdvo_calc_hbuf_csum((uint8_t *)&avi_if,
|
||||
4 + avi_if.len);
|
||||
i830_sdvo_set_hdmi_buf(output, 1, (uint8_t *)&avi_if, 4 + avi_if.len,
|
||||
|
|
|
|||
Loading…
Reference in New Issue