From 69d3b098a2c2eed02af6916d8798995a139f5de9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 26 Dec 2015 11:34:47 +0000 Subject: [PATCH] tools: gst-device-monitor: print non-string device properties too --- tools/gst-device-monitor.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tools/gst-device-monitor.c b/tools/gst-device-monitor.c index b09f9f8..8af8f6d 100644 --- a/tools/gst-device-monitor.c +++ b/tools/gst-device-monitor.c @@ -46,9 +46,17 @@ static gboolean print_structure_field (GQuark field_id, const GValue * value, gpointer user_data) { - if (G_VALUE_HOLDS_STRING (value)) - g_print ("\n\t\t%s = %s", g_quark_to_string (field_id), - g_value_get_string (value)); + gchar *val; + + val = gst_value_serialize (value); + + if (val != NULL) + g_print ("\n\t\t%s = %s", g_quark_to_string (field_id), val); + else + g_print ("\n\t\t%s - could not serialise field of type %s", + g_quark_to_string (field_id), G_VALUE_TYPE_NAME (value)); + + g_free (val); return TRUE; } -- 2.7.4