summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-10-01 13:00:41 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-10-01 13:00:41 +0000
commitcebbba83a962855acd8b495018d7f8981923076f (patch)
tree29afbc1a557ac4842df8b9be3bec3b64d9ee5af5 /ext
parent060ae9b59bdb8d2e4e90daa756d8f69eb95d25b9 (diff)
downloadgst-plugins-bad-cebbba83a962855acd8b495018d7f8981923076f.tar.gz
gst-plugins-bad-cebbba83a962855acd8b495018d7f8981923076f.tar.bz2
gst-plugins-bad-cebbba83a962855acd8b495018d7f8981923076f.zip
ext/faad/gstfaad.*: Allow playback of raw (unframed) MPEG AAC files (#148993).
Original commit message from CVS: Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect), (gst_faad_chain), (gst_faad_change_state): * ext/faad/gstfaad.h: Allow playback of raw (unframed) MPEG AAC files (#148993).
Diffstat (limited to 'ext')
-rw-r--r--ext/faad/gstfaad.c113
-rw-r--r--ext/faad/gstfaad.h3
2 files changed, 83 insertions, 33 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index 1809ebb2..04bf6e3c 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -124,6 +124,7 @@ gst_faad_init (GstFaad * faad)
faad->handle = NULL;
faad->samplerate = -1;
faad->channels = -1;
+ faad->tempbuf = NULL;
GST_FLAG_SET (faad, GST_ELEMENT_EVENT_AWARE);
@@ -152,7 +153,6 @@ gst_faad_sinkconnect (GstPad * pad, const GstCaps * caps)
GstBuffer *buf;
if ((value = gst_structure_get_value (str, "codec_data"))) {
- GstPadLinkReturn ret;
gulong samplerate;
guchar channels;
@@ -165,11 +165,12 @@ gst_faad_sinkconnect (GstPad * pad, const GstCaps * caps)
faad->samplerate = samplerate;
faad->channels = channels;
- ret = gst_pad_renegotiate (faad->srcpad);
- if (ret == GST_PAD_LINK_DELAYED)
- ret = GST_PAD_LINK_OK;
+ if (faad->tempbuf) {
+ gst_buffer_unref (faad->tempbuf);
+ faad->tempbuf = NULL;
+ }
- return ret;
+ return GST_PAD_LINK_OK;
}
/* if there's no decoderspecificdata, it's all fine. We cannot know
@@ -326,6 +327,8 @@ gst_faad_srcconnect (GstPad * pad, const GstCaps * caps)
static void
gst_faad_chain (GstPad * pad, GstData * data)
{
+ guint input_size;
+ guchar *input_data;
GstFaad *faad = GST_FAAD (gst_pad_get_parent (pad));
GstBuffer *buf, *outbuf;
faacDecFrameInfo info;
@@ -336,6 +339,20 @@ gst_faad_chain (GstPad * pad, GstData * data)
switch (GST_EVENT_TYPE (event)) {
case GST_EVENT_EOS:
+ if (faad->tempbuf != NULL) {
+ /* Try to decode the remaining data */
+ out = faacDecDecode (faad->handle, &info,
+ GST_BUFFER_DATA (faad->tempbuf), GST_BUFFER_SIZE (faad->tempbuf));
+ gst_buffer_unref (faad->tempbuf);
+ faad->tempbuf = NULL;
+ if (out && !info.error && info.samples > 0) {
+ outbuf = gst_buffer_new_and_alloc (info.samples * faad->bps);
+ /* ugh */
+ memcpy (GST_BUFFER_DATA (outbuf), out, GST_BUFFER_SIZE (outbuf));
+
+ gst_pad_push (faad->srcpad, GST_DATA (outbuf));
+ }
+ }
gst_element_set_eos (GST_ELEMENT (faad));
gst_pad_push (faad->srcpad, data);
return;
@@ -356,6 +373,7 @@ gst_faad_chain (GstPad * pad, GstData * data)
GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf), &samplerate, &channels);
faad->samplerate = samplerate;
faad->channels = channels;
+
ret = gst_pad_renegotiate (faad->srcpad);
if (GST_PAD_LINK_FAILED (ret)) {
GST_ELEMENT_ERROR (faad, CORE, NEGOTIATION, (NULL), (NULL));
@@ -364,42 +382,66 @@ gst_faad_chain (GstPad * pad, GstData * data)
}
}
- out = faacDecDecode (faad->handle, &info,
- GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
- if (info.error) {
- GST_ELEMENT_ERROR (faad, STREAM, DECODE, (NULL),
- ("Failed to decode buffer: %s", faacDecGetErrorMessage (info.error)));
- gst_buffer_unref (buf);
- return;
+ /* Use the leftovers */
+ if (faad->tempbuf) {
+ buf = gst_buffer_join (faad->tempbuf, buf);
+ faad->tempbuf = NULL;
}
- if (info.samplerate != faad->samplerate || info.channels != faad->channels) {
- GstPadLinkReturn ret;
+ input_data = GST_BUFFER_DATA (buf);
+ input_size = GST_BUFFER_SIZE (buf);
+ info.bytesconsumed = input_size;
+ while (input_size > (faad->channels * FAAD_MIN_STREAMSIZE)
+ && info.bytesconsumed > 0) {
+ out = faacDecDecode (faad->handle, &info, input_data, input_size);
+ if (info.error) {
+ GST_ELEMENT_ERROR (faad, STREAM, DECODE, (NULL),
+ ("Failed to decode buffer: %s", faacDecGetErrorMessage (info.error)));
+ break;
+ }
- faad->samplerate = info.samplerate;
- faad->channels = info.channels;
- ret = gst_pad_renegotiate (faad->srcpad);
- if (GST_PAD_LINK_FAILED (ret)) {
- GST_ELEMENT_ERROR (faad, CORE, NEGOTIATION, (NULL), (NULL));
- gst_buffer_unref (buf);
- return;
+ input_size -= info.bytesconsumed;
+ input_data += info.bytesconsumed;
+
+ if (out) {
+
+ if (info.samplerate != faad->samplerate
+ || info.channels != faad->channels) {
+ GstPadLinkReturn ret;
+
+ faad->samplerate = info.samplerate;
+ faad->channels = info.channels;
+ ret = gst_pad_renegotiate (faad->srcpad);
+ if (GST_PAD_LINK_FAILED (ret)) {
+ GST_ELEMENT_ERROR (faad, CORE, NEGOTIATION, (NULL), (NULL));
+ break;
+ }
+ }
+
+ if (info.samples > 0) {
+ outbuf = gst_buffer_new_and_alloc (info.samples * faad->bps);
+ /* ugh */
+ memcpy (GST_BUFFER_DATA (outbuf), out, GST_BUFFER_SIZE (outbuf));
+ GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
+ GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buf);
+
+ gst_pad_push (faad->srcpad, GST_DATA (outbuf));
+ }
}
- }
+ };
- if (info.samples == 0) {
- gst_buffer_unref (buf);
- return;
+ /* Keep the leftovers */
+ if (input_size > 0) {
+ if (input_size < GST_BUFFER_SIZE (buf))
+ faad->tempbuf = gst_buffer_create_sub (buf,
+ GST_BUFFER_SIZE (buf) - input_size, input_size);
+ else {
+ faad->tempbuf = buf;
+ gst_buffer_ref (buf);
+ }
}
- /* FIXME: did it handle the whole buffer? */
- outbuf = gst_buffer_new_and_alloc (info.samples * faad->bps);
- /* ugh */
- memcpy (GST_BUFFER_DATA (outbuf), out, GST_BUFFER_SIZE (outbuf));
- GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
- GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buf);
-
gst_buffer_unref (buf);
- gst_pad_push (faad->srcpad, GST_DATA (outbuf));
}
static GstElementStateReturn
@@ -416,6 +458,7 @@ gst_faad_change_state (GstElement * element)
conf = faacDecGetCurrentConfiguration (faad->handle);
conf->defObjectType = LC;
+ conf->dontUpSampleImplicitSBR = 1;
faacDecSetConfiguration (faad->handle, conf);
}
break;
@@ -426,6 +469,10 @@ gst_faad_change_state (GstElement * element)
case GST_STATE_READY_TO_NULL:
faacDecClose (faad->handle);
faad->handle = NULL;
+ if (faad->tempbuf) {
+ gst_buffer_unref (faad->tempbuf);
+ faad->tempbuf = NULL;
+ }
break;
default:
break;
diff --git a/ext/faad/gstfaad.h b/ext/faad/gstfaad.h
index c834f098..e5c66b03 100644
--- a/ext/faad/gstfaad.h
+++ b/ext/faad/gstfaad.h
@@ -47,6 +47,9 @@ typedef struct _GstFaad {
channels,
bps;
+ /* used to keep input leftovers */
+ GstBuffer *tempbuf;
+
/* FAAD object */
faacDecHandle handle;
} GstFaad;