summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-09-09 23:27:38 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-09-09 23:27:38 +0000
commitdc3b48f77c977d055efa550f01d691d2c4ec110f (patch)
tree2da046967d0dd3d0f57128c88d2a6927cebd2492 /ext
parent4ec41347e2c8aadcf7203f324eab286ac85429f4 (diff)
removing warnings as approved by wim
Original commit message from CVS: removing warnings as approved by wim
Diffstat (limited to 'ext')
-rw-r--r--ext/dv/gstdvdec.c4
-rw-r--r--ext/flac/gstflac.c4
-rw-r--r--ext/ladspa/gstladspa.c4
3 files changed, 3 insertions, 9 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c
index e0a1d67b..367cfe72 100644
--- a/ext/dv/gstdvdec.c
+++ b/ext/dv/gstdvdec.c
@@ -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,
diff --git a/ext/flac/gstflac.c b/ext/flac/gstflac.c
index f36815a5..efd18477 100644
--- a/ext/flac/gstflac.c
+++ b/ext/flac/gstflac.c
@@ -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");
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index 87641161..7970c5d2 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -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);