removing warnings as approved by wim
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 9 Sep 2002 23:27:38 +0000 (23:27 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 9 Sep 2002 23:27:38 +0000 (23:27 +0000)
Original commit message from CVS:
removing warnings as approved by wim

ext/dv/gstdvdec.c
ext/flac/gstflac.c
ext/ladspa/gstladspa.c

index e0a1d67..367cfe7 100644 (file)
@@ -942,10 +942,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
   GstElementFactory *factory;
   GstTypeFactory *type;
 
-  if (!gst_library_load ("gstbytestream")) {
-    gst_info("dvdec: could not load support library: 'gstbytestream'\n");
+  if (!gst_library_load ("gstbytestream"))
     return FALSE;
-  }
 
   /* We need to create an ElementFactory for each element we provide.
    * This consists of the name of the element, the GType identifier,
index f36815a..efd1847 100644 (file)
@@ -85,10 +85,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
   GstCaps *raw_caps, *flac_caps;
 
   /* this filter needs the bytestream package */
-  if (!gst_library_load ("gstbytestream")) {
-    gst_info ("vorbis:: could not load support library: 'gstbytestream'\n");
+  if (!gst_library_load ("gstbytestream"))
     return FALSE;
-  }
 
   gst_plugin_set_longname (plugin, "The FLAC Lossless compressor Codec");
 
index 8764116..7970c5d 100644 (file)
@@ -1163,10 +1163,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
 
   LADSPAPluginSearch(ladspa_describe_plugin);
 
-  if (! gst_library_load ("gstbytestream")) {
-    gst_info ("gstladspa: could not load support library: 'gstbytestream'\n");
+  if (! gst_library_load ("gstbytestream"))
     return FALSE;
-  }
   
   /* initialize dparam support library */
   gst_control_init(NULL,NULL);