summaryrefslogtreecommitdiffstats
path: root/gst/avi
diff options
context:
space:
mode:
Diffstat (limited to 'gst/avi')
-rw-r--r--gst/avi/gstavidemux.c12
-rw-r--r--gst/avi/gstavimux.c6
2 files changed, 6 insertions, 12 deletions
diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c
index d9ec2059..44d9478e 100644
--- a/gst/avi/gstavidemux.c
+++ b/gst/avi/gstavidemux.c
@@ -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);
diff --git a/gst/avi/gstavimux.c b/gst/avi/gstavimux.c
index 83b0a9a0..211a2901 100644
--- a/gst/avi/gstavimux.c
+++ b/gst/avi/gstavimux.c
@@ -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));