f40a4cc0fd8afecd673d14c83294d6c1ff9182ab
[platform/upstream/gstreamer.git] / sys / sunaudio / gstsunaudiosink.h
1 /* GStreamer
2  * Copyright (C) 2004 David A. Schleef <ds@schleef.org>
3  * Copyright (C) 2005 Brian Cameron <brian.cameron@sun.com>
4  *
5  * gstsunaudiosink.h:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_SUNAUDIO_SINK_H__
24 #define __GST_SUNAUDIO_SINK_H__
25
26 #include <sys/audioio.h>
27 #include <gst/gst.h>
28 #include <gst/audio/gstaudiosink.h>
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_SUNAUDIO_SINK     (gst_sunaudiosink_get_type())
33 #define GST_SUNAUDIO_SINK(obj)     (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SUNAUDIO_SINK,GstSunAudioSink))
34 #define GST_SUNAUDIO_SINK_CLASS(klass)  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SUNAUDIO_SINK,GstSunAudioSinkClass))
35 #define GST_IS_SUNAUDIO_SINK(obj)       (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SUNAUDIO_SINK))
36 #define GST_IS_SUNAUDIO_SINK_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SUNAUDIO_SINK))
37
38 typedef struct _GstSunAudioSink GstSunAudioSink;
39 typedef struct _GstSunAudioSinkClass GstSunAudioSinkClass;
40
41 struct _GstSunAudioSink {
42   GstAudioSink    sink;
43
44   gchar *device;
45   gint   fd;
46
47   audio_device_t dev;
48   audio_info_t info;
49
50   gint   bytes_per_sample;
51 };
52
53 struct _GstSunAudioSinkClass {
54   GstAudioSinkClass parent_class;
55 };
56
57 GType gst_sunaudiosink_get_type(void);
58
59 G_END_DECLS
60
61 #endif /* __GST_SUNAUDIO_SINK_H__ */
62