From 791ce31e7dc64f674cf2c24aebdc86f689f86eac Mon Sep 17 00:00:00 2001 From: Hans Verkuil Date: Fri, 9 Sep 2022 10:44:21 +0200 Subject: [PATCH] edid-decode: drop 'T8VTDB' altogether Just show the DMT without the 'T8VTDB' prefix: the output is more understandable that way, and the only VTDB type that can store a DMT is the Type VIII. Signed-off-by: Hans Verkuil --- parse-cta-block.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse-cta-block.cpp b/parse-cta-block.cpp index e95c538..7903f32 100644 --- a/parse-cta-block.cpp +++ b/parse-cta-block.cpp @@ -844,7 +844,7 @@ void edid_state::cta_print_svr(unsigned char svr, vec_timings_ext &vec_tim) printf(" %s: Invalid\n", suffix); fail("Invalid T8VTDB.\n"); } else { - sprintf(suffix, "T8VTDB: DMT 0x%02x", cta.preparsed_t8vtdb_dmt); + sprintf(suffix, "DMT 0x%02x", cta.preparsed_t8vtdb_dmt); printf(" %s\n", suffix); vec_tim.push_back(timings_ext(svr, suffix)); } -- 2.11.4.GIT