summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux/qtdemux.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-08-09 14:43:48 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-08-09 14:43:48 +0000
commit53ba9736e8348851003b5d3455966cc07c7ed384 (patch)
treeceb03d4c1c90f38e43b4053e1b592b76bd75642d /gst/qtdemux/qtdemux.h
parentf6d8dee68de0e4a8a035c74a75d43a6494a00804 (diff)
ext/faad/gstfaad.c: Sign/unsign mismatch.
Original commit message from CVS: * ext/faad/gstfaad.c: (gst_faad_event): Sign/unsign mismatch. * configure.ac: * gst/qtdemux/qtdemux.c: (gst_qtdemux_class_init), (gst_qtdemux_init), (gst_qtdemux_get_src_query_types), (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event), (plugin_init), (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state), (gst_qtdemux_loop_header), (qtdemux_sink_activate), (qtdemux_sink_activate_pull), (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree), (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps): * gst/qtdemux/qtdemux.h: Half-assed port (hey, it works).
Diffstat (limited to 'gst/qtdemux/qtdemux.h')
-rw-r--r--gst/qtdemux/qtdemux.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gst/qtdemux/qtdemux.h b/gst/qtdemux/qtdemux.h
index d6ed313e..de6cacbd 100644
--- a/gst/qtdemux/qtdemux.h
+++ b/gst/qtdemux/qtdemux.h
@@ -22,8 +22,6 @@
#define __GST_QTDEMUX_H__
#include <gst/gst.h>
-#include <gst/bytestream/bytestream.h>
-#include <gst/getbits/getbits.h>
#ifdef __cplusplus
extern "C" {
@@ -58,8 +56,6 @@ struct _GstQTDemux {
int n_video_streams;
int n_audio_streams;
- GstByteStream *bs;
-
GNode *moov_node;
GNode *moov_node_compressed;
@@ -68,7 +64,7 @@ struct _GstQTDemux {
int state;
- int offset;
+ guint64 offset;
GstTagList *tag_list;
@@ -81,6 +77,9 @@ struct _GstQTDemux {
struct _GstQTDemuxClass {
GstElementClass parent_class;
+
+ void (* got_redirect) (GstElement * element,
+ const gchar * new_location);
};
#ifdef __cplusplus