omxvideoenc: drain encoder on ALLOCATION and DRAIN queries
[platform/upstream/gstreamer.git] / omx / gstomxamrdec.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_AMR_DEC_H__
21 #define __GST_OMX_AMR_DEC_H__
22
23 #include <gst/gst.h>
24 #include "gstomxaudiodec.h"
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_OMX_AMR_DEC \
29   (gst_omx_amr_dec_get_type())
30 #define GST_OMX_AMR_DEC(obj) \
31   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_AMR_DEC,GstOMXAMRDec))
32 #define GST_OMX_AMR_DEC_CLASS(klass) \
33   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OMX_AMR_DEC,GstOMXAMRDecClass))
34 #define GST_OMX_AMR_DEC_GET_CLASS(obj) \
35   (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_OMX_AMR_DEC,GstOMXAMRDecClass))
36 #define GST_IS_OMX_AMR_DEC(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_AMR_DEC))
38 #define GST_IS_OMX_AMR_DEC_CLASS(obj) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OMX_AMR_DEC))
40
41 typedef struct _GstOMXAMRDec GstOMXAMRDec;
42 typedef struct _GstOMXAMRDecClass GstOMXAMRDecClass;
43
44 struct _GstOMXAMRDec
45 {
46   GstOMXAudioDec parent;
47   gint spf;
48   gint rate;
49 };
50
51 struct _GstOMXAMRDecClass
52 {
53   GstOMXAudioDecClass parent_class;
54 };
55
56 GType gst_omx_amr_dec_get_type (void);
57
58 G_END_DECLS
59
60 #endif /* __GST_OMX_AMR_DEC_H__ */
61