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 | |
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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de> + * gst/qtdemux/qtdemux.c: (plugin_init): + qtdemux requires bytestream + +2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de> + * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link): Fix remaining caps handling errors due to CAPS merge. 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); } |