tizen beta release
[profile/ivi/gst-openmax0.10.git] / omx / gstomx_volume.h
1 /*
2  * Copyright (C) 2007-2009 Nokia Corporation.
3  * Copyright (C) 2008 NXP.
4  *
5  * Author: Frederik Vernelen <frederik.vernelen@nxp.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation
10  * version 2.1 of the License.
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  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 #ifndef GSTOMX_VOLUME_H
24 #define GSTOMX_VOLUME_H
25
26 #include <gst/gst.h>
27
28 #include <config.h>
29
30 G_BEGIN_DECLS
31 #define GST_OMX_VOLUME(obj) (GstOmxVolume *) (obj)
32 #define GST_OMX_VOLUME_TYPE (gst_omx_volume_get_type ())
33 typedef struct GstOmxVolume GstOmxVolume;
34 typedef struct GstOmxVolumeClass GstOmxVolumeClass;
35
36 #include "gstomx_base_filter.h"
37
38 struct GstOmxVolume
39 {
40   GstOmxBaseFilter omx_base;
41 };
42
43 struct GstOmxVolumeClass
44 {
45   GstOmxBaseFilterClass parent_class;
46 };
47
48 GType gst_omx_volume_get_type (void);
49
50 G_END_DECLS
51 #endif /* GSTOMX_VOLUME_H */