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/mixmatrix/mixmatrix.c | |
parent | 4de40d8ccd21dca15aaf792a842d266604cc59a7 (diff) | |
download | gst-plugins-bad-TYPEFIND.tar.gz gst-plugins-bad-TYPEFIND.tar.bz2 gst-plugins-bad-TYPEFIND.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/mixmatrix/mixmatrix.c')
-rw-r--r-- | gst/mixmatrix/mixmatrix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c index 5e9ebe53..7b03c83f 100644 --- a/gst/mixmatrix/mixmatrix.c +++ b/gst/mixmatrix/mixmatrix.c @@ -500,6 +500,9 @@ plugin_init (GModule *module, GstPlugin *plugin) { GstElementFactory *factory; + if (!gst_library_load ("gstbytestream")) + return FALSE; + factory = gst_element_factory_new ("mixmatrix", GST_TYPE_MIXMATRIX, &mixmatrix_details); g_return_val_if_fail (factory != NULL, FALSE); |