summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/gconf/gconf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/gconf/gconf.c b/ext/gconf/gconf.c
index 2bda0669..e7214e2d 100644
--- a/ext/gconf/gconf.c
+++ b/ext/gconf/gconf.c
@@ -180,6 +180,14 @@ gst_gconf_render_bin_with_default (const gchar * bin,
ret = gst_parse_bin_from_description (bin, TRUE, &err);
if (ret == NULL || err != NULL) {
+ if (err) {
+ GST_DEBUG ("Could not create audio sink from GConf settings: %s",
+ err->message);
+ g_error_free (err);
+ } else {
+ GST_DEBUG ("Could not create audio sink from GConf settings");
+ }
+
ret = gst_element_factory_make (default_sink, NULL);
if (!ret)