2002-03-20 21:45:04 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:26:33 +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.
|
|
|
|
*/
|
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/*#define GST_DEBUG_ENABLED */
|
2003-06-29 19:46:13 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2004-07-27 21:51:30 +00:00
|
|
|
#include "gstmpegaudioparse.h"
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails mp3parse_details = {
|
2002-04-20 21:42:51 +00:00
|
|
|
"MPEG1 Audio Parser",
|
2003-11-16 22:02:23 +00:00
|
|
|
"Codec/Parser/Audio",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Parses and frames mpeg1 audio streams (levels 1-3), provides seek",
|
2003-11-02 21:10:18 +00:00
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>"
|
2001-12-22 23:26:33 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstStaticPadTemplate mp3_src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/mpeg, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"mpegversion = (int) 1, "
|
|
|
|
"layer = (int) [ 1, 3 ], "
|
|
|
|
"rate = (int) [ 8000, 48000], " "channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate mp3_sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_CAPS ("audio/mpeg, " "mpegversion = (int) 1")
|
|
|
|
);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
/* GstMPEGAudioParse signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:26:33 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:26:33 +00:00
|
|
|
ARG_0,
|
|
|
|
ARG_SKIP,
|
2004-05-21 22:39:30 +00:00
|
|
|
ARG_BIT_RATE
|
|
|
|
/* FILL ME */
|
2001-12-22 23:26:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_mp3parse_class_init (GstMPEGAudioParseClass * klass);
|
|
|
|
static void gst_mp3parse_base_init (GstMPEGAudioParseClass * klass);
|
|
|
|
static void gst_mp3parse_init (GstMPEGAudioParse * mp3parse);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
static GstFlowReturn gst_mp3parse_chain (GstPad * pad, GstBuffer * buffer);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static int head_check (unsigned long head);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_mp3parse_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_mp3parse_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2005-09-05 17:20:29 +00:00
|
|
|
static GstStateChangeReturn gst_mp3parse_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/*static guint gst_mp3parse_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
GType
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_get_type (void)
|
|
|
|
{
|
2001-12-22 23:26:33 +00:00
|
|
|
static GType mp3parse_type = 0;
|
|
|
|
|
|
|
|
if (!mp3parse_type) {
|
|
|
|
static const GTypeInfo mp3parse_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstMPEGAudioParseClass),
|
|
|
|
(GBaseInitFunc) gst_mp3parse_base_init,
|
2001-12-22 23:26:33 +00:00
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GClassInitFunc) gst_mp3parse_class_init,
|
2001-12-22 23:26:33 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstMPEGAudioParse),
|
2001-12-22 23:26:33 +00:00
|
|
|
0,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GInstanceInitFunc) gst_mp3parse_init,
|
2001-12-22 23:26:33 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2003-10-01 13:14:50 +00:00
|
|
|
mp3parse_type = g_type_register_static (GST_TYPE_ELEMENT,
|
2004-03-15 19:32:27 +00:00
|
|
|
"GstMPEGAudioParse", &mp3parse_info, 0);
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
return mp3parse_type;
|
|
|
|
}
|
|
|
|
|
2003-10-01 13:14:50 +00:00
|
|
|
static guint mp3types_bitrates[2][3][16] =
|
2004-03-14 22:34:33 +00:00
|
|
|
{ {{0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448,},
|
|
|
|
{0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384,},
|
|
|
|
{0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320,}},
|
|
|
|
{{0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256,},
|
|
|
|
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,},
|
|
|
|
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160,}},
|
2003-10-01 13:14:50 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static guint mp3types_freqs[3][3] = { {44100, 48000, 32000},
|
|
|
|
{22050, 24000, 16000},
|
|
|
|
{11025, 12000, 8000}
|
|
|
|
};
|
2003-10-01 13:14:50 +00:00
|
|
|
|
|
|
|
static inline guint
|
2004-03-14 22:34:33 +00:00
|
|
|
mp3_type_frame_length_from_header (guint32 header, guint * put_layer,
|
|
|
|
guint * put_channels, guint * put_bitrate, guint * put_samplerate)
|
2003-10-01 13:14:50 +00:00
|
|
|
{
|
|
|
|
guint length;
|
2004-01-30 14:23:18 +00:00
|
|
|
gulong mode, samplerate, bitrate, layer, channels, padding;
|
|
|
|
gint lsf, mpg25;
|
2003-10-01 13:14:50 +00:00
|
|
|
|
2004-01-30 14:23:18 +00:00
|
|
|
if (header & (1 << 20)) {
|
|
|
|
lsf = (header & (1 << 19)) ? 0 : 1;
|
|
|
|
mpg25 = 0;
|
|
|
|
} else {
|
|
|
|
lsf = 1;
|
|
|
|
mpg25 = 1;
|
|
|
|
}
|
2003-10-01 13:14:50 +00:00
|
|
|
|
2004-01-30 14:23:18 +00:00
|
|
|
mode = (header >> 6) & 0x3;
|
2003-10-01 13:14:50 +00:00
|
|
|
channels = (mode == 3) ? 1 : 2;
|
2004-01-30 14:23:18 +00:00
|
|
|
samplerate = (header >> 10) & 0x3;
|
|
|
|
samplerate = mp3types_freqs[lsf + mpg25][samplerate];
|
|
|
|
layer = 4 - ((header >> 17) & 0x3);
|
|
|
|
bitrate = (header >> 12) & 0xF;
|
|
|
|
bitrate = mp3types_bitrates[lsf][layer - 1][bitrate] * 1000;
|
|
|
|
if (bitrate == 0)
|
|
|
|
return 0;
|
|
|
|
padding = (header >> 9) & 0x1;
|
|
|
|
switch (layer) {
|
|
|
|
case 1:
|
|
|
|
length = (bitrate * 12) / samplerate + 4 * padding;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
length = (bitrate * 144) / samplerate + padding;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case 3:
|
|
|
|
length = (bitrate * 144) / (samplerate << lsf) + padding;
|
|
|
|
break;
|
2003-10-01 13:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG ("Calculated mp3 frame length of %u bytes", length);
|
2004-01-30 14:23:18 +00:00
|
|
|
GST_DEBUG ("samplerate = %lu, bitrate = %lu, layer = %lu, channels = %lu",
|
2004-03-14 22:34:33 +00:00
|
|
|
samplerate, bitrate, layer, channels);
|
2003-10-01 13:14:50 +00:00
|
|
|
|
|
|
|
if (put_layer)
|
|
|
|
*put_layer = layer;
|
|
|
|
if (put_channels)
|
|
|
|
*put_channels = channels;
|
|
|
|
if (put_bitrate)
|
|
|
|
*put_bitrate = bitrate;
|
|
|
|
if (put_samplerate)
|
|
|
|
*put_samplerate = samplerate;
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2005-11-09 01:04:05 +00:00
|
|
|
/*
|
2003-10-01 13:14:50 +00:00
|
|
|
* The chance that random data is identified as a valid mp3 header is 63 / 2^18
|
|
|
|
* (0.024%) per try. This makes the function for calculating false positives
|
|
|
|
* 1 - (1 - ((63 / 2 ^18) ^ GST_MP3_TYPEFIND_MIN_HEADERS)) ^ buffersize)
|
|
|
|
* This has the following probabilities of false positives:
|
2005-12-06 19:55:58 +00:00
|
|
|
* bufsize MIN_HEADERS
|
|
|
|
* (bytes) 1 2 3 4
|
|
|
|
* 4096 62.6% 0.02% 0% 0%
|
|
|
|
* 16384 98% 0.09% 0% 0%
|
|
|
|
* 1 MiB 100% 5.88% 0% 0%
|
|
|
|
* 1 GiB 100% 100% 1.44% 0%
|
2003-10-01 13:14:50 +00:00
|
|
|
* 1 TiB 100% 100% 100% 0.35%
|
|
|
|
* This means that the current choice (3 headers by most of the time 4096 byte
|
|
|
|
* buffers is pretty safe for now.
|
|
|
|
*
|
|
|
|
* The max. size of each frame is 1440 bytes, which means that for N frames
|
|
|
|
* to be detected, we need 1440 * GST_MP3_TYPEFIND_MIN_HEADERS + 3 of data.
|
|
|
|
* Assuming we step into the stream right after the frame header, this
|
|
|
|
* means we need 1440 * (GST_MP3_TYPEFIND_MIN_HEADERS + 1) - 1 + 3 bytes
|
|
|
|
* of data (5762) to always detect any mp3.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* increase this value when this function finds too many false positives */
|
|
|
|
#define GST_MP3_TYPEFIND_MIN_HEADERS 3
|
|
|
|
#define GST_MP3_TYPEFIND_MIN_DATA (1440 * (GST_MP3_TYPEFIND_MIN_HEADERS + 1) - 1 + 3)
|
|
|
|
|
|
|
|
static GstCaps *
|
2004-03-14 22:34:33 +00:00
|
|
|
mp3_caps_create (guint layer, guint channels, guint bitrate, guint samplerate)
|
2003-10-01 13:14:50 +00:00
|
|
|
{
|
|
|
|
GstCaps *new;
|
|
|
|
|
|
|
|
g_assert (layer);
|
|
|
|
g_assert (samplerate);
|
|
|
|
g_assert (bitrate);
|
|
|
|
g_assert (channels);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
new = gst_caps_new_simple ("audio/mpeg",
|
|
|
|
"mpegversion", G_TYPE_INT, 1,
|
2004-03-14 22:34:33 +00:00
|
|
|
"layer", G_TYPE_INT, layer,
|
|
|
|
"rate", G_TYPE_INT, samplerate, "channels", G_TYPE_INT, channels, NULL);
|
2003-10-01 13:14:50 +00:00
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2003-11-02 21:10:18 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_base_init (GstMPEGAudioParseClass * klass)
|
2003-11-02 21:10:18 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mp3_sink_template));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mp3_src_template));
|
2003-11-02 21:10:18 +00:00
|
|
|
gst_element_class_set_details (element_class, &mp3parse_details);
|
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:33 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_class_init (GstMPEGAudioParseClass * klass)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_mp3parse_set_property;
|
|
|
|
gobject_class->get_property = gst_mp3parse_get_property;
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SKIP,
|
|
|
|
g_param_spec_int ("skip", "skip", "skip",
|
|
|
|
G_MININT, G_MAXINT, 0, G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BIT_RATE,
|
|
|
|
g_param_spec_int ("bitrate", "Bitrate", "Bit Rate",
|
|
|
|
G_MININT, G_MAXINT, 0, G_PARAM_READABLE));
|
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
gstelement_class->change_state = gst_mp3parse_change_state;
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_init (GstMPEGAudioParse * mp3parse)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
mp3parse->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&mp3_sink_template), "sink");
|
|
|
|
gst_pad_set_chain_function (mp3parse->sinkpad, gst_mp3parse_chain);
|
2005-08-17 19:05:51 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mp3parse), mp3parse->sinkpad);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
mp3parse->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&mp3_src_template), "src");
|
2005-08-17 19:05:51 +00:00
|
|
|
gst_pad_use_fixed_caps (mp3parse->srcpad);
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mp3parse), mp3parse->srcpad);
|
2002-03-19 04:10:06 +00:00
|
|
|
/*gst_pad_set_type_id(mp3parse->srcpad, mp3frametype); */
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
mp3parse->partialbuf = NULL;
|
|
|
|
mp3parse->skip = 0;
|
|
|
|
mp3parse->in_flush = FALSE;
|
2003-07-06 20:49:52 +00:00
|
|
|
|
|
|
|
mp3parse->rate = mp3parse->channels = mp3parse->layer = -1;
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
/* FIXME, use adapter */
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_mp3parse_chain (GstPad * pad, GstBuffer * buf)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
|
|
|
GstMPEGAudioParse *mp3parse;
|
|
|
|
guchar *data;
|
2004-03-14 22:34:33 +00:00
|
|
|
glong size, offset = 0;
|
2003-04-07 18:43:25 +00:00
|
|
|
guint32 header;
|
2001-12-22 23:26:33 +00:00
|
|
|
int bpf;
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
guint64 last_ts;
|
|
|
|
|
|
|
|
mp3parse = GST_MP3PARSE (gst_pad_get_parent (pad));
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("mp3parse: received buffer of %d bytes", GST_BUFFER_SIZE (buf));
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
last_ts = GST_BUFFER_TIMESTAMP (buf);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* if we have something left from the previous frame */
|
2001-12-22 23:26:33 +00:00
|
|
|
if (mp3parse->partialbuf) {
|
2004-02-05 22:24:58 +00:00
|
|
|
GstBuffer *newbuf;
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
newbuf = gst_buffer_merge (mp3parse->partialbuf, buf);
|
2002-03-19 04:10:06 +00:00
|
|
|
/* and the one we received.. */
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
gst_buffer_unref (mp3parse->partialbuf);
|
2004-02-05 22:24:58 +00:00
|
|
|
mp3parse->partialbuf = newbuf;
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
2001-12-22 23:26:33 +00:00
|
|
|
mp3parse->partialbuf = buf;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
size = GST_BUFFER_SIZE (mp3parse->partialbuf);
|
|
|
|
data = GST_BUFFER_DATA (mp3parse->partialbuf);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* while we still have bytes left -4 for the header */
|
2004-03-14 22:34:33 +00:00
|
|
|
while (offset < size - 4) {
|
2001-12-22 23:26:33 +00:00
|
|
|
int skipped = 0;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("mp3parse: offset %ld, size %ld ", offset, size);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* search for a possible start byte */
|
2004-03-24 04:21:38 +00:00
|
|
|
for (; ((offset < size - 4) && (data[offset] != 0xff)); offset++)
|
2004-03-14 22:34:33 +00:00
|
|
|
skipped++;
|
2005-08-17 19:05:51 +00:00
|
|
|
if (skipped) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("mp3parse: **** now at %ld skipped %d bytes", offset, skipped);
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
2002-03-19 04:10:06 +00:00
|
|
|
/* construct the header word */
|
configure.ac: bump required gstreamer version to 0.8.1.1 because of following changes [--ds]
Original commit message from CVS:
reviewed by David Schleef
* configure.ac: bump required gstreamer version to 0.8.1.1
because of following changes [--ds]
* gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
(gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
(gst_riff_read_header): Use GST_READ_UINT*
macros to access possibly unaligned memory.
* gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
(mp3_type_find): Use GST_READ_UINT*
macros to access possibly unaligned memory.
(mp3_type_find, mpeg1_parse_header, qt_type_find)
(speex_type_find): Likewise
* gst/tags/gstvorbistag.c: (ADVANCE): Likewise
* gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
(QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
(QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
(gst_qtdemux_loop_header, gst_qtdemux_loop_header)
(qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
(qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
macros to access possibly unaligned memory.
* gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
Likewise.
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
(gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
* gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
Likewise.
* gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
(gst_mpeg2subt_chain_subtitle): Likewise.
* gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
(gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
Likewise.
* gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
Likewise.
* gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
Likewise.
* gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
Likewise.
2004-04-20 21:04:22 +00:00
|
|
|
header = GST_READ_UINT32_BE (data + offset);
|
2002-03-19 04:10:06 +00:00
|
|
|
/* if it's a valid header, go ahead and send off the frame */
|
2004-03-14 22:34:33 +00:00
|
|
|
if (head_check (header)) {
|
2005-08-17 19:05:51 +00:00
|
|
|
guint bitrate = 0, layer = 0, rate = 0, channels = 0;
|
|
|
|
|
|
|
|
if (!(bpf = mp3_type_frame_length_from_header (header, &layer,
|
|
|
|
&channels, &bitrate, &rate))) {
|
|
|
|
g_error ("Header failed internal error");
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
/********************************************************************************
|
|
|
|
* robust seek support
|
|
|
|
* - This performs additional frame validation if the in_flush flag is set
|
|
|
|
* (indicating a discontinuous stream).
|
|
|
|
* - The current frame header is not accepted as valid unless the NEXT frame
|
|
|
|
* header has the same values for most fields. This significantly increases
|
|
|
|
* the probability that we aren't processing random data.
|
|
|
|
* - It is not clear if this is sufficient for robust seeking of Layer III
|
|
|
|
* streams which utilize the concept of a "bit reservoir" by borrow bitrate
|
|
|
|
* from previous frames. In this case, seeking may be more complicated because
|
|
|
|
* the frames are not independently coded.
|
|
|
|
********************************************************************************/
|
2004-03-14 22:34:33 +00:00
|
|
|
if (mp3parse->in_flush) {
|
2004-03-15 19:32:27 +00:00
|
|
|
guint32 header2;
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
if ((size - offset) < (bpf + 4)) {
|
|
|
|
if (mp3parse->in_flush)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* wait until we have the the entire current frame as well as the next frame header */
|
configure.ac: bump required gstreamer version to 0.8.1.1 because of following changes [--ds]
Original commit message from CVS:
reviewed by David Schleef
* configure.ac: bump required gstreamer version to 0.8.1.1
because of following changes [--ds]
* gst-libs/gst/riff/riff-read.c: Include gst/gstutils.h.
(gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
(gst_riff_read_header): Use GST_READ_UINT*
macros to access possibly unaligned memory.
* gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
(mp3_type_find): Use GST_READ_UINT*
macros to access possibly unaligned memory.
(mp3_type_find, mpeg1_parse_header, qt_type_find)
(speex_type_find): Likewise
* gst/tags/gstvorbistag.c: (ADVANCE): Likewise
* gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
(QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
(QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
(gst_qtdemux_loop_header, gst_qtdemux_loop_header)
(qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
(qtdemux_tree_get_sibling_by_type): Use GST_READ_UINT*
macros to access possibly unaligned memory.
* gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
Likewise.
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
(gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
* gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
Likewise.
* gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
(gst_mpeg2subt_chain_subtitle): Likewise.
* gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
(gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
Likewise.
* gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
Likewise.
* gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
Likewise.
* gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
Likewise.
2004-04-20 21:04:22 +00:00
|
|
|
header2 = GST_READ_UINT32_BE (data + offset + bpf);
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_DEBUG ("mp3parse: header=%08X, header2=%08X, bpf=%d",
|
|
|
|
(unsigned int) header, (unsigned int) header2, bpf);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2003-10-01 13:14:50 +00:00
|
|
|
/* mask the bits which are allowed to differ between frames */
|
|
|
|
#define HDRMASK ~((0xF << 12) /* bitrate */ | \
|
2005-12-06 19:55:58 +00:00
|
|
|
(0x1 << 9) /* padding */ | \
|
|
|
|
(0x3 << 4)) /*mode extension */
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
if ((header2 & HDRMASK) != (header & HDRMASK)) { /* require 2 matching headers in a row */
|
|
|
|
GST_DEBUG
|
|
|
|
("mp3parse: next header doesn't match (header=%08X, header2=%08X, bpf=%d)",
|
|
|
|
(unsigned int) header, (unsigned int) header2, bpf);
|
|
|
|
offset++; /* This frame is invalid. Start looking for a valid frame at the next position in the stream */
|
|
|
|
continue;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/* if we don't have the whole frame... */
|
2001-12-22 23:26:33 +00:00
|
|
|
if ((size - offset) < bpf) {
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_DEBUG ("mp3parse: partial buffer needed %ld < %d ", (size - offset),
|
|
|
|
bpf);
|
|
|
|
break;
|
2001-12-22 23:26:33 +00:00
|
|
|
} else {
|
2004-03-15 19:32:27 +00:00
|
|
|
if (channels != mp3parse->channels ||
|
|
|
|
rate != mp3parse->rate ||
|
|
|
|
layer != mp3parse->layer || bitrate != mp3parse->bit_rate) {
|
|
|
|
GstCaps *caps = mp3_caps_create (layer, channels, bitrate, rate);
|
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
gst_pad_set_caps (mp3parse->srcpad, caps);
|
|
|
|
gst_caps_unref (caps);
|
2004-03-15 19:32:27 +00:00
|
|
|
|
|
|
|
mp3parse->channels = channels;
|
|
|
|
mp3parse->layer = layer;
|
|
|
|
mp3parse->rate = rate;
|
|
|
|
mp3parse->bit_rate = bitrate;
|
|
|
|
}
|
|
|
|
|
|
|
|
outbuf = gst_buffer_create_sub (mp3parse->partialbuf, offset, bpf);
|
|
|
|
|
|
|
|
offset += bpf;
|
|
|
|
if (mp3parse->skip == 0) {
|
|
|
|
GST_DEBUG ("mp3parse: pushing buffer of %d bytes",
|
|
|
|
GST_BUFFER_SIZE (outbuf));
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = last_ts;
|
2005-08-17 19:05:51 +00:00
|
|
|
|
2004-12-06 19:32:33 +00:00
|
|
|
if (mp3parse->layer == 1) {
|
|
|
|
GST_BUFFER_DURATION (outbuf) = 384 * GST_SECOND / mp3parse->rate;
|
|
|
|
} else {
|
|
|
|
GST_BUFFER_DURATION (outbuf) = 1152 * GST_SECOND / mp3parse->rate;
|
|
|
|
}
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (pad));
|
|
|
|
|
|
|
|
gst_pad_push (mp3parse->srcpad, outbuf);
|
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
} else {
|
|
|
|
GST_DEBUG ("mp3parse: skipping buffer of %d bytes",
|
|
|
|
GST_BUFFER_SIZE (outbuf));
|
|
|
|
gst_buffer_unref (outbuf);
|
|
|
|
mp3parse->skip--;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
offset++;
|
2005-08-17 19:05:51 +00:00
|
|
|
GST_DEBUG ("mp3parse: *** wrong header, skipping byte (FIXME?)");
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
}
|
2002-03-19 04:10:06 +00:00
|
|
|
/* if we have processed this block and there are still */
|
|
|
|
/* bytes left not in a partial block, copy them over. */
|
2004-03-14 22:34:33 +00:00
|
|
|
if (size - offset > 0) {
|
2001-12-22 23:26:33 +00:00
|
|
|
glong remainder = (size - offset);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("mp3parse: partial buffer needed %ld for trailing bytes",
|
2004-03-15 19:32:27 +00:00
|
|
|
remainder);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
outbuf = gst_buffer_create_sub (mp3parse->partialbuf, offset, remainder);
|
|
|
|
gst_buffer_unref (mp3parse->partialbuf);
|
2001-12-22 23:26:33 +00:00
|
|
|
mp3parse->partialbuf = outbuf;
|
2004-03-14 22:34:33 +00:00
|
|
|
} else {
|
|
|
|
gst_buffer_unref (mp3parse->partialbuf);
|
2001-12-22 23:26:33 +00:00
|
|
|
mp3parse->partialbuf = NULL;
|
|
|
|
}
|
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
gst_object_unref (mp3parse);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
return GST_FLOW_OK;
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
head_check (unsigned long head)
|
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("checking mp3 header 0x%08lx", head);
|
2001-12-22 23:26:33 +00:00
|
|
|
/* if it's not a valid sync */
|
|
|
|
if ((head & 0xffe00000) != 0xffe00000) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid sync");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
/* if it's an invalid MPEG version */
|
|
|
|
if (((head >> 19) & 3) == 0x1) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid MPEG version");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
/* if it's an invalid layer */
|
|
|
|
if (!((head >> 17) & 3)) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid layer");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
/* if it's an invalid bitrate */
|
|
|
|
if (((head >> 12) & 0xf) == 0x0) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid bitrate");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
if (((head >> 12) & 0xf) == 0xf) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid bitrate");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
/* if it's an invalid samplerate */
|
|
|
|
if (((head >> 10) & 0x3) == 0x3) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid samplerate");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if ((head & 0xffff0000) == 0xfffe0000) {
|
|
|
|
GST_DEBUG ("invalid sync");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
if (head & 0x00000002) {
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("invalid emphasis");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
|
|
|
GstMPEGAudioParse *src;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (GST_IS_MP3PARSE (object));
|
|
|
|
src = GST_MP3PARSE (object);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_SKIP:
|
|
|
|
src->skip = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mp3parse_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
|
|
|
GstMPEGAudioParse *src;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (GST_IS_MP3PARSE (object));
|
|
|
|
src = GST_MP3PARSE (object);
|
2001-12-22 23:26:33 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_SKIP:
|
|
|
|
g_value_set_int (value, src->skip);
|
|
|
|
break;
|
|
|
|
case ARG_BIT_RATE:
|
|
|
|
g_value_set_int (value, src->bit_rate * 1000);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_mp3parse_change_state (GstElement * element, GstStateChange transition)
|
2003-07-06 20:49:52 +00:00
|
|
|
{
|
|
|
|
GstMPEGAudioParse *src;
|
2005-09-05 17:20:29 +00:00
|
|
|
GstStateChangeReturn result;
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
src = GST_MP3PARSE (element);
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2004-03-14 22:34:33 +00:00
|
|
|
src->channels = -1;
|
|
|
|
src->rate = -1;
|
|
|
|
src->layer = -1;
|
2003-07-06 20:49:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-09-05 17:20:29 +00:00
|
|
|
result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2005-08-17 19:05:51 +00:00
|
|
|
return result;
|
2003-07-06 20:49:52 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:33 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-22 23:26:33 +00:00
|
|
|
{
|
2003-11-02 21:10:18 +00:00
|
|
|
return gst_element_register (plugin, "mp3parse",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_MP3PARSE);
|
2001-12-22 23:26:33 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"mpegaudioparse",
|
|
|
|
"MPEG-1 layer 1/2/3 audio parser",
|
2006-04-01 10:09:11 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|