2009-11-26 16:04:43 +00:00
|
|
|
/* GStreamer audio parsers
|
|
|
|
* Copyright (C) 2009 Tim-Philipp Müller <tim centricular 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
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-11-26 16:04:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstaacparse.h"
|
2009-11-26 17:15:21 +00:00
|
|
|
#include "gstamrparse.h"
|
2009-11-27 16:59:03 +00:00
|
|
|
#include "gstac3parse.h"
|
2010-10-18 23:15:20 +00:00
|
|
|
#include "gstdcaparse.h"
|
2009-12-17 11:44:20 +00:00
|
|
|
#include "gstflacparse.h"
|
2010-09-25 11:59:18 +00:00
|
|
|
#include "gstmpegaudioparse.h"
|
2013-01-15 17:38:24 +00:00
|
|
|
#include "gstsbcparse.h"
|
2012-02-28 12:51:10 +00:00
|
|
|
#include "gstwavpackparse.h"
|
2009-11-26 16:04:43 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
ret = gst_element_register (plugin, "aacparse",
|
2011-04-07 14:07:15 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_AAC_PARSE);
|
2009-11-26 17:15:21 +00:00
|
|
|
ret &= gst_element_register (plugin, "amrparse",
|
2011-04-07 14:07:15 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_AMR_PARSE);
|
2009-11-27 16:59:03 +00:00
|
|
|
ret &= gst_element_register (plugin, "ac3parse",
|
2010-08-16 09:04:37 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_AC3_PARSE);
|
2010-10-18 23:15:20 +00:00
|
|
|
ret &= gst_element_register (plugin, "dcaparse",
|
2011-03-09 17:36:14 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_DCA_PARSE);
|
2009-12-17 11:44:20 +00:00
|
|
|
ret &= gst_element_register (plugin, "flacparse",
|
2010-08-16 09:04:37 +00:00
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_FLAC_PARSE);
|
2010-09-25 11:59:18 +00:00
|
|
|
ret &= gst_element_register (plugin, "mpegaudioparse",
|
|
|
|
GST_RANK_PRIMARY + 2, GST_TYPE_MPEG_AUDIO_PARSE);
|
2013-01-15 17:38:24 +00:00
|
|
|
ret &= gst_element_register (plugin, "sbcparse",
|
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_SBC_PARSE);
|
2012-03-05 11:15:44 +00:00
|
|
|
ret &= gst_element_register (plugin, "wavpackparse",
|
|
|
|
GST_RANK_PRIMARY + 1, GST_TYPE_WAVPACK_PARSE);
|
2009-11-26 16:04:43 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:36:38 +00:00
|
|
|
audioparsers,
|
2011-04-07 13:43:42 +00:00
|
|
|
"Parsers for various audio formats",
|
2009-11-26 16:04:43 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|