gst/qtdemux/qtdemux.c: qtdemux requires bytestream
authorBenjamin Otte <otte@gnome.org>
Mon, 22 Dec 2003 19:05:34 +0000 (19:05 +0000)
committerBenjamin Otte <otte@gnome.org>
Mon, 22 Dec 2003 19:05:34 +0000 (19:05 +0000)
Original commit message from CVS:
2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>

* gst/qtdemux/qtdemux.c: (plugin_init):
qtdemux requires bytestream

ChangeLog
gst/qtdemux/qtdemux.c

index 8fdb163..8da695c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index e1fc871..659c968 100644 (file)
@@ -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);
 }