mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-27 11:32:51 +00:00
Don't add bogus typefind functions
Original commit message from CVS: Don't add bogus typefind functions
This commit is contained in:
parent
6355ba2a78
commit
9aa1cb1aaa
1 changed files with 3 additions and 2 deletions
|
@ -1606,7 +1606,6 @@ static gboolean
|
|||
plugin_init (GModule *module, GstPlugin *plugin)
|
||||
{
|
||||
GstElementFactory *factory;
|
||||
GstTypeFactory *type;
|
||||
gint i = 0;
|
||||
|
||||
/* this filter needs bytestream */
|
||||
|
@ -1620,8 +1619,10 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
|||
&gst_asf_demux_details);
|
||||
|
||||
while (asf_type_definitions[i].name) {
|
||||
GstTypeFactory *type;
|
||||
|
||||
type = gst_type_factory_new (&asf_type_definitions[i]);
|
||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (type));
|
||||
//gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (type));
|
||||
i++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue