diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 02:01:51 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 02:01:51 +0000 |
commit | 439907def64a3bdbc3fd6a73af623c6fb7a55497 (patch) | |
tree | b1fbbec16558d5dd7b882682359d91cec19f9611 /src/demuxers/demux_qt.c | |
parent | fc4c873cd43fbac488f56041e38a5010e2656b10 (diff) | |
download | xine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.gz xine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.bz2 |
big event cleanup: one single mechanism is now used for all communications between gui, plugins and the xine engine; code cleanup
CVS patchset: 837
CVS date: 2001/10/20 02:01:51
Diffstat (limited to 'src/demuxers/demux_qt.c')
-rw-r--r-- | src/demuxers/demux_qt.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 1c4cd67d1..0380d142b 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_qt.c,v 1.7 2001/10/17 20:33:09 guenter Exp $ + * $Id: demux_qt.c,v 1.8 2001/10/20 02:01:51 guenter Exp $ * * demultiplexer for quicktime streams, based on: * @@ -4206,10 +4206,7 @@ static int demux_qt_detect_compressors (demux_qt_t *this) { static void demux_qt_start (demux_plugin_t *this_gen, fifo_buffer_t *video_fifo, fifo_buffer_t *audio_fifo, - off_t start_pos, int start_time, - gui_get_next_mrl_cb_t next_mrl_cb, - gui_branched_cb_t branched_cb) -{ + off_t start_pos, int start_time) { demux_qt_t *this = (demux_qt_t *) this_gen; buf_element_t *buf; @@ -4382,7 +4379,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) { demux_qt_t *this; config_values_t *config; - if (iface != 4) { + if (iface != 5) { printf( "demux_qt: plugin doesn't support plugin API version %d.\n" "demux_qt: this means there's a version mismatch between xine and this " "demux_qt: demuxer plugin.\nInstalling current demux plugins should help.\n", |