2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-20 22:10:54 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-06-13 06:57:21 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-mad
|
|
|
|
* @see_also: lame
|
|
|
|
*
|
|
|
|
* MP3 audio decoder.
|
|
|
|
*
|
|
|
|
* <refsect2>
|
|
|
|
* <title>Example pipelines</title>
|
|
|
|
* |[
|
2011-11-13 01:33:25 +00:00
|
|
|
* gst-launch filesrc location=music.mp3 ! mpegaudioparse ! mad ! audioconvert ! audioresample ! autoaudiosink
|
|
|
|
* ]| Decode and play the mp3 file
|
2008-06-13 06:57:21 +00:00
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-07-25 02:04:01 +00:00
|
|
|
|
2009-10-02 15:27:11 +00:00
|
|
|
#include <stdlib.h>
|
2001-12-20 22:10:54 +00:00
|
|
|
#include <string.h>
|
2003-11-24 04:08:47 +00:00
|
|
|
#include "gstmad.h"
|
2007-07-13 15:46:13 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2002-02-03 20:10:04 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-20 22:10:54 +00:00
|
|
|
ARG_0,
|
2002-11-02 17:40:16 +00:00
|
|
|
ARG_HALF,
|
2006-06-17 19:35:41 +00:00
|
|
|
ARG_IGNORE_CRC
|
2001-12-20 22:10:54 +00:00
|
|
|
};
|
|
|
|
|
2004-04-05 11:38:04 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (mad_debug);
|
|
|
|
#define GST_CAT_DEFAULT mad_debug
|
|
|
|
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate mad_src_template_factory =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-11-13 01:33:25 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_NE (S32) ", "
|
2012-01-04 14:49:38 +00:00
|
|
|
"layout = (string) interleaved, "
|
2004-06-14 10:58:27 +00:00
|
|
|
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
|
|
|
|
"channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:30 +00:00
|
|
|
);
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2004-06-14 10:58:27 +00:00
|
|
|
/* FIXME: make three caps, for mpegversion 1, 2 and 2.5 */
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate mad_sink_template_factory =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/mpeg, "
|
2004-06-14 10:58:27 +00:00
|
|
|
"mpegversion = (int) 1, "
|
|
|
|
"layer = (int) [ 1, 3 ], "
|
|
|
|
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
|
|
|
|
"channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:30 +00:00
|
|
|
);
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
|
2011-11-13 00:29:20 +00:00
|
|
|
static gboolean gst_mad_start (GstAudioDecoder * dec);
|
|
|
|
static gboolean gst_mad_stop (GstAudioDecoder * dec);
|
|
|
|
static gboolean gst_mad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
2011-08-16 19:12:06 +00:00
|
|
|
gint * offset, gint * length);
|
2011-11-13 00:29:20 +00:00
|
|
|
static GstFlowReturn gst_mad_handle_frame (GstAudioDecoder * dec,
|
2011-08-16 19:12:06 +00:00
|
|
|
GstBuffer * buffer);
|
2011-11-13 00:29:20 +00:00
|
|
|
static void gst_mad_flush (GstAudioDecoder * dec, gboolean hard);
|
2004-03-14 22:34:30 +00:00
|
|
|
|
|
|
|
static void gst_mad_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_mad_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2012-02-15 12:45:00 +00:00
|
|
|
#define parent_class gst_mad_parent_class
|
2011-11-13 01:33:25 +00:00
|
|
|
G_DEFINE_TYPE (GstMad, gst_mad, GST_TYPE_AUDIO_DECODER);
|
2002-02-06 18:10:35 +00:00
|
|
|
|
2001-12-20 22:10:54 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mad_class_init (GstMadClass * klass)
|
2001-12-20 22:10:54 +00:00
|
|
|
{
|
2011-08-16 19:12:06 +00:00
|
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
2011-11-13 01:33:25 +00:00
|
|
|
GstElementClass *element_class = (GstElementClass *) klass;
|
2011-11-13 00:29:20 +00:00
|
|
|
GstAudioDecoderClass *base_class = (GstAudioDecoderClass *) klass;
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
base_class->start = GST_DEBUG_FUNCPTR (gst_mad_start);
|
|
|
|
base_class->stop = GST_DEBUG_FUNCPTR (gst_mad_stop);
|
|
|
|
base_class->parse = GST_DEBUG_FUNCPTR (gst_mad_parse);
|
|
|
|
base_class->handle_frame = GST_DEBUG_FUNCPTR (gst_mad_handle_frame);
|
|
|
|
base_class->flush = GST_DEBUG_FUNCPTR (gst_mad_flush);
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2011-12-12 12:44:12 +00:00
|
|
|
base_class->start = GST_DEBUG_FUNCPTR (gst_mad_start);
|
|
|
|
base_class->stop = GST_DEBUG_FUNCPTR (gst_mad_stop);
|
|
|
|
base_class->parse = GST_DEBUG_FUNCPTR (gst_mad_parse);
|
|
|
|
base_class->handle_frame = GST_DEBUG_FUNCPTR (gst_mad_handle_frame);
|
|
|
|
base_class->flush = GST_DEBUG_FUNCPTR (gst_mad_flush);
|
|
|
|
|
2002-02-06 18:10:35 +00:00
|
|
|
gobject_class->set_property = gst_mad_set_property;
|
|
|
|
gobject_class->get_property = gst_mad_get_property;
|
2001-12-28 01:59:26 +00:00
|
|
|
|
2002-02-06 18:10:35 +00:00
|
|
|
/* init properties */
|
|
|
|
/* currently, string representations are used, we might want to change that */
|
2003-01-08 16:11:48 +00:00
|
|
|
/* FIXME: descriptions need to be more technical,
|
|
|
|
* default values and ranges need to be selected right */
|
2002-11-02 17:40:16 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_HALF,
|
2004-03-14 22:34:30 +00:00
|
|
|
g_param_spec_boolean ("half", "Half", "Generate PCM at 1/2 sample rate",
|
2010-10-19 07:06:33 +00:00
|
|
|
FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-11-02 17:40:16 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_IGNORE_CRC,
|
2010-10-19 09:20:40 +00:00
|
|
|
g_param_spec_boolean ("ignore-crc", "Ignore CRC", "Ignore CRC errors",
|
2010-10-19 07:06:33 +00:00
|
|
|
TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2011-11-13 01:33:25 +00:00
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mad_sink_template_factory));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mad_src_template_factory));
|
|
|
|
|
|
|
|
gst_element_class_set_details_simple (element_class, "mad mp3 decoder",
|
|
|
|
"Codec/Decoder/Audio",
|
|
|
|
"Uses mad code to decode mp3 streams", "Wim Taymans <wim@fluendo.com>");
|
2001-12-20 22:10:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-13 01:33:25 +00:00
|
|
|
gst_mad_init (GstMad * mad)
|
2001-12-20 22:10:54 +00:00
|
|
|
{
|
2011-11-13 00:29:20 +00:00
|
|
|
GstAudioDecoder *dec;
|
2011-08-16 19:12:06 +00:00
|
|
|
|
2011-11-13 00:29:20 +00:00
|
|
|
dec = GST_AUDIO_DECODER (mad);
|
|
|
|
gst_audio_decoder_set_tolerance (dec, 20 * GST_MSECOND);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-11-02 17:40:16 +00:00
|
|
|
mad->half = FALSE;
|
2004-05-16 20:50:13 +00:00
|
|
|
mad->ignore_crc = TRUE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-11-13 00:29:20 +00:00
|
|
|
gst_mad_start (GstAudioDecoder * dec)
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
2011-08-16 19:12:06 +00:00
|
|
|
GstMad *mad = GST_MAD (dec);
|
|
|
|
guint options = 0;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (dec, "start");
|
|
|
|
mad_stream_init (&mad->stream);
|
|
|
|
mad_frame_init (&mad->frame);
|
|
|
|
mad_synth_init (&mad->synth);
|
|
|
|
mad->rate = 0;
|
|
|
|
mad->channels = 0;
|
|
|
|
mad->caps_set = FALSE;
|
|
|
|
mad->frame.header.samplerate = 0;
|
|
|
|
if (mad->ignore_crc)
|
|
|
|
options |= MAD_OPTION_IGNORECRC;
|
|
|
|
if (mad->half)
|
|
|
|
options |= MAD_OPTION_HALFSAMPLERATE;
|
|
|
|
mad_stream_options (&mad->stream, options);
|
|
|
|
mad->header.mode = -1;
|
|
|
|
mad->header.emphasis = -1;
|
2011-12-22 15:23:54 +00:00
|
|
|
mad->eos = FALSE;
|
2003-01-20 19:38:37 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
/* call upon legacy upstream byte support (e.g. seeking) */
|
2012-03-30 09:52:48 +00:00
|
|
|
gst_audio_decoder_set_estimate_rate (dec, TRUE);
|
Various event updates and cleanups.
Original commit message from CVS:
* ext/amrnb/amrnbparse.c: (gst_amrnbparse_event),
(gst_amrnbparse_loop):
* ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event),
(gst_dvdec_handle_src_event), (gst_dvdec_decode_frame):
* ext/mad/gstid3tag.c: (gst_id3_tag_src_event),
(gst_id3_tag_sink_event), (gst_id3_tag_chain):
* ext/mad/gstmad.c: (gst_mad_src_query), (index_seek),
(normal_seek), (gst_mad_sink_event), (gst_mad_chain):
* ext/mpeg2dec/gstmpeg2dec.c:
* ext/shout2/gstshout2.c: (gst_shout2send_event):
* ext/sidplay/gstsiddec.cc:
* gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event),
(gst_avi_demux_send_event), (gst_avi_demux_stream_header),
(gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry):
* gst/goom/gstgoom.c: (gst_goom_event):
* gst/realmedia/rmdemux.c: (gst_rmdemux_sink_event),
(gst_rmdemux_chain), (gst_rmdemux_send_event),
(gst_rmdemux_add_stream):
* gst/wavparse/gstwavparse.c: (gst_wavparse_handle_seek),
(gst_wavparse_stream_headers), (gst_wavparse_stream_data),
(gst_wavparse_loop), (gst_wavparse_srcpad_event):
Various event updates and cleanups.
2005-07-27 18:37:25 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
return TRUE;
|
2003-01-20 19:38:37 +00:00
|
|
|
}
|
|
|
|
|
2002-03-30 17:06:26 +00:00
|
|
|
static gboolean
|
2011-11-13 00:29:20 +00:00
|
|
|
gst_mad_stop (GstAudioDecoder * dec)
|
2002-03-30 17:06:26 +00:00
|
|
|
{
|
2011-08-16 19:12:06 +00:00
|
|
|
GstMad *mad = GST_MAD (dec);
|
2003-01-08 16:11:48 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
GST_DEBUG_OBJECT (dec, "stop");
|
|
|
|
mad_synth_finish (&mad->synth);
|
|
|
|
mad_frame_finish (&mad->frame);
|
|
|
|
mad_stream_finish (&mad->stream);
|
2002-03-30 17:06:26 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
return TRUE;
|
2002-03-30 17:06:26 +00:00
|
|
|
}
|
|
|
|
|
2006-01-31 22:03:30 +00:00
|
|
|
static inline gint32
|
2001-12-20 22:10:54 +00:00
|
|
|
scale (mad_fixed_t sample)
|
|
|
|
{
|
2006-01-31 22:03:30 +00:00
|
|
|
#if MAD_F_FRACBITS < 28
|
2001-12-20 22:10:54 +00:00
|
|
|
/* round */
|
2006-01-31 22:03:30 +00:00
|
|
|
sample += (1L << (28 - MAD_F_FRACBITS - 1));
|
|
|
|
#endif
|
2001-12-20 22:10:54 +00:00
|
|
|
|
|
|
|
/* clip */
|
|
|
|
if (sample >= MAD_F_ONE)
|
|
|
|
sample = MAD_F_ONE - 1;
|
|
|
|
else if (sample < -MAD_F_ONE)
|
|
|
|
sample = -MAD_F_ONE;
|
|
|
|
|
2006-01-31 22:03:30 +00:00
|
|
|
#if MAD_F_FRACBITS < 28
|
2001-12-20 22:10:54 +00:00
|
|
|
/* quantize */
|
2006-01-31 22:03:30 +00:00
|
|
|
sample >>= (28 - MAD_F_FRACBITS);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* convert from 29 bits to 32 bits */
|
|
|
|
return (gint32) (sample << 3);
|
2001-12-20 22:10:54 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 12:28:57 +00:00
|
|
|
/* internal function to check if the header has changed and thus the
|
|
|
|
* caps need to be reset. Only call during normal mode, not resyncing */
|
2005-05-06 11:04:30 +00:00
|
|
|
static void
|
2004-04-05 12:28:57 +00:00
|
|
|
gst_mad_check_caps_reset (GstMad * mad)
|
|
|
|
{
|
|
|
|
guint nchannels;
|
2011-08-16 19:12:06 +00:00
|
|
|
guint rate;
|
2004-04-05 12:28:57 +00:00
|
|
|
|
|
|
|
nchannels = MAD_NCHANNELS (&mad->frame.header);
|
|
|
|
|
|
|
|
#if MAD_VERSION_MINOR <= 12
|
|
|
|
rate = mad->header.sfreq;
|
|
|
|
#else
|
|
|
|
rate = mad->frame.header.samplerate;
|
|
|
|
#endif
|
|
|
|
|
2004-04-07 15:48:40 +00:00
|
|
|
/* rate and channels are not supposed to change in a continuous stream,
|
|
|
|
* so check this first before doing anything */
|
|
|
|
|
|
|
|
/* only set caps if they weren't already set for this continuous stream */
|
2012-01-09 14:15:28 +00:00
|
|
|
if (!gst_pad_has_current_caps (GST_AUDIO_DECODER_SRC_PAD (mad))
|
|
|
|
|| mad->channels != nchannels || mad->rate != rate) {
|
2012-02-01 15:19:55 +00:00
|
|
|
GstAudioInfo info;
|
|
|
|
static const GstAudioChannelPosition chan_pos[2][2] = {
|
|
|
|
{GST_AUDIO_CHANNEL_POSITION_MONO},
|
|
|
|
{GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
|
|
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT}
|
|
|
|
};
|
2011-08-16 19:12:06 +00:00
|
|
|
|
2004-04-07 15:48:40 +00:00
|
|
|
if (mad->caps_set) {
|
2011-08-16 19:12:06 +00:00
|
|
|
GST_DEBUG_OBJECT (mad, "Header changed from %d Hz/%d ch to %d Hz/%d ch, "
|
|
|
|
"failed sync after seek ?", mad->rate, mad->channels, rate,
|
|
|
|
nchannels);
|
ext/mad/gstmad.c: Allow for mp3 rate/channels changes. However, only very conservatively. Reason that we *have* to en...
Original commit message from CVS:
* ext/mad/gstmad.c: (gst_mad_check_caps_reset),
(gst_mad_change_state):
Allow for mp3 rate/channels changes. However, only very
conservatively. Reason that we *have* to enable this is smiply
because the mad find_sync() function is not good enough, it will
regularly sync on random data as valid frames and therefore make
us provide random caps as *final* caps of the stream. The best fix
I could think of is to simply require several of the same stream
changes in a row before we change caps.
The actual testcase that works now is #
* ext/ogg/Makefile.am:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstogmparse.c:
OGM support (video only for now; I need an audio sample file).
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
(gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
(gst_asf_demux_add_video_stream):
WMV extradata.
* gst/playback/gstplaybasebin.c: (unknown_type):
Don't error out on single unknown-types after all. It's wrong.
If we found type of video and audio but not of a subtitle stream,
it will still error out (which is unwanted). Will find a better fix
later on.
* gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
(ogmaudio_type_find), (plugin_init):
OGM support.
2004-09-20 12:40:40 +00:00
|
|
|
/* we're conservative on stream changes. However, our *initial* caps
|
|
|
|
* might have been wrong as well - mad ain't perfect in syncing. So,
|
|
|
|
* we count caps changes and change if we pass a limit treshold (3). */
|
|
|
|
if (nchannels != mad->pending_channels || rate != mad->pending_rate) {
|
|
|
|
mad->times_pending = 0;
|
|
|
|
mad->pending_channels = nchannels;
|
|
|
|
mad->pending_rate = rate;
|
|
|
|
}
|
|
|
|
if (++mad->times_pending < 3)
|
2005-05-06 11:04:30 +00:00
|
|
|
return;
|
2004-04-07 15:48:40 +00:00
|
|
|
}
|
2004-04-05 12:28:57 +00:00
|
|
|
|
2005-05-06 11:04:30 +00:00
|
|
|
if (mad->stream.options & MAD_OPTION_HALFSAMPLERATE)
|
|
|
|
rate >>= 1;
|
|
|
|
|
2004-04-05 12:28:57 +00:00
|
|
|
/* we set the caps even when the pad is not connected so they
|
|
|
|
* can be gotten for streaminfo */
|
2012-02-01 15:19:55 +00:00
|
|
|
gst_audio_info_init (&info);
|
|
|
|
gst_audio_info_set_format (&info,
|
|
|
|
GST_AUDIO_FORMAT_S32, rate, nchannels, chan_pos[nchannels - 1]);
|
|
|
|
|
|
|
|
gst_audio_decoder_set_output_format (GST_AUDIO_DECODER (mad), &info);
|
2005-11-15 22:46:23 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
mad->caps_set = TRUE;
|
2005-05-06 11:04:30 +00:00
|
|
|
mad->channels = nchannels;
|
|
|
|
mad->rate = rate;
|
2004-04-05 12:28:57 +00:00
|
|
|
}
|
|
|
|
}
|
2004-03-05 23:32:36 +00:00
|
|
|
|
2010-09-29 19:24:23 +00:00
|
|
|
static GstFlowReturn
|
2011-11-13 00:29:20 +00:00
|
|
|
gst_mad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
2011-08-16 19:12:06 +00:00
|
|
|
gint * _offset, gint * len)
|
2001-12-20 22:10:54 +00:00
|
|
|
{
|
|
|
|
GstMad *mad;
|
2012-01-03 14:27:42 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_EOS;
|
2012-03-13 17:27:51 +00:00
|
|
|
gint av, size, offset;
|
2011-08-16 19:12:06 +00:00
|
|
|
const guint8 *data;
|
2012-03-13 17:27:51 +00:00
|
|
|
gboolean eos, sync;
|
2012-02-17 08:16:32 +00:00
|
|
|
guint8 *guard = NULL;
|
2011-08-16 19:12:06 +00:00
|
|
|
|
|
|
|
mad = GST_MAD (dec);
|
|
|
|
|
2012-02-16 13:29:47 +00:00
|
|
|
av = gst_adapter_available (adapter);
|
2012-02-17 08:16:32 +00:00
|
|
|
data = gst_adapter_map (adapter, av);
|
2012-02-16 13:29:47 +00:00
|
|
|
|
2012-03-13 17:27:51 +00:00
|
|
|
gst_audio_decoder_get_parse_state (dec, &sync, &eos);
|
|
|
|
GST_LOG_OBJECT (mad, "parse state sync %d, eos %d", sync, eos);
|
|
|
|
|
2012-02-16 13:29:47 +00:00
|
|
|
if (eos) {
|
|
|
|
/* This is one streaming hack right there.
|
2011-12-22 15:23:54 +00:00
|
|
|
* mad will not decode the last frame if it is not followed by
|
|
|
|
* a number of 0 bytes, due to some buffer overflow, which can
|
|
|
|
* not be fixed for reasons I did not inquire into, see
|
|
|
|
* http://www.mars.org/mailman/public/mad-dev/2001-May/000262.html
|
|
|
|
*/
|
2012-02-17 08:16:32 +00:00
|
|
|
guard = g_malloc (av + MAD_BUFFER_GUARD);
|
2012-02-16 13:29:47 +00:00
|
|
|
/* let's be nice and not mess with baseclass state and keep hacks local */
|
2012-02-17 08:16:32 +00:00
|
|
|
memcpy (guard, data, av);
|
|
|
|
memset (guard + av, 0, MAD_BUFFER_GUARD);
|
2012-02-16 13:29:47 +00:00
|
|
|
GST_DEBUG_OBJECT (mad, "Added %u zero guard bytes in the adapter; "
|
|
|
|
"using fallback buffer of size %u",
|
2012-02-17 08:16:32 +00:00
|
|
|
MAD_BUFFER_GUARD, av + MAD_BUFFER_GUARD);
|
|
|
|
data = guard;
|
2012-02-27 00:34:09 +00:00
|
|
|
av = av + MAD_BUFFER_GUARD;
|
2011-12-22 15:23:54 +00:00
|
|
|
}
|
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
/* we basically let mad library do parsing,
|
|
|
|
* and translate that back to baseclass.
|
|
|
|
* if a frame is found (and also decoded), subsequent handle_frame
|
|
|
|
* only needs to synthesize it */
|
|
|
|
|
|
|
|
offset = 0;
|
2012-03-13 17:27:51 +00:00
|
|
|
size = 0;
|
|
|
|
|
|
|
|
resume:
|
|
|
|
if (G_UNLIKELY (offset + MAD_BUFFER_GUARD > av))
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (mad, "setup mad stream at offset %d (of av %d)", offset, av);
|
|
|
|
mad_stream_buffer (&mad->stream, data + offset, av - offset);
|
|
|
|
/* convey sync idea to mad */
|
|
|
|
mad->stream.sync = sync;
|
|
|
|
/* if we get back here, lost sync anyway */
|
|
|
|
sync = FALSE;
|
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
GST_LOG_OBJECT (mad, "decoding the header now");
|
|
|
|
if (mad_header_decode (&mad->frame.header, &mad->stream) == -1) {
|
|
|
|
/* HACK it seems mad reports wrong error when it is trying to determine
|
|
|
|
* free bitrate and scanning for next header */
|
|
|
|
if (mad->stream.error == MAD_ERROR_LOSTSYNC) {
|
|
|
|
const guint8 *ptr = mad->stream.this_frame;
|
|
|
|
guint32 header;
|
|
|
|
|
|
|
|
if (ptr >= data && ptr < data + av) {
|
|
|
|
header = GST_READ_UINT32_BE (ptr);
|
|
|
|
/* looks like possible freeform header with not much data */
|
|
|
|
if (((header & 0xFFE00000) == 0xFFE00000) &&
|
|
|
|
(((header >> 12) & 0xF) == 0x0) && (av < 4096)) {
|
|
|
|
GST_DEBUG_OBJECT (mad, "overriding freeform LOST_SYNC to BUFLEN");
|
|
|
|
mad->stream.error = MAD_ERROR_BUFLEN;
|
2012-02-21 17:53:57 +00:00
|
|
|
}
|
|
|
|
}
|
2005-05-06 11:04:30 +00:00
|
|
|
}
|
2012-03-13 17:27:51 +00:00
|
|
|
if (mad->stream.error == MAD_ERROR_BUFLEN) {
|
|
|
|
GST_LOG_OBJECT (mad, "not enough data, getting more");
|
|
|
|
offset = mad->stream.next_frame - data;
|
|
|
|
break;
|
|
|
|
} else if (mad->stream.error == MAD_ERROR_LOSTSYNC) {
|
|
|
|
GST_LOG_OBJECT (mad, "lost sync");
|
|
|
|
continue;
|
2011-08-16 19:12:06 +00:00
|
|
|
} else {
|
2012-03-13 17:27:51 +00:00
|
|
|
/* probably some bogus header, basically also lost sync */
|
|
|
|
GST_DEBUG_OBJECT (mad, "mad_header_decode had an error: %s",
|
|
|
|
mad_stream_errorstr (&mad->stream));
|
|
|
|
continue;
|
2003-01-20 19:38:37 +00:00
|
|
|
}
|
2012-03-13 17:27:51 +00:00
|
|
|
}
|
2003-01-20 19:38:37 +00:00
|
|
|
|
2012-03-13 17:27:51 +00:00
|
|
|
/* could have a frame now, subsequent will confirm */
|
|
|
|
offset = mad->stream.this_frame - data;
|
|
|
|
size = mad->stream.next_frame - mad->stream.this_frame;
|
|
|
|
g_assert (size);
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (mad, "parsing and decoding one frame now "
|
|
|
|
"(offset %d, size %d)", offset, size);
|
|
|
|
if (mad_frame_decode (&mad->frame, &mad->stream) == -1) {
|
|
|
|
GST_LOG_OBJECT (mad, "got error %d", mad->stream.error);
|
|
|
|
|
|
|
|
/* not enough data, need to wait for next buffer? */
|
|
|
|
if (mad->stream.error == MAD_ERROR_BUFLEN) {
|
|
|
|
/* not really expect this error at this stage anymore
|
|
|
|
* assume bogus frame and bad sync and move along a bit */
|
|
|
|
GST_WARNING_OBJECT (mad, "not enough data (unexpected), moving along");
|
|
|
|
offset++;
|
|
|
|
goto resume;
|
|
|
|
} else if (mad->stream.error == MAD_ERROR_BADDATAPTR) {
|
|
|
|
GST_DEBUG_OBJECT (mad, "bad data ptr, skipping presumed frame");
|
|
|
|
/* flush past presumed frame */
|
|
|
|
offset += size;
|
|
|
|
goto resume;
|
|
|
|
} else {
|
|
|
|
GST_WARNING_OBJECT (mad, "mad_frame_decode had an error: %s",
|
|
|
|
mad_stream_errorstr (&mad->stream));
|
|
|
|
if (!MAD_RECOVERABLE (mad->stream.error)) {
|
|
|
|
/* well, all may be well enough bytes later on ... */
|
|
|
|
GST_AUDIO_DECODER_ERROR (mad, 1, STREAM, DECODE, (NULL),
|
|
|
|
("mad error: %s", mad_stream_errorstr (&mad->stream)), ret);
|
|
|
|
}
|
|
|
|
/* move along and try again */
|
|
|
|
offset++;
|
|
|
|
goto resume;
|
|
|
|
}
|
|
|
|
g_assert_not_reached ();
|
2011-08-16 19:12:06 +00:00
|
|
|
}
|
2012-03-13 17:27:51 +00:00
|
|
|
|
|
|
|
/* so decoded ok, got a frame now */
|
|
|
|
ret = GST_FLOW_OK;
|
|
|
|
break;
|
2011-08-16 19:12:06 +00:00
|
|
|
}
|
2002-11-02 17:40:16 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
exit:
|
2011-11-13 01:33:25 +00:00
|
|
|
|
|
|
|
gst_adapter_unmap (adapter);
|
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
*_offset = offset;
|
2012-03-13 17:27:51 +00:00
|
|
|
*len = size;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2012-01-31 15:52:38 +00:00
|
|
|
/* ensure that if we added some dummy guard bytes above, we don't claim
|
|
|
|
to have used them as they're unknown to the caller. */
|
2012-02-16 13:29:47 +00:00
|
|
|
if (eos) {
|
2012-01-31 15:52:38 +00:00
|
|
|
g_assert (av >= MAD_BUFFER_GUARD);
|
|
|
|
av -= MAD_BUFFER_GUARD;
|
|
|
|
if (*_offset > av)
|
|
|
|
*_offset = av;
|
|
|
|
if (*len > av)
|
|
|
|
*len = av;
|
2012-02-16 13:29:47 +00:00
|
|
|
g_assert (guard);
|
2012-02-17 08:16:32 +00:00
|
|
|
g_free (guard);
|
2012-01-31 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2002-09-18 22:04:32 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
static GstFlowReturn
|
2011-11-13 00:29:20 +00:00
|
|
|
gst_mad_handle_frame (GstAudioDecoder * dec, GstBuffer * buffer)
|
2011-08-16 19:12:06 +00:00
|
|
|
{
|
|
|
|
GstMad *mad;
|
2012-01-03 14:27:42 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_EOS;
|
2011-08-16 19:12:06 +00:00
|
|
|
GstBuffer *outbuffer;
|
|
|
|
guint nsamples;
|
2012-01-25 06:24:59 +00:00
|
|
|
GstMapInfo outmap;
|
|
|
|
gint32 *outdata;
|
2011-08-16 19:12:06 +00:00
|
|
|
mad_fixed_t const *left_ch, *right_ch;
|
|
|
|
|
|
|
|
mad = GST_MAD (dec);
|
|
|
|
|
|
|
|
/* no fancy draining */
|
|
|
|
if (G_UNLIKELY (!buffer))
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
|
|
|
/* _parse prepared a frame */
|
|
|
|
nsamples = MAD_NSBSAMPLES (&mad->frame.header) *
|
|
|
|
(mad->stream.options & MAD_OPTION_HALFSAMPLERATE ? 16 : 32);
|
|
|
|
GST_LOG_OBJECT (mad, "mad frame with %d samples", nsamples);
|
|
|
|
|
|
|
|
/* arrange for initial caps before pushing data,
|
|
|
|
* and update later on if needed */
|
|
|
|
gst_mad_check_caps_reset (mad);
|
|
|
|
|
|
|
|
mad_synth_frame (&mad->synth, &mad->frame);
|
|
|
|
left_ch = mad->synth.pcm.samples[0];
|
|
|
|
right_ch = mad->synth.pcm.samples[1];
|
|
|
|
|
2011-11-13 01:33:25 +00:00
|
|
|
outbuffer = gst_buffer_new_and_alloc (nsamples * mad->channels * 4);
|
|
|
|
|
2012-01-25 06:24:59 +00:00
|
|
|
gst_buffer_map (outbuffer, &outmap, GST_MAP_WRITE);
|
|
|
|
outdata = (gint32 *) outmap.data;
|
2011-08-16 19:12:06 +00:00
|
|
|
|
|
|
|
/* output sample(s) in 16-bit signed native-endian PCM */
|
|
|
|
if (mad->channels == 1) {
|
|
|
|
gint count = nsamples;
|
|
|
|
|
|
|
|
while (count--) {
|
|
|
|
*outdata++ = scale (*left_ch++) & 0xffffffff;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gint count = nsamples;
|
2002-06-09 14:30:16 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
while (count--) {
|
|
|
|
*outdata++ = scale (*left_ch++) & 0xffffffff;
|
|
|
|
*outdata++ = scale (*right_ch++) & 0xffffffff;
|
2001-12-28 01:59:26 +00:00
|
|
|
}
|
2001-12-20 22:10:54 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 06:24:59 +00:00
|
|
|
gst_buffer_unmap (outbuffer, &outmap);
|
2011-11-13 01:33:25 +00:00
|
|
|
|
2011-11-13 00:29:20 +00:00
|
|
|
ret = gst_audio_decoder_finish_frame (dec, outbuffer, 1);
|
2011-11-13 01:33:25 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-13 00:29:20 +00:00
|
|
|
gst_mad_flush (GstAudioDecoder * dec, gboolean hard)
|
2011-08-16 19:12:06 +00:00
|
|
|
{
|
|
|
|
GstMad *mad;
|
2005-05-06 11:04:30 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
mad = GST_MAD (dec);
|
|
|
|
if (hard) {
|
|
|
|
mad_frame_mute (&mad->frame);
|
|
|
|
mad_synth_mute (&mad->synth);
|
|
|
|
}
|
2001-12-20 22:10:54 +00:00
|
|
|
}
|
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
static void
|
|
|
|
gst_mad_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-12-20 22:10:54 +00:00
|
|
|
{
|
|
|
|
GstMad *mad;
|
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
mad = GST_MAD (object);
|
2001-12-20 22:10:54 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_HALF:
|
|
|
|
mad->half = g_value_get_boolean (value);
|
2001-12-28 01:59:26 +00:00
|
|
|
break;
|
2011-08-16 19:12:06 +00:00
|
|
|
case ARG_IGNORE_CRC:
|
|
|
|
mad->ignore_crc = g_value_get_boolean (value);
|
2001-12-28 01:59:26 +00:00
|
|
|
break;
|
2005-05-25 12:58:23 +00:00
|
|
|
default:
|
2011-08-16 19:12:06 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2005-05-25 12:58:23 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-08-16 19:12:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_mad_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstMad *mad;
|
2005-05-25 12:58:23 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
mad = GST_MAD (object);
|
2005-05-25 12:58:23 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_HALF:
|
|
|
|
g_value_set_boolean (value, mad->half);
|
2001-12-28 01:59:26 +00:00
|
|
|
break;
|
2011-08-16 19:12:06 +00:00
|
|
|
case ARG_IGNORE_CRC:
|
|
|
|
g_value_set_boolean (value, mad->ignore_crc);
|
2001-12-28 01:59:26 +00:00
|
|
|
break;
|
2005-05-25 12:58:23 +00:00
|
|
|
default:
|
2011-08-16 19:12:06 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2005-05-25 12:58:23 +00:00
|
|
|
break;
|
2001-12-28 01:59:26 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-05 19:53:57 +00:00
|
|
|
|
2011-08-16 19:12:06 +00:00
|
|
|
/* plugin initialisation */
|
|
|
|
|
2011-11-13 01:33:25 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
2009-06-05 19:53:57 +00:00
|
|
|
{
|
2011-11-13 00:29:20 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (mad_debug, "mad", 0, "mad mp3 decoding");
|
2009-06-05 19:53:57 +00:00
|
|
|
|
2011-11-13 01:33:25 +00:00
|
|
|
/* FIXME 0.11: rename to something better like madmp3dec or madmpegaudiodec
|
|
|
|
* or so? */
|
2011-11-14 00:55:16 +00:00
|
|
|
return gst_element_register (plugin, "mad", GST_RANK_SECONDARY,
|
2009-06-05 19:53:57 +00:00
|
|
|
gst_mad_get_type ());
|
|
|
|
}
|
2011-11-13 01:33:25 +00:00
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"mad",
|
|
|
|
"mp3 decoding based on the mad library",
|
|
|
|
plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|