2009-07-27 18:12:20 +00:00
|
|
|
/* GStreamer Adaptive Multi-Rate Wide-Band (AMR-WB) Decoder plugin
|
2017-02-26 00:48:46 +00:00
|
|
|
* Copyright (C) 2006 Edgard Lima <edgard.lima@gmail.com>
|
2009-07-27 18:12:20 +00:00
|
|
|
*
|
|
|
|
* 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-03 20:40:37 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-07-27 18:12:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "amrwbdec.h"
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2021-03-29 08:39:46 +00:00
|
|
|
return GST_ELEMENT_REGISTER (amrwbdec, plugin);
|
2009-07-27 18:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:40:12 +00:00
|
|
|
amrwbdec,
|
2009-07-27 18:12:20 +00:00
|
|
|
"Adaptive Multi-Rate Wide-Band Decoder",
|
|
|
|
plugin_init, VERSION, GST_LICENSE_UNKNOWN, GST_PACKAGE_NAME,
|
|
|
|
GST_PACKAGE_ORIGIN);
|