diff options
author | Benjamin Otte <otte@gnome.org> | 2003-10-24 20:13:49 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-10-24 20:13:49 +0000 |
commit | 78b2064a46bcd633ebd3d3b35c57e390ef743b08 (patch) | |
tree | 1ff7e739fe9b8b4629d579ac0ac656925910ce7a /gst/flx | |
parent | 4de40d8ccd21dca15aaf792a842d266604cc59a7 (diff) | |
download | gst-plugins-bad-78b2064a46bcd633ebd3d3b35c57e390ef743b08.tar.gz gst-plugins-bad-78b2064a46bcd633ebd3d3b35c57e390ef743b08.tar.bz2 gst-plugins-bad-78b2064a46bcd633ebd3d3b35c57e390ef743b08.zip |
fixes:TYPEFIND
Original commit message from CVS:
fixes:
- bytestream needs to be gst_library_loaded again
- typecast correctly on guint8* => guint32* in typefinding
- remove unused/unnecessary files
Diffstat (limited to 'gst/flx')
-rw-r--r-- | gst/flx/gstflxdec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c index 51ceec48..f4e085c3 100644 --- a/gst/flx/gstflxdec.c +++ b/gst/flx/gstflxdec.c @@ -649,6 +649,9 @@ plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; + if (!gst_library_load ("gstbytestream")) + return FALSE; + factory = gst_element_factory_new("flxdec", GST_TYPE_FLXDEC, &flxdec_details); g_return_val_if_fail(factory != NULL, FALSE); gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY); |