mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
removing warnings as approved by wim
Original commit message from CVS: removing warnings as approved by wim
This commit is contained in:
parent
4ec41347e2
commit
dc3b48f77c
3 changed files with 3 additions and 9 deletions
|
@ -942,10 +942,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
GstElementFactory *factory;
|
GstElementFactory *factory;
|
||||||
GstTypeFactory *type;
|
GstTypeFactory *type;
|
||||||
|
|
||||||
if (!gst_library_load ("gstbytestream")) {
|
if (!gst_library_load ("gstbytestream"))
|
||||||
gst_info("dvdec: could not load support library: 'gstbytestream'\n");
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
/* We need to create an ElementFactory for each element we provide.
|
/* We need to create an ElementFactory for each element we provide.
|
||||||
* This consists of the name of the element, the GType identifier,
|
* This consists of the name of the element, the GType identifier,
|
||||||
|
|
|
@ -85,10 +85,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
GstCaps *raw_caps, *flac_caps;
|
GstCaps *raw_caps, *flac_caps;
|
||||||
|
|
||||||
/* this filter needs the bytestream package */
|
/* this filter needs the bytestream package */
|
||||||
if (!gst_library_load ("gstbytestream")) {
|
if (!gst_library_load ("gstbytestream"))
|
||||||
gst_info ("vorbis:: could not load support library: 'gstbytestream'\n");
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
gst_plugin_set_longname (plugin, "The FLAC Lossless compressor Codec");
|
gst_plugin_set_longname (plugin, "The FLAC Lossless compressor Codec");
|
||||||
|
|
||||||
|
|
|
@ -1163,10 +1163,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
|
||||||
|
|
||||||
LADSPAPluginSearch(ladspa_describe_plugin);
|
LADSPAPluginSearch(ladspa_describe_plugin);
|
||||||
|
|
||||||
if (! gst_library_load ("gstbytestream")) {
|
if (! gst_library_load ("gstbytestream"))
|
||||||
gst_info ("gstladspa: could not load support library: 'gstbytestream'\n");
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
/* initialize dparam support library */
|
/* initialize dparam support library */
|
||||||
gst_control_init(NULL,NULL);
|
gst_control_init(NULL,NULL);
|
||||||
|
|
Loading…
Reference in a new issue