mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
separating tags and metadata
Original commit message from CVS: separating tags and metadata
This commit is contained in:
parent
1125f6c41c
commit
93687028f1
1 changed files with 11 additions and 2 deletions
|
@ -13,6 +13,7 @@ struct probe_context {
|
||||||
gint total_ls;
|
gint total_ls;
|
||||||
|
|
||||||
GstCaps *metadata;
|
GstCaps *metadata;
|
||||||
|
GstCaps *tags;
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -25,7 +26,9 @@ print_metadata (GstCaps *caps)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!strcmp (gst_caps_get_mime (caps), "application/x-gst-metadata")) {
|
if (!strcmp (gst_caps_get_mime (caps), "application/x-gst-metadata") ||
|
||||||
|
!strcmp (gst_caps_get_mime (caps), "application/x-gst-tags"))
|
||||||
|
{
|
||||||
GstProps *props = caps->properties;
|
GstProps *props = caps->properties;
|
||||||
GList *walk = props->properties;
|
GList *walk = props->properties;
|
||||||
|
|
||||||
|
@ -147,7 +150,12 @@ deep_notify (GObject *object, GstObject *origin,
|
||||||
g_object_get_property (G_OBJECT (origin), pspec->name, &value);
|
g_object_get_property (G_OBJECT (origin), pspec->name, &value);
|
||||||
context->metadata = g_value_peek_pointer (&value);
|
context->metadata = g_value_peek_pointer (&value);
|
||||||
}
|
}
|
||||||
else if (!strcmp (pspec->name, "caps")) {
|
else if (!strcmp (pspec->name, "tags")) {
|
||||||
|
|
||||||
|
g_value_init (&value, pspec->value_type);
|
||||||
|
g_object_get_property (G_OBJECT (origin), pspec->name, &value);
|
||||||
|
context->tags = g_value_peek_pointer (&value);
|
||||||
|
} else if (!strcmp (pspec->name, "caps")) {
|
||||||
if (GST_IS_PAD (origin) && GST_PAD (origin) == context->pad) {
|
if (GST_IS_PAD (origin) && GST_PAD (origin) == context->pad) {
|
||||||
g_value_init (&value, pspec->value_type);
|
g_value_init (&value, pspec->value_type);
|
||||||
g_object_get_property (G_OBJECT (origin), pspec->name, &value);
|
g_object_get_property (G_OBJECT (origin), pspec->name, &value);
|
||||||
|
@ -186,6 +194,7 @@ collect_logical_stream_properties (struct probe_context *context, gint stream)
|
||||||
if (count > 10) break;
|
if (count > 10) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print_metadata (context->tags);
|
||||||
print_metadata (context->metadata);
|
print_metadata (context->metadata);
|
||||||
print_format (context->caps);
|
print_format (context->caps);
|
||||||
print_lbs_info (context, stream);
|
print_lbs_info (context, stream);
|
||||||
|
|
Loading…
Reference in a new issue