tizen 2.0 init
[framework/multimedia/gst-plugins-good0.10.git] / gst / audioparsers / gstaacparse.h
1 /* GStreamer AAC parser
2  * Copyright (C) 2008 Nokia Corporation. All rights reserved.
3  *
4  * Contact: Stefan Kost <stefan.kost@nokia.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GST_AAC_PARSE_H__
23 #define __GST_AAC_PARSE_H__
24
25 #include <gst/gst.h>
26 #include <gst/base/gstbaseparse.h>
27
28 G_BEGIN_DECLS
29
30 #define GST_TYPE_AAC_PARSE \
31   (gst_aac_parse_get_type())
32 #define GST_AAC_PARSE(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_AAC_PARSE, GstAacParse))
34 #define GST_AAC_PARSE_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_AAC_PARSE, GstAacParseClass))
36 #define GST_IS_AAC_PARSE(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_AAC_PARSE))
38 #define GST_IS_AAC_PARSE_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_AAC_PARSE))
40
41
42 /**
43  * GstAacHeaderType:
44  * @DSPAAC_HEADER_NOT_PARSED: Header not parsed yet.
45  * @DSPAAC_HEADER_UNKNOWN: Unknown (not recognized) header.
46  * @DSPAAC_HEADER_ADIF: ADIF header found.
47  * @DSPAAC_HEADER_ADTS: ADTS header found.
48  * @DSPAAC_HEADER_NONE: Raw stream, no header.
49  *
50  * Type header enumeration set in #header_type.
51  */
52 typedef enum {
53   DSPAAC_HEADER_NOT_PARSED,
54   DSPAAC_HEADER_UNKNOWN,
55   DSPAAC_HEADER_ADIF,
56   DSPAAC_HEADER_ADTS,
57   DSPAAC_HEADER_NONE
58 } GstAacHeaderType;
59
60
61 typedef struct _GstAacParse GstAacParse;
62 typedef struct _GstAacParseClass GstAacParseClass;
63
64 /**
65  * GstAacParse:
66  *
67  * The opaque GstAacParse data structure.
68  */
69 struct _GstAacParse {
70   GstBaseParse element;
71
72   /* Stream type -related info */
73   gint           object_type;
74   gint           bitrate;
75   gint           sample_rate;
76   gint           channels;
77   gint           mpegversion;
78   gint           frame_samples;
79
80   GstAacHeaderType header_type;
81 };
82
83 /**
84  * GstAacParseClass:
85  * @parent_class: Element parent class.
86  *
87  * The opaque GstAacParseClass data structure.
88  */
89 struct _GstAacParseClass {
90   GstBaseParseClass parent_class;
91 };
92
93 GType gst_aac_parse_get_type (void);
94
95 G_END_DECLS
96
97 #endif /* __GST_AAC_PARSE_H__ */