1 #ifndef __GST_PULSEMIXERTRACK_H__
2 #define __GST_PULSEMIXERTRACK_H__
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
27 #include "pulsemixerctrl.h"
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
{
44 GstPulseMixerCtrl
*control
;
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
);