const GstAudioChannelPosition *posn = NULL;
if (!gst_opus_header_is_id_header (buf)) {
- GST_ERROR_OBJECT (dec, "Header is not an Opus ID header");
+ GST_ELEMENT_ERROR (dec, STREAM, FORMAT, ("Header is not an Opus ID header"),
+ (NULL));
return GST_FLOW_ERROR;
}
&dec->n_streams,
&dec->n_stereo_streams,
dec->channel_mapping, &dec->pre_skip, &dec->r128_gain)) {
- GST_ERROR_OBJECT (dec, "Failed to parse Opus ID header");
+ GST_ELEMENT_ERROR (dec, STREAM, DECODE, ("Failed to parse Opus ID header"),
+ (NULL));
return GST_FLOW_ERROR;
}
dec->r128_gain_volume = gst_opus_dec_get_r128_volume (dec->r128_gain);
return res;
creation_failed:
- GST_ERROR_OBJECT (dec, "Failed to create Opus decoder: %d", err);
+ GST_ELEMENT_ERROR (dec, LIBRARY, INIT, ("Failed to create Opus decoder"),
+ ("Failed to create Opus decoder (%d): %s", err, opus_strerror (err)));
return GST_FLOW_ERROR;
buffer_failed:
- GST_ERROR_OBJECT (dec, "Failed to create %u byte buffer", packet_size);
+ GST_ELEMENT_ERROR (dec, STREAM, DECODE,
+ ("Failed to create %u byte buffer", packet_size), (NULL));
return GST_FLOW_ERROR;
}
gst_buffer_unmap (outbuf, &omap);
if (outsize < 0) {
- GST_ERROR_OBJECT (enc, "Encoding failed: %d", outsize);
+ GST_ELEMENT_ERROR (enc, STREAM, ENCODE, ("Encoding failed"),
+ ("Encoding ifailed (%d): %s", outsize, opus_strerror (outsize)));
ret = GST_FLOW_ERROR;
goto done;
} else if (outsize > max_payload_size) {
- GST_WARNING_OBJECT (enc,
- "Encoded size %d is higher than max payload size (%d bytes)",
- outsize, max_payload_size);
+ GST_ELEMENT_ERROR (enc, STREAM, ENCODE, ("Encoder error"),
+ ("Encoded size %d is higher than max payload size (%d bytes)",
+ outsize, max_payload_size));
ret = GST_FLOW_ERROR;
goto done;
}