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

gst/avi/gstavidemux.c
gst/avi/gstavimux.c
gst/cutter/gstcutter.c
gst/flx/gstflxdec.c
gst/qtdemux/qtdemux.c

index d9ec205..44d9478 100644 (file)
@@ -1462,18 +1462,14 @@ plugin_init (GModule *module, GstPlugin *plugin)
   GstTypeFactory *type;
 
   /* this filter needs the riff parser */
-  if (!gst_library_load ("gstbytestream")) {
-    gst_info("avidemux: could not load support library: 'gstbytestream'\n");
+  if (!gst_library_load ("gstbytestream"))
     return FALSE;
-  }
-  if (!gst_library_load ("gstriff")) {
-    gst_info("avidemux: could not load support library: 'gstriff'\n");
+  if (!gst_library_load ("gstriff"))
     return FALSE;
-  }
 
   /* create an elementfactory for the avi_demux element */
-  factory = gst_element_factory_new ("avidemux",GST_TYPE_AVI_DEMUX,
-                                    &gst_avi_demux_details);
+  factory = gst_element_factory_new ("avidemux", GST_TYPE_AVI_DEMUX,
+                                     &gst_avi_demux_details);
   g_return_val_if_fail (factory != NULL, FALSE);
   gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
 
index 83b0a9a..211a290 100644 (file)
@@ -1121,15 +1121,13 @@ plugin_init (GModule *module, GstPlugin *plugin)
 
   /* this filter needs the riff parser */
 #if 0
-  if (!gst_library_load ("gstriff")) {
-    gst_info ("avimux: could not load support library: 'gstriff'\n");
+  if (!gst_library_load ("gstriff"))
     return FALSE;
-  }
 #endif
 
   /* create an elementfactory for the avimux element */
   factory = gst_element_factory_new ("avimux", GST_TYPE_AVIMUX,
-                                    &gst_avimux_details);
+                                     &gst_avimux_details);
   g_return_val_if_fail (factory != NULL, FALSE);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_factory));
index 065f81c..e8d8e01 100644 (file)
@@ -396,10 +396,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
 
   /* load audio support library */
   if (!gst_library_load ("gstaudio"))
-  {
-    gst_info ("cutter: could not load support library: 'gstaudio'\n");
     return FALSE;
-  }
 
   return TRUE;
 }
index 0b099cb..d54fc98 100644 (file)
@@ -678,10 +678,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
   GstTypeFactory *type;
 
   /* this filter needs the bytestream package */
-  if (!gst_library_load("gstbytestream")) {
-    gst_info("flxdec:: could not load support library: 'gstbytestream'\n");
+  if (!gst_library_load ("gstbytestream"))
     return FALSE;
-  }
 
   factory = gst_element_factory_new("flxdec", GST_TYPE_FLXDEC, &flxdec_details);
   g_return_val_if_fail(factory != NULL, FALSE);
index 10cbec4..3fc8acc 100644 (file)
@@ -232,13 +232,11 @@ plugin_init (GModule *module, GstPlugin *plugin)
   GstElementFactory *factory;
   GstTypeFactory *type;
 
-  if (!gst_library_load("gstbytestream")) {
-    gst_info("qtdemux: could not load support library 'gstbytestream'\n");
+  if (!gst_library_load ("gstbytestream"))
     return FALSE;
-  }
 
-  factory = gst_element_factory_new("qtdemux",GST_TYPE_QTDEMUX,
-                                   &gst_qtdemux_details);
+  factory = gst_element_factory_new ("qtdemux", GST_TYPE_QTDEMUX,
+                                     &gst_qtdemux_details);
   g_return_val_if_fail(factory != NULL, FALSE);
   gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);