Merge branch 'move_subdir_omx' into tizen_gst_1.19.2_mono
[platform/upstream/gstreamer.git] / subprojects / gst-omx / omx / gstomxvp9dec.h
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
3  *   Author: Sejun Park <sejun79.park@samsung.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation
8  * version 2.1 of the License.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  */
20
21 #ifndef __GST_OMX_VP9_DEC_H__
22 #define __GST_OMX_VP9_DEC_H__
23
24 #include <gst/gst.h>
25 #include "gstomxvideodec.h"
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_OMX_VP9_DEC \
30   (gst_omx_vp9_dec_get_type())
31 #define GST_OMX_VP9_DEC(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_VP9_DEC,GstOMXVP9Dec))
33 #define GST_OMX_VP9_DEC_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_VP9_DEC,GstOMXVP9DecClass))
35 #define GST_OMX_VP9_DEC_GET_CLASS(obj) \
36   (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_VP9_DEC,GstOMXVP9DecClass))
37 #define GST_IS_OMX_VP9_DEC(obj) \
38   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_VP9_DEC))
39 #define GST_IS_OMX_VP9_DEC_CLASS(obj) \
40   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_VP9_DEC))
41
42 typedef struct _GstOMXVP9Dec GstOMXVP9Dec;
43 typedef struct _GstOMXVP9DecClass GstOMXVP9DecClass;
44
45 struct _GstOMXVP9Dec
46 {
47   GstOMXVideoDec parent;
48 };
49
50 struct _GstOMXVP9DecClass
51 {
52   GstOMXVideoDecClass parent_class;
53 };
54
55 GType gst_omx_vp9_dec_get_type (void);
56
57 G_END_DECLS
58
59 #endif /* __GST_OMX_VP9_DEC_H__ */
60