mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
update to new structure
Original commit message from CVS: update to new structure
This commit is contained in:
parent
93687028f1
commit
8008441138
1 changed files with 18 additions and 15 deletions
|
@ -13,24 +13,26 @@ struct probe_context {
|
||||||
gint total_ls;
|
gint total_ls;
|
||||||
|
|
||||||
GstCaps *metadata;
|
GstCaps *metadata;
|
||||||
GstCaps *tags;
|
GstCaps *streaminfo;
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_metadata (GstCaps *caps)
|
print_caps (GstCaps *caps)
|
||||||
{
|
{
|
||||||
g_print (" metadata:\n");
|
if (caps == NULL) return;
|
||||||
if (!caps || caps->properties == NULL) {
|
|
||||||
g_print (" none\n");
|
|
||||||
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"))
|
!strcmp (gst_caps_get_mime (caps), "application/x-gst-streaminfo"))
|
||||||
{
|
{
|
||||||
GstProps *props = caps->properties;
|
GstProps *props = caps->properties;
|
||||||
GList *walk = props->properties;
|
GList *walk;
|
||||||
|
/* ugly hack, but ok for now. If needed, fix by individual strcmp */
|
||||||
|
g_print (" %s:\n", gst_caps_get_mime (caps) + 18);
|
||||||
|
if (props == NULL) {
|
||||||
|
g_print (" none\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
walk = props->properties;
|
||||||
|
|
||||||
while (walk) {
|
while (walk) {
|
||||||
GstPropsEntry *entry = (GstPropsEntry *) walk->data;
|
GstPropsEntry *entry = (GstPropsEntry *) walk->data;
|
||||||
|
@ -58,7 +60,7 @@ print_metadata (GstCaps *caps)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
g_print (" unkown metadata type\n");
|
g_print (" unkown caps type\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -91,6 +93,7 @@ print_lbs_info (struct probe_context *context, gint stream)
|
||||||
{
|
{
|
||||||
const GstFormat *formats;
|
const GstFormat *formats;
|
||||||
|
|
||||||
|
/* FIXME: need a better name here */
|
||||||
g_print (" stream info:\n");
|
g_print (" stream info:\n");
|
||||||
|
|
||||||
/* report info in all supported formats */
|
/* report info in all supported formats */
|
||||||
|
@ -150,11 +153,11 @@ 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, "tags")) {
|
else if (!strcmp (pspec->name, "streaminfo")) {
|
||||||
|
|
||||||
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);
|
||||||
context->tags = g_value_peek_pointer (&value);
|
context->streaminfo = g_value_peek_pointer (&value);
|
||||||
} else if (!strcmp (pspec->name, "caps")) {
|
} 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);
|
||||||
|
@ -194,8 +197,8 @@ collect_logical_stream_properties (struct probe_context *context, gint stream)
|
||||||
if (count > 10) break;
|
if (count > 10) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
print_metadata (context->tags);
|
print_caps (context->metadata);
|
||||||
print_metadata (context->metadata);
|
print_caps (context->streaminfo);
|
||||||
print_format (context->caps);
|
print_format (context->caps);
|
||||||
print_lbs_info (context, stream);
|
print_lbs_info (context, stream);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue