upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / gst / flv / gstflvdemux.h
1 /* GStreamer
2  * Copyright (C) <2007> Julien Moutte <julien@moutte.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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __FLV_DEMUX_H__
21 #define __FLV_DEMUX_H__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstadapter.h>
25
26 G_BEGIN_DECLS
27 #define GST_TYPE_FLV_DEMUX \
28   (gst_flv_demux_get_type())
29 #define GST_FLV_DEMUX(obj) \
30   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FLV_DEMUX,GstFlvDemux))
31 #define GST_FLV_DEMUX_CLASS(klass) \
32   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FLV_DEMUX,GstFlvDemuxClass))
33 #define GST_IS_FLV_DEMUX(obj) \
34   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FLV_DEMUX))
35 #define GST_IS_FLV_DEMUX_CLASS(klass) \
36   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FLV_DEMUX))
37 typedef struct _GstFlvDemux GstFlvDemux;
38 typedef struct _GstFlvDemuxClass GstFlvDemuxClass;
39
40 typedef enum
41 {
42   FLV_STATE_HEADER,
43   FLV_STATE_TAG_TYPE,
44   FLV_STATE_TAG_VIDEO,
45   FLV_STATE_TAG_AUDIO,
46   FLV_STATE_TAG_SCRIPT,
47   FLV_STATE_SEEK,
48   FLV_STATE_DONE,
49   FLV_STATE_NONE
50 } GstFlvDemuxState;
51
52 struct _GstFlvDemux
53 {
54   GstElement element;
55
56   GstPad *sinkpad;
57
58   GstPad *audio_pad;
59   GstPad *video_pad;
60
61   /* <private> */
62   
63   GstIndex *index;
64   gint index_id;
65   gboolean own_index;
66   
67   GArray * times;
68   GArray * filepositions;
69
70   GstAdapter *adapter;
71
72   GstSegment segment;
73
74   GstEvent *close_seg_event;
75   GstEvent *new_seg_event;
76
77   GstTagList *taglist;
78
79   GstFlvDemuxState state;
80
81   guint64 offset;
82   guint64 cur_tag_offset;
83   GstClockTime duration;
84   guint64 tag_size;
85   guint64 tag_data_size;
86
87   /* Audio infos */
88   guint16 rate;
89   guint16 channels;
90   guint16 width;
91   guint16 audio_codec_tag;
92   guint64 audio_offset;
93   gboolean audio_need_discont;
94   gboolean audio_need_segment;
95   gboolean audio_linked;
96   GstBuffer * audio_codec_data;
97   GstClockTime audio_start;
98
99   /* Video infos */
100   guint32 w;
101   guint32 h;
102   guint32 par_x;
103   guint32 par_y;
104   guint16 video_codec_tag;
105   guint64 video_offset;
106   gboolean video_need_discont;
107   gboolean video_need_segment;
108   gboolean video_linked;
109   gboolean got_par;
110   GstBuffer * video_codec_data;
111   GstClockTime video_start;
112   gdouble framerate;
113
114   gboolean random_access;
115   gboolean need_header;
116   gboolean has_audio;
117   gboolean has_video;
118   gboolean push_tags;
119   gboolean strict;
120   gboolean flushing;
121
122   gboolean no_more_pads;
123
124   gboolean seeking;
125   gboolean building_index;
126   gboolean indexed; /* TRUE if index is completely built */
127   gboolean upstream_seekable; /* TRUE if upstream is seekable */
128   gint64 file_size;
129   GstEvent *seek_event;
130   gint64 seek_time;
131
132   GstClockTime index_max_time;
133   gint64 index_max_pos;
134
135   /* reverse playback */
136   GstClockTime video_first_ts;
137   GstClockTime audio_first_ts;
138   gboolean video_done;
139   gboolean audio_done;
140   gint64 from_offset;
141   gint64 to_offset;
142 };
143
144 struct _GstFlvDemuxClass
145 {
146   GstElementClass parent_class;
147 };
148
149 GType gst_flv_demux_get_type (void);
150
151 G_END_DECLS
152 #endif /* __FLV_DEMUX_H__ */