mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
info: use macros to check types
Use the macros to check the type of objects instead of directly poking at the first field.
This commit is contained in:
parent
64c71323a6
commit
e457739ac9
1 changed files with 3 additions and 3 deletions
|
@ -671,16 +671,16 @@ gst_debug_print_object (gpointer ptr)
|
|||
if (object == NULL) {
|
||||
return g_strdup ("(NULL)");
|
||||
}
|
||||
if (*(GType *) ptr == GST_TYPE_CAPS) {
|
||||
if (GST_IS_CAPS (ptr)) {
|
||||
return gst_caps_to_string ((const GstCaps *) ptr);
|
||||
}
|
||||
if (*(GType *) ptr == GST_TYPE_STRUCTURE) {
|
||||
if (GST_IS_STRUCTURE (ptr)) {
|
||||
return gst_info_structure_to_string ((const GstStructure *) ptr);
|
||||
}
|
||||
if (*(GType *) ptr == GST_TYPE_CAPS_FEATURES) {
|
||||
return gst_caps_features_to_string ((const GstCapsFeatures *) ptr);
|
||||
}
|
||||
if (*(GType *) ptr == GST_TYPE_TAG_LIST) {
|
||||
if (GST_IS_TAG_LIST (ptr)) {
|
||||
gchar *str = gst_tag_list_to_string ((GstTagList *) ptr);
|
||||
if (G_UNLIKELY (pretty_tags))
|
||||
return prettify_structure_string (str);
|
||||
|
|
Loading…
Reference in a new issue