2008-09-30 11:19:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
|
2018-03-01 09:59:27 +00:00
|
|
|
* Copyright (C) 2018 Centricular Ltd.
|
|
|
|
* Author: Nirbheek Chauhan <nirbheek@centricular.com>
|
2008-09-30 11:19:10 +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:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-09-30 11:19:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2013-03-26 14:01:08 +00:00
|
|
|
#include "gstwasapisink.h"
|
2013-03-28 15:52:26 +00:00
|
|
|
#include "gstwasapisrc.h"
|
2018-01-24 19:21:22 +00:00
|
|
|
#include "gstwasapidevice.h"
|
2013-03-26 14:01:08 +00:00
|
|
|
|
2018-02-14 06:17:14 +00:00
|
|
|
GST_DEBUG_CATEGORY (gst_wasapi_debug);
|
|
|
|
|
2008-09-30 11:19:10 +00:00
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2018-03-01 09:59:27 +00:00
|
|
|
if (!gst_element_register (plugin, "wasapisink", GST_RANK_PRIMARY,
|
2018-01-24 19:21:22 +00:00
|
|
|
GST_TYPE_WASAPI_SINK))
|
|
|
|
return FALSE;
|
2013-03-28 15:52:26 +00:00
|
|
|
|
2018-03-01 09:59:27 +00:00
|
|
|
if (!gst_element_register (plugin, "wasapisrc", GST_RANK_PRIMARY,
|
2018-01-24 19:21:22 +00:00
|
|
|
GST_TYPE_WASAPI_SRC))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_device_provider_register (plugin, "wasapideviceprovider",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_WASAPI_DEVICE_PROVIDER))
|
|
|
|
return FALSE;
|
2008-09-30 11:19:10 +00:00
|
|
|
|
2018-02-14 06:17:14 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_wasapi_debug, "wasapi",
|
|
|
|
0, "Windows audio session API generic");
|
|
|
|
|
2013-03-27 09:10:21 +00:00
|
|
|
return TRUE;
|
2008-09-30 11:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
wasapi,
|
2008-09-30 11:19:10 +00:00
|
|
|
"Windows audio session API plugin",
|
2013-03-26 14:22:16 +00:00
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|