2009-01-02 20:39:34 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu>
|
2008-08-26 21:13:08 +00:00
|
|
|
* Copyright (C) 2007,2008 Pioneers of the Inevitable <songbird@songbirdnest.com>
|
|
|
|
*
|
2004-05-20 19:45:13 +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-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-01-02 20:39:34 +00:00
|
|
|
*
|
|
|
|
* The development of this code was made possible due to the involvement of
|
2008-08-26 21:13:08 +00:00
|
|
|
* Pioneers of the Inevitable, the creators of the Songbird Music player
|
2009-01-02 20:39:34 +00:00
|
|
|
*
|
2004-05-20 19:45:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstosxaudioelement.h"
|
|
|
|
#include "gstosxaudiosink.h"
|
|
|
|
#include "gstosxaudiosrc.h"
|
2016-04-30 13:15:13 +00:00
|
|
|
#ifndef HAVE_IOS
|
|
|
|
#include "gstosxaudiodeviceprovider.h"
|
|
|
|
#endif
|
2004-05-20 19:45:13 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2023-09-28 14:59:14 +00:00
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
ret |= GST_ELEMENT_REGISTER (osxaudiosrc, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (osxaudiosink, plugin);
|
2016-04-30 13:15:13 +00:00
|
|
|
#ifndef HAVE_IOS
|
2023-09-28 14:59:14 +00:00
|
|
|
ret |= GST_DEVICE_PROVIDER_REGISTER (osxaudiodeviceprovider, plugin);
|
2016-04-30 13:15:13 +00:00
|
|
|
#endif
|
2004-05-20 19:45:13 +00:00
|
|
|
|
2023-09-28 14:59:14 +00:00
|
|
|
return ret;
|
2004-05-20 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 15:36:38 +00:00
|
|
|
osxaudio,
|
2004-05-20 19:45:13 +00:00
|
|
|
"OSX (Mac OS X) audio support for GStreamer",
|
2005-11-14 02:13:35 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|