summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-11-09 18:40:35 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-11-09 18:40:35 +0000
commit93687028f1dc83e4fdabefabf4450004ed4813e0 (patch)
tree4f88bfcabeed40c35172963c030e4356cd315d14 /examples
parent1125f6c41cc9a66c7f3c3d069320e6a8f4407fae (diff)
separating tags and metadata
Original commit message from CVS: separating tags and metadata
Diffstat (limited to 'examples')
-rw-r--r--examples/seeking/vorbisfile.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/examples/seeking/vorbisfile.c b/examples/seeking/vorbisfile.c
index c94199fe..f550085c 100644
--- a/examples/seeking/vorbisfile.c
+++ b/examples/seeking/vorbisfile.c
@@ -13,6 +13,7 @@ struct probe_context {
gint total_ls;
GstCaps *metadata;
+ GstCaps *tags;
GstCaps *caps;
};
@@ -25,7 +26,9 @@ print_metadata (GstCaps *caps)
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;
GList *walk = props->properties;
@@ -147,7 +150,12 @@ deep_notify (GObject *object, GstObject *origin,
g_object_get_property (G_OBJECT (origin), pspec->name, &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) {
g_value_init (&value, pspec->value_type);
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;
}
+ print_metadata (context->tags);
print_metadata (context->metadata);
print_format (context->caps);
print_lbs_info (context, stream);