2003-11-21 21:20:42 +00:00
|
|
|
/* GStreamer FAAD (Free AAC Decoder) plugin
|
|
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_FAAD_H__
|
|
|
|
#define __GST_FAAD_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2008-03-18 10:12:40 +00:00
|
|
|
#ifdef FAAD_IS_NEAAC
|
|
|
|
#include <neaacdec.h>
|
|
|
|
#else
|
2003-11-21 21:20:42 +00:00
|
|
|
#include <faad.h>
|
2008-03-18 10:12:40 +00:00
|
|
|
#endif
|
2003-11-21 21:20:42 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-11-21 21:20:42 +00:00
|
|
|
#define GST_TYPE_FAAD \
|
|
|
|
(gst_faad_get_type ())
|
|
|
|
#define GST_FAAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_FAAD, GstFaad))
|
|
|
|
#define GST_FAAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_FAAD, GstFaadClass))
|
|
|
|
#define GST_IS_FAAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_FAAD))
|
ext/faad/gstfaad.*: If we run into a decoding error, try re-opening the decoder with faacDecInit2() using fake codec ...
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_init), (aac_rate_idx),
(gst_faad_setcaps), (gst_faad_chain), (gst_faad_open_decoder),
(gst_faad_close_decoder), (gst_faad_change_state):
* ext/faad/gstfaad.h:
If we run into a decoding error, try re-opening the decoder
with faacDecInit2() using fake codec data created from the
data the demuxer gave us. Should fix a whole bunch of
GStreamer-faad problems incl. 'channel coupling not
implemented', 'maximum number of scalefactor bands exceeded'
etc. (#173007, #332892).
2006-04-28 11:04:12 +00:00
|
|
|
#define GST_IS_FAAD_CLASS(klass) \
|
2003-11-21 21:20:42 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_FAAD))
|
2004-03-15 16:32:54 +00:00
|
|
|
|
|
|
|
typedef struct _GstFaad {
|
2003-11-21 21:20:42 +00:00
|
|
|
GstElement element;
|
|
|
|
|
2005-08-08 19:20:02 +00:00
|
|
|
GstPad *srcpad;
|
|
|
|
GstPad *sinkpad;
|
2003-11-21 21:20:42 +00:00
|
|
|
|
2005-08-08 19:20:02 +00:00
|
|
|
guint samplerate; /* sample rate of the last MPEG frame */
|
|
|
|
guint channels; /* number of channels of the last frame */
|
|
|
|
guint bps; /* bytes per sample */
|
2003-11-21 21:20:42 +00:00
|
|
|
|
ext/faad/gstfaad.*: If we run into a decoding error, try re-opening the decoder with faacDecInit2() using fake codec ...
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_init), (aac_rate_idx),
(gst_faad_setcaps), (gst_faad_chain), (gst_faad_open_decoder),
(gst_faad_close_decoder), (gst_faad_change_state):
* ext/faad/gstfaad.h:
If we run into a decoding error, try re-opening the decoder
with faacDecInit2() using fake codec data created from the
data the demuxer gave us. Should fix a whole bunch of
GStreamer-faad problems incl. 'channel coupling not
implemented', 'maximum number of scalefactor bands exceeded'
etc. (#173007, #332892).
2006-04-28 11:04:12 +00:00
|
|
|
guint8 fake_codec_data[2];
|
|
|
|
|
2005-08-08 19:20:02 +00:00
|
|
|
GstBuffer *tempbuf; /* used to keep input leftovers */
|
2004-10-01 13:00:41 +00:00
|
|
|
|
2003-11-21 21:20:42 +00:00
|
|
|
/* FAAD object */
|
|
|
|
faacDecHandle handle;
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
gboolean init;
|
|
|
|
|
|
|
|
/* FAAD channel setup */
|
|
|
|
guchar *channel_positions;
|
|
|
|
gboolean need_channel_setup;
|
2005-02-21 18:58:46 +00:00
|
|
|
gboolean packetised; /* We must differentiate between raw and packetised streams */
|
2005-08-08 19:20:02 +00:00
|
|
|
|
2005-10-20 15:08:14 +00:00
|
|
|
gint64 prev_ts; /* timestamp of previous buffer */
|
|
|
|
gint64 next_ts; /* timestamp of next buffer */
|
2005-08-08 19:20:02 +00:00
|
|
|
guint64 bytes_in; /* bytes received */
|
|
|
|
guint64 sum_dur_out; /* sum of durations of decoded buffers we sent out */
|
2006-05-13 18:39:13 +00:00
|
|
|
gint error_count;
|
2008-06-02 10:18:25 +00:00
|
|
|
gboolean discont;
|
2006-05-31 19:26:24 +00:00
|
|
|
|
|
|
|
/* segment handling */
|
2010-02-09 21:46:32 +00:00
|
|
|
GstSegment segment;
|
2008-06-02 10:18:25 +00:00
|
|
|
|
|
|
|
/* list of raw output buffers for reverse playback */
|
|
|
|
GList *queued;
|
|
|
|
/* gather/decode queues for reverse playback */
|
|
|
|
GList *gather;
|
|
|
|
GList *decode;
|
2003-11-21 21:20:42 +00:00
|
|
|
} GstFaad;
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
typedef struct _GstFaadClass {
|
2003-11-21 21:20:42 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
} GstFaadClass;
|
|
|
|
|
|
|
|
GType gst_faad_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-11-21 21:20:42 +00:00
|
|
|
#endif /* __GST_FAAD_H__ */
|