diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-11-09 18:40:35 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-11-09 18:40:35 +0000 |
commit | 7ecfe26b923ed839fe996de9bbe1b6e81aaac480 (patch) | |
tree | c8fc409db5ea24afb1326a4acdb62c9f46ea4911 /examples/seeking | |
parent | 6550caebbe7c3bb85083b03adda1436d914dc45d (diff) | |
download | gst-plugins-bad-7ecfe26b923ed839fe996de9bbe1b6e81aaac480.tar.gz gst-plugins-bad-7ecfe26b923ed839fe996de9bbe1b6e81aaac480.tar.bz2 gst-plugins-bad-7ecfe26b923ed839fe996de9bbe1b6e81aaac480.zip |
separating tags and metadata
Original commit message from CVS:
separating tags and metadata
Diffstat (limited to 'examples/seeking')
-rw-r--r-- | examples/seeking/vorbisfile.c | 13 |
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); |