sys/osxaudio/: Port of osxaudiosink to 0.10
[platform/upstream/gst-plugins-good.git] / sys / osxaudio / gstosxaudioelement.c
1 /*
2  * GStreamer
3  * Copyright 2006 Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4  * 
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Alternatively, the contents of this file may be used under the
24  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
25  * which case the following provisions apply instead of the ones
26  * mentioned above:
27  *
28  * This library is free software; you can redistribute it and/or
29  * modify it under the terms of the GNU Library General Public
30  * License as published by the Free Software Foundation; either
31  * version 2 of the License, or (at your option) any later version.
32  *
33  * This library is distributed in the hope that it will be useful,
34  * but WITHOUT ANY WARRANTY; without even the implied warranty of
35  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
36  * Library General Public License for more details.
37  *
38  * You should have received a copy of the GNU Library General Public
39  * License along with this library; if not, write to the
40  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
41  * Boston, MA 02111-1307, USA.
42  */
43
44 #include <gst/gst.h>
45 #include "gstosxaudioelement.h"
46
47 static void
48 gst_osx_audio_element_class_init (GstOsxAudioElementInterface * klass);
49
50 GType
51 gst_osx_audio_element_get_type ()
52 {
53   static GType gst_osxaudioelement_type = 0;
54
55   if (!gst_osxaudioelement_type) {
56     static const GTypeInfo gst_osxaudioelement_info = {
57       sizeof (GstOsxAudioElementInterface),
58       (GBaseInitFunc) gst_osx_audio_element_class_init,
59       NULL,
60       NULL,
61       NULL,
62       NULL,
63       0,
64       0,
65       NULL,
66     };
67
68     gst_osxaudioelement_type = g_type_register_static (G_TYPE_INTERFACE,
69         "GstOsxAudioElement", &gst_osxaudioelement_info, 0);
70     /*g_type_interface_add_prerequisite (gst_osxaudioelement_type,
71        GST_TYPE_IMPLEMENTS_INTERFACE); */
72   }
73
74   return gst_osxaudioelement_type;
75 }
76
77 static void
78 gst_osx_audio_element_class_init (GstOsxAudioElementInterface * klass)
79 {
80   static gboolean initialized = FALSE;
81
82   if (!initialized) {
83
84     initialized = TRUE;
85   }
86
87   /* default virtual functions */
88   klass->io_proc = NULL;
89
90 }