mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 02:45:35 +00:00
tools: gst-launch: print structure property notifies nicer
One less layer of escaping, but still lots of ugly \.
This commit is contained in:
parent
ebdb4c6984
commit
921b0f40d8
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue