Implement missing function. This is enough to get the basics of typefinding working - oggdemux succeeds now. decodebi...

Original commit message from CVS:
Implement missing function. This is enough to get the basics of
typefinding working - oggdemux succeeds now. decodebin is still broken.
This commit is contained in:
Michael Smith 2005-09-15 14:21:08 +00:00
parent 20acc0ae7e
commit 269ec283eb
3 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-09-15 Michael Smith <msmith@fluendo.com>
* gst/gstregistry.c: (gst_registry_get_feature_list):
Implement this. Makes oggdemux work; decodebin still broken.
2005-09-14 David Schleef <ds@schleef.org>
* configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug

2
common

@ -1 +1 @@
Subproject commit 97fbc2dd78ea0cc2225b63ff383802b7c376d9b7
Subproject commit 9a5025a2d276796d8d21243ef598e679ff7477bc

View file

@ -402,13 +402,17 @@ gst_registry_find_feature (GstRegistry * registry, const gchar * name,
return feature;
}
GList *
gst_registry_get_feature_list (GstRegistry * registry, GType type)
{
/* FIXME */
GstTypeNameData data;
return NULL;
data.type = type;
data.name = NULL;
return gst_registry_feature_filter (registry,
(GstPluginFeatureFilter) gst_plugin_feature_type_name_filter,
FALSE, &data);
}
GList *