omxvideoenc: drain encoder on ALLOCATION and DRAIN queries
[platform/upstream/gstreamer.git] / omx / gstomxaacdec.h
1 /*
2  * Copyright (C) 2014, Sebastian Dröge <sebastian@centricular.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation
7  * version 2.1 of the License.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  */
19
20 #ifndef __GST_OMX_AAC_DEC_H__
21 #define __GST_OMX_AAC_DEC_H__
22
23 #include <gst/gst.h>
24 #include "gstomxaudiodec.h"
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_OMX_AAC_DEC \
29   (gst_omx_aac_dec_get_type())
30 #define GST_OMX_AAC_DEC(obj) \
31   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_AAC_DEC,GstOMXAACDec))
32 #define GST_OMX_AAC_DEC_CLASS(klass) \
33   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_AAC_DEC,GstOMXAACDecClass))
34 #define GST_OMX_AAC_DEC_GET_CLASS(obj) \
35   (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_AAC_DEC,GstOMXAACDecClass))
36 #define GST_IS_OMX_AAC_DEC(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_AAC_DEC))
38 #define GST_IS_OMX_AAC_DEC_CLASS(obj) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_AAC_DEC))
40
41 typedef struct _GstOMXAACDec GstOMXAACDec;
42 typedef struct _GstOMXAACDecClass GstOMXAACDecClass;
43
44 struct _GstOMXAACDec
45 {
46   GstOMXAudioDec parent;
47   gint spf;
48 };
49
50 struct _GstOMXAACDecClass
51 {
52   GstOMXAudioDecClass parent_class;
53 };
54
55 GType gst_omx_aac_dec_get_type (void);
56
57 G_END_DECLS
58
59 #endif /* __GST_OMX_AAC_DEC_H__ */
60