upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / gst / isomp4 / qtdemux.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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
21 #ifndef __GST_QTDEMUX_H__
22 #define __GST_QTDEMUX_H__
23
24 #include <gst/gst.h>
25 #include <gst/base/gstadapter.h>
26
27 #define QTDEMUX_MODIFICATION
28
29 #ifdef QTDEMUX_MODIFICATION
30 #include <stdio.h>
31 #endif
32
33 G_BEGIN_DECLS
34
35 GST_DEBUG_CATEGORY_EXTERN (qtdemux_debug);
36 #define GST_CAT_DEFAULT qtdemux_debug
37
38 #define GST_TYPE_QTDEMUX \
39   (gst_qtdemux_get_type())
40 #define GST_QTDEMUX(obj) \
41   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_QTDEMUX,GstQTDemux))
42 #define GST_QTDEMUX_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_QTDEMUX,GstQTDemuxClass))
44 #define GST_IS_QTDEMUX(obj) \
45   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_QTDEMUX))
46 #define GST_IS_QTDEMUX_CLASS(klass) \
47   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_QTDEMUX))
48
49 #define GST_QTDEMUX_CAST(obj) ((GstQTDemux *)(obj))
50
51 /* qtdemux produces these for atoms it cannot parse */
52 #define GST_QT_DEMUX_PRIVATE_TAG "private-qt-tag"
53 #define GST_QT_DEMUX_CLASSIFICATION_TAG "classification"
54
55 #define GST_QTDEMUX_MAX_STREAMS         8
56
57 typedef struct _GstQTDemux GstQTDemux;
58 typedef struct _GstQTDemuxClass GstQTDemuxClass;
59 typedef struct _QtDemuxStream QtDemuxStream;
60
61 struct _GstQTDemux {
62   GstElement element;
63
64   /* pads */
65   GstPad *sinkpad;
66
67   QtDemuxStream *streams[GST_QTDEMUX_MAX_STREAMS];
68   gint     n_streams;
69   gint     n_video_streams;
70   gint     n_audio_streams;
71   gint     n_sub_streams;
72
73   guint  major_brand;
74   GstBuffer *comp_brands;
75   GNode *moov_node;
76   GNode *moov_node_compressed;
77
78   guint32 timescale;
79   guint64 duration;
80
81   gboolean fragmented;
82   /* offset of the mfra atom */
83   guint64 mfra_offset;
84   guint64 moof_offset;
85
86   gint state;
87
88   gboolean pullbased;
89   gboolean posted_redirect;
90
91   /* push based variables */
92   guint neededbytes;
93   guint todrop;
94   GstAdapter *adapter;
95   GstBuffer *mdatbuffer;
96   guint64 mdatleft;
97
98   /* offset of the media data (i.e.: Size of header) */
99   guint64 offset;
100   /* offset of the mdat atom */
101   guint64 mdatoffset;
102   guint64 first_mdat;
103   gboolean got_moov;
104
105   GstTagList *tag_list;
106
107   /* configured playback region */
108   GstSegment segment;
109   gboolean segment_running;
110   GstEvent *pending_newsegment;
111
112   /* gst index support */
113   GstIndex *element_index;
114   gint index_id;
115
116   gint64 requested_seek_time;
117   guint64 seek_offset;
118 #ifdef QTDEMUX_MODIFICATION
119         FILE* file;
120         FILE* ofile;
121         gchar* filename;
122         guint filesize;
123         guint maxbuffersize;
124 #endif
125 };
126
127 struct _GstQTDemuxClass {
128   GstElementClass parent_class;
129 };
130
131 GType gst_qtdemux_get_type (void);
132
133 G_END_DECLS
134
135 #endif /* __GST_QTDEMUX_H__ */