diff options
author | Benjamin Otte <otte@gnome.org> | 2003-12-22 19:05:34 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-12-22 19:05:34 +0000 |
commit | 4c8183523f75a8b99f575692dcd0c9c59e5aacbb (patch) | |
tree | 6c696572fa396d8666bd27afca494d9e380be764 /gst | |
parent | d10909996e5faedb92c0243528d02269e7cadba8 (diff) | |
download | gst-plugins-bad-4c8183523f75a8b99f575692dcd0c9c59e5aacbb.tar.gz gst-plugins-bad-4c8183523f75a8b99f575692dcd0c9c59e5aacbb.tar.bz2 gst-plugins-bad-4c8183523f75a8b99f575692dcd0c9c59e5aacbb.zip |
gst/qtdemux/qtdemux.c: qtdemux requires bytestream
Original commit message from CVS:
2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/qtdemux/qtdemux.c: (plugin_init):
qtdemux requires bytestream
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index e1fc8712..659c968b 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -242,6 +242,9 @@ plugin_init (GstPlugin *plugin) videocaps, NULL); #endif + if (!gst_library_load ("gstbytestream")) + return FALSE; + return gst_element_register (plugin, "qtdemux", GST_RANK_PRIMARY, GST_TYPE_QTDEMUX); } |