aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2021-12-09 09:45:59 +0100
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2021-12-09 11:32:07 +0100
commit6514c9d9b18160fe9f09d3d70f99dda85d6fca71 (patch)
tree40a737bd3f3d67ae11c78cb08501f71073b3211b
parentb00755e34eb12aa92416aaf1bb7b02603131afe0 (diff)
edid-decode: add support for new CABLE_STATUS bit in SCDS
Missed this new bit. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r--parse-cta-block.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/parse-cta-block.cpp b/parse-cta-block.cpp
index 9a2ef8a..5762278 100644
--- a/parse-cta-block.cpp
+++ b/parse-cta-block.cpp
@@ -937,6 +937,8 @@ static void cta_hf_scdb(const unsigned char *x, unsigned length)
printf(" SCDC Present\n");
if (x[2] & 0x40)
printf(" SCDC Read Request Capable\n");
+ if (x[2] & 0x20)
+ printf(" Supports Cable Status\n");
if (x[2] & 0x10)
printf(" Supports Color Content Bits Per Component Indication\n");
if (x[2] & 0x08)

Privacy Policy