This is an automatic generated email to let you know that the following patch 
were queued:

Subject: edid-decode: fix Adative-Sync Seamless Transition
Author:  Hans Verkuil <hverkuil-ci...@xs4all.nl>
Date:    Wed Jul 3 13:23:01 2024 +0200

The bit is 0 if this is supported, and 1 if not.

So invert the test to match the standard.

Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>

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

---

diff --git a/parse-displayid-block.cpp b/parse-displayid-block.cpp
index 74b3287eb0af..f11dd8c5fef8 100644
--- a/parse-displayid-block.cpp
+++ b/parse-displayid-block.cpp
@@ -1432,7 +1432,7 @@ void edid_state::parse_displayid_adaptive_sync(const 
unsigned char *x)
                        fail("Use of reserved value %u.\n", v);
                        break;
                }
-               if (x[0] & 0x10)
+               if (!(x[0] & 0x10))
                        printf("      Supports Seamless Transition\n");
                if (x[0] & 0x02)
                        printf("      'Max Single Frame Duration Increase' 
field value without jitter impact\n");

Reply via email to