Merging gst-plugins-ugly
[platform/upstream/gstreamer.git] / ext / amrnb / amrnbdec.h
1 /* GStreamer Adaptive Multi-Rate Narrow-Band (AMR-NB) plugin
2  * Copyright (C) 2004 Ronald Bultje <rbultje@ronald.bitfreak.net>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __GST_AMRNBDEC_H__
21 #define __GST_AMRNBDEC_H__
22
23 #include <gst/gst.h>
24 #include <gst/audio/gstaudiodecoder.h>
25
26 #include <opencore-amrnb/interf_dec.h>
27
28 G_BEGIN_DECLS
29
30 #define GST_TYPE_AMRNBDEC \
31   (gst_amrnbdec_get_type())
32 #define GST_AMRNBDEC(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_AMRNBDEC, GstAmrnbDec))
34 #define GST_AMRNBDEC_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_AMRNBDEC, GstAmrnbDecClass))
36 #define GST_IS_AMRNBDEC(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_AMRNBDEC))
38 #define GST_IS_AMRNBDEC_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_AMRNBDEC))
40
41 typedef struct _GstAmrnbDec GstAmrnbDec;
42 typedef struct _GstAmrnbDecClass GstAmrnbDecClass;
43
44 typedef enum
45 {
46   GST_AMRNB_VARIANT_IF1,
47   GST_AMRNB_VARIANT_IF2
48 } GstAmrnbVariant;
49
50 struct _GstAmrnbDec {
51   GstAudioDecoder element;
52
53   GstAmrnbVariant variant;
54
55   /* library handle */
56   void *handle;
57
58   /* output settings */
59   gint channels, rate;
60 };
61
62 struct _GstAmrnbDecClass {
63   GstAudioDecoderClass parent_class;
64 };
65
66 GType gst_amrnbdec_get_type (void);
67 GST_ELEMENT_REGISTER_DECLARE (amrnbdec);
68
69 G_END_DECLS
70
71 #endif /* __GST_AMRNBDEC_H__ */