upload tizen1.0 source
[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  * @element: the parent element.
67  * @object_type: AAC object type of the stream.
68  * @bitrate:  Current media bitrate.
69  * @sample_rate: Current media samplerate.
70  * @channels: Current media channel count.
71  * @frames_per_sec: FPS value of the current stream.
72  * @header_type: #GstAacHeaderType indicating the current stream type.
73  * @framecount: The amount of frames that has been processed this far.
74  * @bytecount: The amount of bytes that has been processed this far.
75  * @sync: Tells whether the parser is in sync (a.k.a. not searching for header)
76  * @eos: End-of-Stream indicator. Set when EOS event arrives.
77  * @duration: Duration of the current stream.
78  * @ts: Current stream timestamp.
79  *
80  * The opaque GstAacParse data structure.
81  */
82 struct _GstAacParse {
83   GstBaseParse element;
84
85   /* Stream type -related info */
86   gint           object_type;
87   gint           bitrate;
88   gint           sample_rate;
89   gint           channels;
90   gint           mpegversion;
91
92   GstAacHeaderType header_type;
93 };
94
95 /**
96  * GstAacParseClass:
97  * @parent_class: Element parent class.
98  *
99  * The opaque GstAacParseClass data structure.
100  */
101 struct _GstAacParseClass {
102   GstBaseParseClass parent_class;
103 };
104
105 GType gst_aac_parse_get_type (void);
106
107 G_END_DECLS
108
109 #endif /* __GST_AAC_PARSE_H__ */