From 634943e381cd7beccf65b9b8458fe795e3bee5f2 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 9 Aug 2005 14:43:48 +0000 Subject: 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). --- gst/qtdemux/qtdemux.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'gst/qtdemux/qtdemux.h') 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 -#include -#include #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 -- cgit v1.2.1