removing warnings (approved by wtay)

Original commit message from CVS:
removing warnings (approved by wtay)
This commit is contained in:
Thomas Vander Stichele 2002-09-09 23:24:29 +00:00
parent a7b776e7f7
commit 4ec41347e2
5 changed files with 10 additions and 23 deletions

View file

@ -1462,17 +1462,13 @@ 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,
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);

View file

@ -1121,10 +1121,8 @@ 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 */

View 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;
}

View 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);

View file

@ -232,12 +232,10 @@ 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,
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);