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

gst/adder/gstadder.c
gst/audioscale/gstaudioscale.c

index 6235b5e..6aa6390 100644 (file)
@@ -685,10 +685,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
                                    &adder_details);
   g_return_val_if_fail(factory != NULL, FALSE);
   
-  if (! gst_library_load ("gstbytestream")) {
-    gst_info ("gstadder: could not load support library: 'gstbytestream'\n");
+  if (! gst_library_load ("gstbytestream"))
     return FALSE;
-  }
     
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (gst_adder_src_template_factory));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (gst_adder_sink_template_factory));
index ea22972..4e0ce7c 100644 (file)
@@ -334,10 +334,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
 
   /* load support library */
   if (!gst_library_load ("gstresample"))
-  {
-    gst_info ("audioscale: could not load support library: 'gstresample'\n");
     return FALSE;
-  }
 
   return TRUE;
 }