tools: gst-launch: print structure property notifies nicer

One less layer of escaping, but still lots of ugly \.
This commit is contained in:
Tim-Philipp Müller 2017-03-27 18:27:59 +01:00
parent ebdb4c6984
commit 921b0f40d8

View file

@ -865,6 +865,8 @@ event_loop (GstElement * pipeline, gboolean blocking, gboolean do_progress,
val_str = gst_caps_to_string (g_value_get_boxed (val));
else if (G_VALUE_TYPE (val) == GST_TYPE_TAG_LIST)
val_str = gst_tag_list_to_string (g_value_get_boxed (val));
else if (G_VALUE_TYPE (val) == GST_TYPE_STRUCTURE)
val_str = gst_structure_to_string (g_value_get_boxed (val));
else
val_str = gst_value_serialize (val);
} else {