From c056b99f94e30c942d08afbaa2f015d9e916c4fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 23 May 2016 15:35:39 +0100 Subject: [PATCH] opusdec: use default error message strings in more cases Details should go into the debug message. We should probably make up new codes for encoder/decoder lib init failures too. --- ext/opus/gstopusdec.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/opus/gstopusdec.c b/ext/opus/gstopusdec.c index 1594e99cda..cac0c86149 100644 --- a/ext/opus/gstopusdec.c +++ b/ext/opus/gstopusdec.c @@ -316,8 +316,8 @@ gst_opus_dec_parse_header (GstOpusDec * dec, GstBuffer * buf) const GstAudioChannelPosition *posn = NULL; if (!gst_opus_header_is_id_header (buf)) { - GST_ELEMENT_ERROR (dec, STREAM, FORMAT, ("Header is not an Opus ID header"), - (NULL)); + GST_ELEMENT_ERROR (dec, STREAM, FORMAT, (NULL), + ("Header is not an Opus ID header")); return GST_FLOW_ERROR; } @@ -328,8 +328,8 @@ gst_opus_dec_parse_header (GstOpusDec * dec, GstBuffer * buf) &dec->n_streams, &dec->n_stereo_streams, dec->channel_mapping, &dec->pre_skip, &dec->r128_gain)) { - GST_ELEMENT_ERROR (dec, STREAM, DECODE, ("Failed to parse Opus ID header"), - (NULL)); + GST_ELEMENT_ERROR (dec, STREAM, DECODE, (NULL), + ("Failed to parse Opus ID header")); return GST_FLOW_ERROR; } dec->r128_gain_volume = gst_opus_dec_get_r128_volume (dec->r128_gain); @@ -653,8 +653,8 @@ creation_failed: return GST_FLOW_ERROR; buffer_failed: - GST_ELEMENT_ERROR (dec, STREAM, DECODE, - ("Failed to create %u byte buffer", packet_size), (NULL)); + GST_ELEMENT_ERROR (dec, STREAM, DECODE, (NULL), + ("Failed to create %u byte buffer", packet_size)); return GST_FLOW_ERROR; }