2011-06-05 07:54:19 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
|
|
|
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
|
|
|
* Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Based on the speexdec element.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:element-opusdec
|
|
|
|
* @see_also: opusenc, oggdemux
|
|
|
|
*
|
|
|
|
* This element decodes a OPUS stream to raw integer audio.
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example pipelines</title>
|
|
|
|
* |[
|
|
|
|
* gst-launch -v filesrc location=opus.ogg ! oggdemux ! opusdec ! audioconvert ! audioresample ! alsasink
|
|
|
|
* ]| Decode an Ogg/Opus file. To create an Ogg/Opus file refer to the documentation of opusenc.
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstopusdec.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <gst/tag/tag.h>
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (opusdec_debug);
|
|
|
|
#define GST_CAT_DEFAULT opusdec_debug
|
|
|
|
|
|
|
|
#define DEC_MAX_FRAME_SIZE 2000
|
2011-11-15 23:00:32 +00:00
|
|
|
#define DEC_MAX_OUTPUT_BUFFER_SIZE (5760)
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate opus_dec_src_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-11-11 17:46:41 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) { S16LE }, "
|
2011-09-28 12:24:52 +00:00
|
|
|
"rate = (int) { 8000, 12000, 16000, 24000, 48000 }, "
|
2011-11-11 17:46:41 +00:00
|
|
|
"channels = (int) [ 1, 2 ] ")
|
2011-06-05 07:54:19 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate opus_dec_sink_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-opus")
|
|
|
|
);
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
G_DEFINE_TYPE (GstOpusDec, gst_opus_dec, GST_TYPE_AUDIO_DECODER);
|
|
|
|
|
|
|
|
static gboolean gst_opus_dec_start (GstAudioDecoder * dec);
|
|
|
|
static gboolean gst_opus_dec_stop (GstAudioDecoder * dec);
|
|
|
|
static GstFlowReturn gst_opus_dec_handle_frame (GstAudioDecoder * dec,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
static gboolean gst_opus_dec_set_format (GstAudioDecoder * bdec,
|
|
|
|
GstCaps * caps);
|
2011-06-05 07:54:19 +00:00
|
|
|
static GstFlowReturn opus_dec_chain_parse_data (GstOpusDec * dec,
|
|
|
|
GstBuffer * buf, GstClockTime timestamp, GstClockTime duration);
|
|
|
|
|
|
|
|
static void
|
2011-11-11 17:46:41 +00:00
|
|
|
gst_opus_dec_class_init (GstOpusDecClass * klass)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
2011-11-14 13:41:58 +00:00
|
|
|
GstAudioDecoderClass *adclass;
|
2011-11-11 17:46:41 +00:00
|
|
|
GstElementClass *element_class;
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
adclass = (GstAudioDecoderClass *) klass;
|
2011-11-11 17:46:41 +00:00
|
|
|
element_class = (GstElementClass *) klass;
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
adclass->start = GST_DEBUG_FUNCPTR (gst_opus_dec_start);
|
|
|
|
adclass->stop = GST_DEBUG_FUNCPTR (gst_opus_dec_stop);
|
|
|
|
adclass->handle_frame = GST_DEBUG_FUNCPTR (gst_opus_dec_handle_frame);
|
|
|
|
adclass->set_format = GST_DEBUG_FUNCPTR (gst_opus_dec_set_format);
|
|
|
|
|
2011-06-05 07:54:19 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&opus_dec_src_factory));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&opus_dec_sink_factory));
|
|
|
|
gst_element_class_set_details_simple (element_class, "Opus audio decoder",
|
|
|
|
"Codec/Decoder/Audio",
|
|
|
|
"decode opus streams to audio",
|
|
|
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (opusdec_debug, "opusdec", 0,
|
|
|
|
"opus decoding element");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_opus_dec_reset (GstOpusDec * dec)
|
|
|
|
{
|
|
|
|
dec->packetno = 0;
|
|
|
|
dec->frame_size = 0;
|
|
|
|
dec->frame_samples = 960;
|
|
|
|
dec->frame_duration = 0;
|
|
|
|
if (dec->state) {
|
|
|
|
opus_decoder_destroy (dec->state);
|
|
|
|
dec->state = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_buffer_replace (&dec->streamheader, NULL);
|
|
|
|
gst_buffer_replace (&dec->vorbiscomment, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-11 17:46:41 +00:00
|
|
|
gst_opus_dec_init (GstOpusDec * dec)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
|
|
|
dec->sample_rate = 48000;
|
|
|
|
dec->n_channels = 2;
|
|
|
|
|
|
|
|
gst_opus_dec_reset (dec);
|
|
|
|
}
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
static gboolean
|
|
|
|
gst_opus_dec_start (GstAudioDecoder * dec)
|
|
|
|
{
|
|
|
|
GstOpusDec *odec = GST_OPUS_DEC (dec);
|
|
|
|
|
|
|
|
gst_opus_dec_reset (odec);
|
|
|
|
|
|
|
|
/* we know about concealment */
|
|
|
|
gst_audio_decoder_set_plc_aware (dec, TRUE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_opus_dec_stop (GstAudioDecoder * dec)
|
|
|
|
{
|
|
|
|
GstOpusDec *odec = GST_OPUS_DEC (dec);
|
|
|
|
|
|
|
|
gst_opus_dec_reset (odec);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-06-05 07:54:19 +00:00
|
|
|
static GstFlowReturn
|
2011-11-14 13:41:58 +00:00
|
|
|
gst_opus_dec_parse_header (GstOpusDec * dec, GstBuffer * buf)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2011-11-14 13:41:58 +00:00
|
|
|
gst_opus_dec_parse_comments (GstOpusDec * dec, GstBuffer * buf)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
opus_dec_chain_parse_data (GstOpusDec * dec, GstBuffer * buf,
|
|
|
|
GstClockTime timestamp, GstClockTime duration)
|
|
|
|
{
|
|
|
|
GstFlowReturn res = GST_FLOW_OK;
|
2011-11-11 17:46:41 +00:00
|
|
|
gsize size, out_size;
|
2011-06-05 07:54:19 +00:00
|
|
|
guint8 *data;
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
gint16 *out_data;
|
2011-09-28 12:24:21 +00:00
|
|
|
int n, err;
|
2011-11-15 23:00:32 +00:00
|
|
|
int samples_per_frame;
|
|
|
|
unsigned int packet_size;
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
if (dec->state == NULL) {
|
|
|
|
GstCaps *caps;
|
|
|
|
|
2011-09-28 12:24:21 +00:00
|
|
|
dec->state = opus_decoder_create (dec->sample_rate, dec->n_channels, &err);
|
|
|
|
if (!dec->state || err != OPUS_OK)
|
|
|
|
goto creation_failed;
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
/* set caps */
|
2011-11-11 17:46:41 +00:00
|
|
|
caps = gst_caps_new_simple ("audio/x-raw",
|
|
|
|
"format", G_TYPE_STRING, "S16LE",
|
2011-06-05 07:54:19 +00:00
|
|
|
"rate", G_TYPE_INT, dec->sample_rate,
|
2011-11-11 17:46:41 +00:00
|
|
|
"channels", G_TYPE_INT, dec->n_channels, NULL);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dec, "rate=%d channels=%d frame-size=%d",
|
|
|
|
dec->sample_rate, dec->n_channels, dec->frame_size);
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
if (!gst_pad_set_caps (GST_AUDIO_DECODER_SRC_PAD (dec), caps))
|
2011-06-05 07:54:19 +00:00
|
|
|
GST_ERROR ("nego failure");
|
|
|
|
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf) {
|
2011-11-11 17:46:41 +00:00
|
|
|
data = gst_buffer_map (buf, &size, NULL, GST_MAP_READ);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dec, "received buffer of size %u", size);
|
|
|
|
|
|
|
|
/* copy timestamp */
|
|
|
|
} else {
|
|
|
|
/* concealment data, pass NULL as the bits parameters */
|
|
|
|
GST_DEBUG_OBJECT (dec, "creating concealment data");
|
|
|
|
data = NULL;
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-15 23:00:32 +00:00
|
|
|
samples_per_frame =
|
|
|
|
opus_packet_get_samples_per_frame (data, dec->sample_rate);
|
2011-06-05 07:54:19 +00:00
|
|
|
GST_DEBUG ("bandwidth %d", opus_packet_get_bandwidth (data));
|
2011-11-15 23:00:32 +00:00
|
|
|
GST_DEBUG ("samples_per_frame %d", samples_per_frame);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-15 23:00:32 +00:00
|
|
|
packet_size = samples_per_frame * dec->n_channels * 2;
|
|
|
|
outbuf = gst_buffer_new_and_alloc (packet_size);
|
|
|
|
if (!outbuf) {
|
|
|
|
goto buffer_failed;
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|
|
|
|
|
2011-11-11 17:46:41 +00:00
|
|
|
out_data = (gint16 *) gst_buffer_map (outbuf, &out_size, NULL, GST_MAP_WRITE);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (dec, "decoding frame");
|
|
|
|
|
2011-09-28 13:57:02 +00:00
|
|
|
n = opus_decode (dec->state, data, size, out_data, dec->frame_samples, 0);
|
2011-11-11 17:46:41 +00:00
|
|
|
gst_buffer_unmap (buf, data, size);
|
2011-06-05 07:54:19 +00:00
|
|
|
if (n < 0) {
|
2011-11-11 17:46:41 +00:00
|
|
|
gst_buffer_unmap (outbuf, out_data, out_size);
|
2011-06-05 07:54:19 +00:00
|
|
|
GST_ELEMENT_ERROR (dec, STREAM, DECODE, ("Decoding error: %d", n), (NULL));
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (timestamp)) {
|
2011-11-14 13:41:58 +00:00
|
|
|
GST_WARNING_OBJECT (dec, "No timestamp in -> no timestamp out");
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dec, "timestamp=%" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (timestamp));
|
|
|
|
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buf);
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (dec, "pushing buffer with ts=%" GST_TIME_FORMAT ", dur=%"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)),
|
|
|
|
GST_TIME_ARGS (dec->frame_duration));
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
res = gst_audio_decoder_finish_frame (GST_AUDIO_DECODER (dec), outbuf, 1);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-11 17:46:41 +00:00
|
|
|
gst_buffer_unmap (outbuf, out_data, out_size);
|
|
|
|
|
2011-06-05 07:54:19 +00:00
|
|
|
if (res != GST_FLOW_OK)
|
|
|
|
GST_DEBUG_OBJECT (dec, "flow: %s", gst_flow_get_name (res));
|
|
|
|
|
|
|
|
return res;
|
2011-09-28 12:24:21 +00:00
|
|
|
|
|
|
|
creation_failed:
|
|
|
|
GST_ERROR_OBJECT (dec, "Failed to create Opus decoder: %d", err);
|
|
|
|
return GST_FLOW_ERROR;
|
2011-11-11 17:46:41 +00:00
|
|
|
|
2011-11-15 23:00:32 +00:00
|
|
|
buffer_failed:
|
|
|
|
GST_ERROR_OBJECT (dec, "Failed to create %u byte buffer", packet_size);
|
2011-11-11 17:46:41 +00:00
|
|
|
return GST_FLOW_ERROR;
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
static gint
|
|
|
|
gst_opus_dec_get_frame_samples (GstOpusDec * dec)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
2011-11-14 13:41:58 +00:00
|
|
|
gint frame_samples = 0;
|
|
|
|
switch (dec->frame_size) {
|
|
|
|
case 2:
|
|
|
|
frame_samples = dec->sample_rate / 400;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
frame_samples = dec->sample_rate / 200;
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
frame_samples = dec->sample_rate / 100;
|
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
frame_samples = dec->sample_rate / 50;
|
|
|
|
break;
|
|
|
|
case 40:
|
|
|
|
frame_samples = dec->sample_rate / 25;
|
|
|
|
break;
|
|
|
|
case 60:
|
|
|
|
frame_samples = 3 * dec->sample_rate / 50;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GST_WARNING_OBJECT (dec, "Unsupported frame size: %d", dec->frame_size);
|
|
|
|
frame_samples = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return frame_samples;
|
|
|
|
}
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
static gboolean
|
|
|
|
gst_opus_dec_set_format (GstAudioDecoder * bdec, GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstOpusDec *dec = GST_OPUS_DEC (bdec);
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstStructure *s;
|
|
|
|
const GValue *streamheader;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dec, "set_format: %" GST_PTR_FORMAT, caps);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
s = gst_caps_get_structure (caps, 0);
|
|
|
|
if ((streamheader = gst_structure_get_value (s, "streamheader")) &&
|
|
|
|
G_VALUE_HOLDS (streamheader, GST_TYPE_ARRAY) &&
|
|
|
|
gst_value_array_get_size (streamheader) >= 2) {
|
|
|
|
const GValue *header, *vorbiscomment;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GstFlowReturn res = GST_FLOW_OK;
|
|
|
|
|
|
|
|
header = gst_value_array_get_value (streamheader, 0);
|
|
|
|
if (header && G_VALUE_HOLDS (header, GST_TYPE_BUFFER)) {
|
|
|
|
buf = gst_value_get_buffer (header);
|
|
|
|
res = gst_opus_dec_parse_header (dec, buf);
|
|
|
|
if (res != GST_FLOW_OK)
|
|
|
|
goto done;
|
|
|
|
gst_buffer_replace (&dec->streamheader, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
vorbiscomment = gst_value_array_get_value (streamheader, 1);
|
|
|
|
if (vorbiscomment && G_VALUE_HOLDS (vorbiscomment, GST_TYPE_BUFFER)) {
|
|
|
|
buf = gst_value_get_buffer (vorbiscomment);
|
|
|
|
res = gst_opus_dec_parse_comments (dec, buf);
|
|
|
|
if (res != GST_FLOW_OK)
|
|
|
|
goto done;
|
|
|
|
gst_buffer_replace (&dec->vorbiscomment, buf);
|
|
|
|
}
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
if (!gst_structure_get_int (s, "frame-size", &dec->frame_size)) {
|
|
|
|
GST_WARNING_OBJECT (dec, "Frame size not included in caps");
|
|
|
|
}
|
|
|
|
if (!gst_structure_get_int (s, "channels", &dec->n_channels)) {
|
|
|
|
GST_WARNING_OBJECT (dec, "Number of channels not included in caps");
|
|
|
|
}
|
|
|
|
if (!gst_structure_get_int (s, "rate", &dec->sample_rate)) {
|
|
|
|
GST_WARNING_OBJECT (dec, "Sample rate not included in caps");
|
|
|
|
}
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
dec->frame_samples = gst_opus_dec_get_frame_samples (dec);
|
|
|
|
dec->frame_duration = gst_util_uint64_scale_int (dec->frame_samples,
|
|
|
|
GST_SECOND, dec->sample_rate);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
GST_INFO_OBJECT (dec,
|
|
|
|
"Got frame size %d, %d channels, %d Hz, giving %d samples per frame, frame duration %"
|
|
|
|
GST_TIME_FORMAT, dec->frame_size, dec->n_channels, dec->sample_rate,
|
|
|
|
dec->frame_samples, GST_TIME_ARGS (dec->frame_duration));
|
|
|
|
|
|
|
|
caps = gst_caps_new_simple ("audio/x-raw",
|
|
|
|
"format", G_TYPE_STRING, "S16LE",
|
|
|
|
"rate", G_TYPE_INT, dec->sample_rate,
|
|
|
|
"channels", G_TYPE_INT, dec->n_channels, NULL);
|
|
|
|
gst_audio_decoder_set_outcaps (GST_AUDIO_DECODER (dec), caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
done:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
memcmp_buffers (GstBuffer * buf1, GstBuffer * buf2)
|
|
|
|
{
|
|
|
|
gsize size1, size2;
|
|
|
|
gpointer data1;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
size1 = gst_buffer_get_size (buf1);
|
|
|
|
size2 = gst_buffer_get_size (buf2);
|
|
|
|
|
|
|
|
if (size1 != size2)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
data1 = gst_buffer_map (buf1, NULL, NULL, GST_MAP_READ);
|
|
|
|
res = gst_buffer_memcmp (buf2, 0, data1, size1) == 0;
|
|
|
|
gst_buffer_unmap (buf1, data1, size1);
|
2011-06-05 07:54:19 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_opus_dec_handle_frame (GstAudioDecoder * adec, GstBuffer * buf)
|
2011-06-05 07:54:19 +00:00
|
|
|
{
|
2011-11-14 13:41:58 +00:00
|
|
|
GstFlowReturn res;
|
|
|
|
GstOpusDec *dec;
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
/* no fancy draining */
|
|
|
|
if (G_UNLIKELY (!buf))
|
|
|
|
return GST_FLOW_OK;
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
dec = GST_OPUS_DEC (adec);
|
|
|
|
GST_LOG_OBJECT (dec,
|
|
|
|
"Got buffer ts %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)),
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_DURATION (buf)));
|
2011-06-05 07:54:19 +00:00
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
/* If we have the streamheader and vorbiscomment from the caps already
|
|
|
|
* ignore them here */
|
|
|
|
if (dec->streamheader && dec->vorbiscomment) {
|
|
|
|
if (memcmp_buffers (dec->streamheader, buf)) {
|
|
|
|
GST_DEBUG_OBJECT (dec, "found streamheader");
|
|
|
|
gst_audio_decoder_finish_frame (adec, NULL, 1);
|
|
|
|
res = GST_FLOW_OK;
|
|
|
|
} else if (memcmp_buffers (dec->vorbiscomment, buf)) {
|
|
|
|
GST_DEBUG_OBJECT (dec, "found vorbiscomments");
|
|
|
|
gst_audio_decoder_finish_frame (adec, NULL, 1);
|
|
|
|
res = GST_FLOW_OK;
|
|
|
|
} else {
|
|
|
|
res = opus_dec_chain_parse_data (dec, buf, GST_BUFFER_TIMESTAMP (buf),
|
|
|
|
GST_BUFFER_DURATION (buf));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Otherwise fall back to packet counting and assume that the
|
|
|
|
* first two packets are the headers. */
|
|
|
|
switch (dec->packetno) {
|
|
|
|
case 0:
|
|
|
|
GST_DEBUG_OBJECT (dec, "counted streamheader");
|
|
|
|
res = GST_FLOW_OK;
|
|
|
|
res = gst_opus_dec_parse_header (dec, buf);
|
|
|
|
gst_audio_decoder_finish_frame (adec, NULL, 1);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
GST_DEBUG_OBJECT (dec, "counted vorbiscomments");
|
|
|
|
res = GST_FLOW_OK;
|
|
|
|
res = gst_opus_dec_parse_comments (dec, buf);
|
|
|
|
gst_audio_decoder_finish_frame (adec, NULL, 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
res = opus_dec_chain_parse_data (dec, buf, GST_BUFFER_TIMESTAMP (buf),
|
|
|
|
GST_BUFFER_DURATION (buf));
|
|
|
|
break;
|
2011-11-11 17:46:41 +00:00
|
|
|
}
|
2011-11-14 13:41:58 +00:00
|
|
|
}
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|
|
|
|
|
2011-11-14 13:41:58 +00:00
|
|
|
dec->packetno++;
|
|
|
|
|
|
|
|
return res;
|
2011-06-05 07:54:19 +00:00
|
|
|
}
|