summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2014-01-03 05:22:02 -0800
committerAaron Plattner <aplattner@nvidia.com>2014-01-07 10:26:38 -0800
commite7a19c8b5a26c8bfd76a7399a1a15eac01184261 (patch)
tree89b3d913111aede8a09ce5add65ba0cce16d1c12
parenta29728ca9599fd08da1243e9b422ac26a24cc05b (diff)
Move EDID printing into a helper function
Localize the specialness of EDID printing by moving it into a single function, print_edid, which prints the binary EDID data. Remove the is_edid parameter from everything else. Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--xrandr.c54
1 files changed, 33 insertions, 21 deletions
diff --git a/xrandr.c b/xrandr.c
index c82632f..ddc6c64 100644
--- a/xrandr.c
+++ b/xrandr.c
@@ -2342,19 +2342,10 @@ property_values_from_string(const char *str, const Atom type, const int format,
static void
-print_output_property_value(Bool is_edid,
- int value_format, /* 8, 16, 32 */
+print_output_property_value(int value_format, /* 8, 16, 32 */
Atom value_type, /* XA_{ATOM,INTEGER,CARDINAL} */
const void *value_bytes)
{
- /* special-case the EDID */
- if (is_edid && value_format == 8)
- {
- const uint8_t *val = value_bytes;
- printf ("%02" PRIx8, *val);
- return;
- }
-
if (value_type == XA_ATOM && value_format == 32)
{
const Atom *val = value_bytes;
@@ -2415,6 +2406,26 @@ print_output_property_value(Bool is_edid,
}
static void
+print_edid(int nitems, const unsigned char *prop)
+{
+ int k;
+
+ printf ("\n\t\t");
+
+ for (k = 0; k < nitems; k++)
+ {
+ if (k != 0 && (k % 16) == 0)
+ {
+ printf ("\n\t\t");
+ }
+
+ printf("%02" PRIx8, prop[k]);
+ }
+
+ printf("\n");
+}
+
+static void
print_output_property(const char *atom_name,
int value_format,
Atom value_type,
@@ -2422,12 +2433,16 @@ print_output_property(const char *atom_name,
const unsigned char *prop)
{
int bytes_per_item = value_format / 8;
- Bool is_edid = strcmp (atom_name, "EDID") == 0;
int k;
- if (is_edid)
+ /*
+ * Check for properties that need special formatting.
+ */
+ if (strcmp (atom_name, "EDID") == 0 && value_format == 8 &&
+ value_type == XA_INTEGER)
{
- printf ("\n\t\t");
+ print_edid (nitems, prop);
+ return;
}
for (k = 0; k < nitems; k++)
@@ -2439,12 +2454,9 @@ print_output_property(const char *atom_name,
printf ("\n\t\t");
}
}
- print_output_property_value (is_edid, value_format, value_type,
+ print_output_property_value (value_format, value_type,
prop + (k * bytes_per_item));
- if (!is_edid)
- {
- printf (" ");
- }
+ printf (" ");
}
printf ("\n");
@@ -3569,10 +3581,10 @@ main (int argc, char **argv)
for (k = 0; k < propinfo->num_values / 2; k++)
{
printf ("(");
- print_output_property_value (False, 32, actual_type,
+ print_output_property_value (32, actual_type,
(unsigned char *) &(propinfo->values[k * 2]));
printf (", ");
- print_output_property_value (False, 32, actual_type,
+ print_output_property_value (32, actual_type,
(unsigned char *) &(propinfo->values[k * 2 + 1]));
printf (")");
if (k < propinfo->num_values / 2 - 1)
@@ -3585,7 +3597,7 @@ main (int argc, char **argv)
printf ("\t\tsupported: ");
for (k = 0; k < propinfo->num_values; k++)
{
- print_output_property_value (False, 32, actual_type,
+ print_output_property_value (32, actual_type,
(unsigned char *) &(propinfo->values[k]));
if (k < propinfo->num_values - 1)
printf (", ");