diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-07-08 14:55:54 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-07-08 15:08:03 +0200 |
commit | 7dfbc959602d7ef28ed918a35fea9f5851ee1347 (patch) | |
tree | 09c5405b122a397d55fd0ae835bb4b871877907b /parse-vtb-ext-block.cpp | |
parent | 7e0d77a5eef7af53a1d438666a6372fb329f31d9 (diff) |
edid-decode: drop dtd_cnt for non-CTA/Block-0 DTDs
The VFPDB in the CTA extensions can refer to DTDs by their index,
but that only applies to DTDs in block 0 and in CTA blocks, the
DTDs in other extension blocks are ignored. So just show them
as "DTD" without a counter.
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'parse-vtb-ext-block.cpp')
-rw-r--r-- | parse-vtb-ext-block.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-vtb-ext-block.cpp b/parse-vtb-ext-block.cpp index cd1553a..fb0606d 100644 --- a/parse-vtb-ext-block.cpp +++ b/parse-vtb-ext-block.cpp @@ -26,7 +26,7 @@ void edid_state::parse_vtb_ext_block(const unsigned char *x) if (num_dtd) { printf(" Detailed Timing Descriptors:\n"); for (unsigned i = 0; i < num_dtd; i++, x += 18) - detailed_timings(" ", x); + detailed_timings(" ", x, false); } if (num_cvt) { printf(" Coordinated Video Timings:\n"); |