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 | 07a03963817c362b53809c7aad390d527341b730 (patch) | |
tree | ee56ecc9274e4f978bf640750a9398fb1538a5d5 /gst/qtdemux | |
parent | 3560b606239c354fd8f9af2be202491e6f591a46 (diff) |
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/qtdemux')
-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); } |