2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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.
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.
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.
21 #ifndef __GST_QTDEMUX_H__
22 #define __GST_QTDEMUX_H__
25 #include <gst/base/gstadapter.h>
29 GST_DEBUG_CATEGORY_EXTERN (qtdemux_debug);
30 #define GST_CAT_DEFAULT qtdemux_debug
32 #define GST_TYPE_QTDEMUX \
33 (gst_qtdemux_get_type())
34 #define GST_QTDEMUX(obj) \
35 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_QTDEMUX,GstQTDemux))
36 #define GST_QTDEMUX_CLASS(klass) \
37 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_QTDEMUX,GstQTDemuxClass))
38 #define GST_IS_QTDEMUX(obj) \
39 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_QTDEMUX))
40 #define GST_IS_QTDEMUX_CLASS(klass) \
41 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_QTDEMUX))
43 #define GST_QTDEMUX_CAST(obj) ((GstQTDemux *)(obj))
45 /* qtdemux produces these for atoms it cannot parse */
46 #define GST_QT_DEMUX_PRIVATE_TAG "private-qt-tag"
47 #define GST_QT_DEMUX_CLASSIFICATION_TAG "classification"
49 #define GST_QTDEMUX_MAX_STREAMS 8
51 typedef struct _GstQTDemux GstQTDemux;
52 typedef struct _GstQTDemuxClass GstQTDemuxClass;
53 typedef struct _QtDemuxStream QtDemuxStream;
61 QtDemuxStream *streams[GST_QTDEMUX_MAX_STREAMS];
68 GstBuffer *comp_brands;
70 GNode *moov_node_compressed;
76 /* offset of the mfra atom */
83 gboolean posted_redirect;
85 /* push based variables */
89 GstBuffer *mdatbuffer;
93 /* offset of the mdat atom */
101 /* configured playback region */
103 GstEvent *pending_newsegment;
105 /* gst index support */
106 GstIndex *element_index;
109 gint64 requested_seek_time;
112 gboolean upstream_seekable;
113 gboolean upstream_size;
116 struct _GstQTDemuxClass {
117 GstElementClass parent_class;
120 GType gst_qtdemux_get_type (void);
124 #endif /* __GST_QTDEMUX_H__ */