summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2003-12-22 19:05:34 +0000
committerBenjamin Otte <otte@gnome.org>2003-12-22 19:05:34 +0000
commit4c8183523f75a8b99f575692dcd0c9c59e5aacbb (patch)
tree6c696572fa396d8666bd27afca494d9e380be764 /gst
parentd10909996e5faedb92c0243528d02269e7cadba8 (diff)
downloadgst-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.c3
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);
}