This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:

Subject: edid-decode: fix copy-and-paste bug in the DisplayID parser
Author:  Hans Verkuil <[email protected]>
Date:    Fri Dec 12 14:53:53 2025 +0100

The 'Maximum Suggested SDR Luminance' and 'Maximum Boost SDR Luminance'
fields used the same byte offsets. Increase the byte offsets for the
Maximum Boost field so it reads from the correct offset.

Signed-off-by: Hans Verkuil <[email protected]>

 utils/edid-decode/parse-displayid-block.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=3313eaf05d26d6b1fc80a0d19e7335f7b8a61f02
diff --git a/utils/edid-decode/parse-displayid-block.cpp 
b/utils/edid-decode/parse-displayid-block.cpp
index a53b468cd1a6..2c630555217b 100644
--- a/utils/edid-decode/parse-displayid-block.cpp
+++ b/utils/edid-decode/parse-displayid-block.cpp
@@ -1654,7 +1654,7 @@ void 
edid_state::parse_displayid_brightness_lum_range(const unsigned char *x)
        // TODO: test that this is > Native Minimum Luminance from Display 
Params DB
        // and <= Native Maximum Luminance (Full Coverage) in same DB.
        printf("    Maximum Boost SDR Luminance: %s\n",
-              ieee7542d(x[5] | (x[6] << 8)).c_str());
+              ieee7542d(x[7] | (x[8] << 8)).c_str());
        // TODO: test that this is >= the previous value
 }
 
_______________________________________________
linuxtv-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to