From: Sebastian Dröge Date: Thu, 19 Jun 2014 07:56:09 +0000 (+0200) Subject: hlsdemux: Include the debug string in the error messages we propagate from the X-Git-Tag: 1.3.3~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95404609c0a00c9a6cf8e6c997c2d2cce412342a;p=platform%2Fupstream%2Fgst-plugins-bad.git hlsdemux: Include the debug string in the error messages we propagate from the source --- diff --git a/ext/hls/gsthlsdemux.c b/ext/hls/gsthlsdemux.c index 4458c2a..5d39ed0 100644 --- a/ext/hls/gsthlsdemux.c +++ b/ext/hls/gsthlsdemux.c @@ -356,12 +356,20 @@ gst_hls_demux_handle_message (GstBin * bin, GstMessage * msg) case GST_MESSAGE_ERROR:{ GError *err = NULL; gchar *debug = NULL; + gchar *new_error = NULL; gst_message_parse_error (msg, &err, &debug); GST_WARNING_OBJECT (demux, "Source posted error: %d:%d %s (%s)", err->domain, err->code, err->message, debug); + if (debug) + new_error = g_strdup_printf ("%s: %s\n", err->message, debug); + if (new_error) { + g_free (err->message); + err->message = new_error; + } + /* error, but ask to retry */ g_mutex_lock (&demux->fragment_download_lock); demux->last_ret = GST_FLOW_CUSTOM_ERROR;