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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, 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"
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2008-08-27 00:08:20 +00:00
|
|
|
if (!gst_element_register (plugin, "osxaudiosink", GST_RANK_PRIMARY,
|
2008-08-26 21:13:08 +00:00
|
|
|
GST_TYPE_OSX_AUDIO_SINK)) {
|
2004-05-20 19:45:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-08-27 00:08:20 +00:00
|
|
|
if (!gst_element_register (plugin, "osxaudiosrc", GST_RANK_PRIMARY,
|
2008-08-26 21:13:08 +00:00
|
|
|
GST_TYPE_OSX_AUDIO_SRC)) {
|
2004-05-20 19:45:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"osxaudio",
|
|
|
|
"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)
|