mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-14 12:04:11 +00:00
removing warnings (approved by wtay)
Original commit message from CVS: removing warnings (approved by wtay)
This commit is contained in:
parent
046a6ffb8a
commit
a734880ad3
2 changed files with 1 additions and 6 deletions
|
@ -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));
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue