diff options
author | Benjamin Otte <otte@gnome.org> | 2003-10-24 20:13:47 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-10-24 20:13:47 +0000 |
commit | 280f5bc3bd214137f7385ca2691022a780325d73 (patch) | |
tree | ba80246550474f4de32684a8ddcc55929ede1566 | |
parent | 2e0cf9190c396645087f77cdd8e377b8e4fb2231 (diff) |
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
-rw-r--r-- | ext/ffmpeg/gstffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/ffmpeg/gstffmpeg.c b/ext/ffmpeg/gstffmpeg.c index 1a25bf4..5f94f29 100644 --- a/ext/ffmpeg/gstffmpeg.c +++ b/ext/ffmpeg/gstffmpeg.c @@ -42,6 +42,9 @@ extern URLProtocol gstreamer_protocol; static gboolean plugin_init (GModule *module, GstPlugin *plugin) { + if (!gst_library_load ("gstbytestream")) + return FALSE; + avcodec_init (); avcodec_register_all (); av_register_all (); |