diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-09-09 23:24:29 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-09-09 23:24:29 +0000 |
commit | 4ec41347e2c8aadcf7203f324eab286ac85429f4 (patch) | |
tree | 824b2fd04a29555e7287cdff5ce53e7248d18984 /gst/qtdemux/qtdemux.c | |
parent | a7b776e7f7bfaa4ce6d9010e525af363c496ae82 (diff) |
removing warnings (approved by wtay)
Original commit message from CVS:
removing warnings (approved by wtay)
Diffstat (limited to 'gst/qtdemux/qtdemux.c')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 10cbec43..3fc8acc0 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -232,13 +232,11 @@ 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, - &gst_qtdemux_details); + 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); |