mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
20acc0ae7e
commit
269ec283eb
3 changed files with 13 additions and 4 deletions
|
@ -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>
|
2005-09-14 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug
|
* configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 97fbc2dd78ea0cc2225b63ff383802b7c376d9b7
|
Subproject commit 9a5025a2d276796d8d21243ef598e679ff7477bc
|
|
@ -402,13 +402,17 @@ gst_registry_find_feature (GstRegistry * registry, const gchar * name,
|
||||||
return feature;
|
return feature;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
GList *
|
GList *
|
||||||
gst_registry_get_feature_list (GstRegistry * registry, GType type)
|
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 *
|
GList *
|
||||||
|
|
Loading…
Reference in a new issue