opus: use default error messages in some more cases
authorTim-Philipp Müller <tim@centricular.com>
Mon, 23 May 2016 18:28:39 +0000 (19:28 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Mon, 23 May 2016 18:28:39 +0000 (19:28 +0100)
ext/opus/gstopusdec.c
ext/opus/gstopusenc.c

index cac0c86..8f03da3 100644 (file)
@@ -559,7 +559,7 @@ opus_dec_chain_parse_data (GstOpusDec * dec, GstBuffer * buffer)
     GstFlowReturn ret = GST_FLOW_ERROR;
 
     gst_buffer_unref (outbuf);
-    GST_AUDIO_DECODER_ERROR (dec, 1, STREAM, DECODE, ("Error decoding stream"),
+    GST_AUDIO_DECODER_ERROR (dec, 1, STREAM, DECODE, (NULL),
         ("Decoding error (%d): %s", n, opus_strerror (n)), ret);
     return ret;
   }
index e309bc0..ed84058 100644 (file)
@@ -1044,12 +1044,12 @@ gst_opus_enc_encode (GstOpusEnc * enc, GstBuffer * buf)
   gst_buffer_unmap (outbuf, &omap);
 
   if (outsize < 0) {
-    GST_ELEMENT_ERROR (enc, STREAM, ENCODE, ("Encoding failed"),
-        ("Encoding ifailed (%d): %s", outsize, opus_strerror (outsize)));
+    GST_ELEMENT_ERROR (enc, STREAM, ENCODE, (NULL),
+        ("Encoding failed (%d): %s", outsize, opus_strerror (outsize)));
     ret = GST_FLOW_ERROR;
     goto done;
   } else if (outsize > max_payload_size) {
-    GST_ELEMENT_ERROR (enc, STREAM, ENCODE, ("Encoder error"),
+    GST_ELEMENT_ERROR (enc, STREAM, ENCODE, (NULL),
         ("Encoded size %d is higher than max payload size (%d bytes)",
             outsize, max_payload_size));
     ret = GST_FLOW_ERROR;