summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-08-05 16:41:09 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2013-08-19 18:27:27 +0100
commit2f9de4a9ea29d893148b4375438d29877414f876 (patch)
tree6929bbb165e5fac8b6f11081c3473894801b964a
parent70f8ab84f85207597dd06bcbac932c76e8683431 (diff)
Decode the Video Capability Data Block
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--edid-decode.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/edid-decode.c b/edid-decode.c
index 083ddd9..bf0c3da 100644
--- a/edid-decode.c
+++ b/edid-decode.c
@@ -863,6 +863,44 @@ cea_hdmi_block(unsigned char *x)
}
}
+DEFINE_FIELD("YCbCr quantization", YCbCr_quantization, 7, 7,
+ { 0, "No Data" },
+ { 1, "Selectable (via AVI YQ)" });
+DEFINE_FIELD("RGB quantization", RGB_quantization, 6, 6,
+ { 0, "No Data" },
+ { 1, "Selectable (via AVI Q)" });
+DEFINE_FIELD("PT scan behaviour", PT_scan, 4, 5,
+ { 0, "No Data" },
+ { 1, "Always Overscannned" },
+ { 2, "Always Underscanned" },
+ { 3, "Support both over- and underscan" });
+DEFINE_FIELD("IT scan behaviour", IT_scan, 2, 3,
+ { 0, "IT video formats not supported" },
+ { 1, "Always Overscannned" },
+ { 2, "Always Underscanned" },
+ { 3, "Support both over- and underscan" });
+DEFINE_FIELD("CE scan behaviour", CE_scan, 0, 1,
+ { 0, "CE video formats not supported" },
+ { 1, "Always Overscannned" },
+ { 2, "Always Underscanned" },
+ { 3, "Support both over- and underscan" });
+
+static struct field *vcdb_fields[] = {
+ &YCbCr_quantization,
+ &RGB_quantization,
+ &PT_scan,
+ &IT_scan,
+ &CE_scan,
+};
+
+static void
+cea_vcdb(unsigned char *x)
+{
+ unsigned char d = x[2];
+
+ decode(vcdb_fields, d, " ");
+}
+
static void
cea_block(unsigned char *x)
{
@@ -897,6 +935,7 @@ cea_block(unsigned char *x)
switch (x[1]) {
case 0x00:
printf("video capability data block\n");
+ cea_vcdb(x);
break;
case 0x01:
printf("vendor-specific video data block\n");