fix tabs
[gst-pulse.git] / src / pulsemixertrack.h
blob69817bf997f354feadfad6a4d1ced5c52e331ae6
1 #ifndef __GST_PULSEMIXERTRACK_H__
2 #define __GST_PULSEMIXERTRACK_H__
4 /* $Id$ */
6 /***
7 This file is part of gst-pulse.
9 gst-pulse is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2.1 of the
12 License, or (at your option) any later version.
14 gst-pulse is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public
20 License along with gst-pulse; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
25 #include <gst/gst.h>
27 #include "pulsemixerctrl.h"
29 G_BEGIN_DECLS
31 #define GST_TYPE_PULSEMIXER_TRACK \
32 (gst_pulsemixer_track_get_type())
33 #define GST_PULSEMIXER_TRACK(obj) \
34 (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_PULSEMIXER_TRACK, GstPulseMixerTrack))
35 #define GST_PULSEMIXER_TRACK_CLASS(klass) \
36 (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_PULSEMIXER_TRACK, GstPulseMixerTrackClass))
37 #define GST_IS_PULSEMIXER_TRACK(obj) \
38 (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_PULSEMIXER_TRACK))
39 #define GST_IS_PULSEMIXER_TRACK_CLASS(klass) \
40 (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_PULSEMIXER_TRACK))
42 typedef struct _GstPulseMixerTrack {
43 GstMixerTrack parent;
44 GstPulseMixerCtrl *control;
45 } GstPulseMixerTrack;
47 typedef struct _GstPulseMixerTrackClass {
48 GstMixerTrackClass parent;
49 } GstPulseMixerTrackClass;
51 GType gst_pulsemixer_track_get_type(void);
52 GstMixerTrack* gst_pulsemixer_track_new(GstPulseMixerCtrl *control);
54 G_END_DECLS
56 #endif