This is an automatic generated email to let you know that the following patch were queued:
Subject: edid-decode: set has_svrs when adding native DTDs Author: Hans Verkuil <[email protected]> Date: Mon Jan 29 09:57:47 2024 +0100 The native DTDs are added as SVRs, but has_svrs wasn't set, so these 'timings' were never resolved to the actual timings. Fix this. Signed-off-by: Hans Verkuil <[email protected]> Fixes: fe04b14 ("edid-decode: check that there really are SVRs to resolve") parse-cta-block.cpp | 1 + 1 file changed, 1 insertion(+) --- diff --git a/parse-cta-block.cpp b/parse-cta-block.cpp index 4bcc2717899c..060cbdb65d1c 100644 --- a/parse-cta-block.cpp +++ b/parse-cta-block.cpp @@ -2917,6 +2917,7 @@ void edid_state::parse_cta_block(const unsigned char *x) sprintf(type, "DTD %3u", i + 1); cta.native_timings.push_back(timings_ext(i + 129, type)); + cta.has_svrs = true; } if (cta.has_hdmi && block_nr != (block_map.saw_block_1 ? 2 : 1)) fail("The HDMI Specification requires that the first Extension Block (that is not a Block Map) is an CTA-861 Extension Block.\n"); _______________________________________________ linuxtv-commits mailing list -- [email protected] To unsubscribe send an email to [email protected] %(web_page_url)slistinfo/%(_internal_name)s
