2003-11-16 00:40:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 CodeFactory AB
|
|
|
|
* Copyright (C) 2001 Thomas Nyberg <thomas@codefactory.se>
|
|
|
|
* Copyright (C) 2001-2002 Andy Wingo <apwingo@eos.ncsu.edu>
|
|
|
|
* Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-11-16 00:40:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2020-10-16 12:35:04 +00:00
|
|
|
#include "gstalsaelements.h"
|
2018-08-31 21:33:43 +00:00
|
|
|
#include "gstalsadeviceprovider.h"
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2022-03-25 13:59:23 +00:00
|
|
|
#include <glib/gi18n-lib.h>
|
2006-01-27 01:06:29 +00:00
|
|
|
|
2003-11-16 00:40:01 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2020-10-16 12:35:04 +00:00
|
|
|
gboolean ret = FALSE;
|
2003-11-16 00:40:01 +00:00
|
|
|
|
2020-10-16 12:35:04 +00:00
|
|
|
ret |= GST_DEVICE_PROVIDER_REGISTER (alsadeviceprovider, plugin);
|
2006-01-27 01:06:29 +00:00
|
|
|
|
2020-10-16 12:35:04 +00:00
|
|
|
ret |= GST_ELEMENT_REGISTER (alsasrc, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (alsasink, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (alsamidisrc, plugin);
|
2004-03-30 02:53:00 +00:00
|
|
|
|
2022-06-30 13:14:27 +00:00
|
|
|
return ret;
|
2003-11-16 00:40:01 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 13:11:05 +00:00
|
|
|
alsa,
|
2004-03-14 22:34:34 +00:00
|
|
|
"ALSA plugin library",
|
2005-10-16 13:54:44 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|