flvdemux: set RESYNC buffer flag when bridging large PTS gaps
[platform/upstream/gst-plugins-good.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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, 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 #include <gst/base/gstflowcombiner.h>
26 #include "gstindex.h"
27
28 G_BEGIN_DECLS
29 #define GST_TYPE_FLV_DEMUX \
30   (gst_flv_demux_get_type())
31 #define GST_FLV_DEMUX(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FLV_DEMUX,GstFlvDemux))
33 #define GST_FLV_DEMUX_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FLV_DEMUX,GstFlvDemuxClass))
35 #define GST_IS_FLV_DEMUX(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FLV_DEMUX))
37 #define GST_IS_FLV_DEMUX_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FLV_DEMUX))
39 typedef struct _GstFlvDemux GstFlvDemux;
40 typedef struct _GstFlvDemuxClass GstFlvDemuxClass;
41
42 typedef enum
43 {
44   FLV_STATE_HEADER,
45   FLV_STATE_TAG_TYPE,
46   FLV_STATE_TAG_VIDEO,
47   FLV_STATE_TAG_AUDIO,
48   FLV_STATE_TAG_SCRIPT,
49   FLV_STATE_SEEK,
50   FLV_STATE_DONE,
51   FLV_STATE_SKIP,
52   FLV_STATE_NONE
53 } GstFlvDemuxState;
54
55 struct _GstFlvDemux
56 {
57   GstElement element;
58
59   GstPad *sinkpad;
60
61   GstPad *audio_pad;
62   GstPad *video_pad;
63
64   gboolean have_group_id;
65   guint group_id;
66
67   /* <private> */
68   
69   GstIndex *index;
70   gint index_id;
71   gboolean own_index;
72   
73   GArray * times;
74   GArray * filepositions;
75
76   GstAdapter *adapter;
77
78   GstFlowCombiner *flowcombiner;
79
80   GstSegment segment;
81
82   GstEvent *new_seg_event;
83
84   GstTagList *taglist;
85
86   GstFlvDemuxState state;
87
88   guint64 offset;
89   guint64 cur_tag_offset;
90   GstClockTime duration;
91   guint64 tag_size;
92   guint64 tag_data_size;
93
94   /* Audio infos */
95   guint16 rate;
96   guint16 channels;
97   guint16 width;
98   guint16 audio_codec_tag;
99   guint64 audio_offset;
100   gboolean audio_need_discont;
101   gboolean audio_need_segment;
102   gboolean audio_linked;
103   GstBuffer * audio_codec_data;
104   GstClockTime audio_start;
105   guint32 last_audio_pts;
106   GstClockTime audio_time_offset;
107
108   /* Video infos */
109   guint32 w;
110   guint32 h;
111   guint32 par_x;
112   guint32 par_y;
113   guint16 video_codec_tag;
114   guint64 video_offset;
115   gboolean video_need_discont;
116   gboolean video_need_segment;
117   gboolean video_linked;
118   gboolean got_par;
119   GstBuffer * video_codec_data;
120   GstClockTime video_start;
121   guint32 last_video_pts;
122   GstClockTime video_time_offset;
123   gdouble framerate;
124
125   gboolean random_access;
126   gboolean need_header;
127   gboolean has_audio;
128   gboolean has_video;
129   gboolean push_tags;
130   gboolean strict;
131   gboolean flushing;
132
133   gboolean no_more_pads;
134
135   gboolean seeking;
136   gboolean building_index;
137   gboolean indexed; /* TRUE if index is completely built */
138   gboolean upstream_seekable; /* TRUE if upstream is seekable */
139   gint64 file_size;
140   GstEvent *seek_event;
141   gint64 seek_time;
142
143   GstClockTime index_max_time;
144   gint64 index_max_pos;
145
146   /* reverse playback */
147   GstClockTime video_first_ts;
148   GstClockTime audio_first_ts;
149   gboolean video_done;
150   gboolean audio_done;
151   gint64 from_offset;
152   gint64 to_offset;
153 };
154
155 struct _GstFlvDemuxClass
156 {
157   GstElementClass parent_class;
158 };
159
160 GType gst_flv_demux_get_type (void);
161
162 G_END_DECLS
163 #endif /* __FLV_DEMUX_H__ */