summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_eawve.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_eawve.c')
-rw-r--r--src/demuxers/demux_eawve.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/demuxers/demux_eawve.c b/src/demuxers/demux_eawve.c
index 2a3c1fd39..26a70da8b 100644
--- a/src/demuxers/demux_eawve.c
+++ b/src/demuxers/demux_eawve.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_eawve.c,v 1.23 2003/11/13 15:23:01 andruil Exp $
+ * $Id: demux_eawve.c,v 1.24 2003/11/15 14:00:42 miguelfreitas Exp $
*
* demux_eawve.c, Demuxer plugin for Electronic Arts' WVE file format
*
@@ -307,7 +307,7 @@ static void demux_eawve_send_headers(demux_plugin_t *this_gen){
}
}
-static int demux_eawve_seek(demux_eawve_t *this, off_t start_pos, int start_time){
+static int demux_eawve_seek(demux_eawve_t *this, off_t start_pos, int start_time, int playing){
if (!this->thread_running) {
_x_demux_control_newpts(this->stream, 0, 0);
@@ -358,8 +358,6 @@ static demux_plugin_t* open_plugin(demux_class_t *class_gen, xine_stream_t *stre
this->demux_plugin.dispose = (void*)demux_eawve_dispose;
this->demux_plugin.get_status = (void*)demux_eawve_get_status;
this->demux_plugin.get_stream_length = (void*)demux_eawve_get_stream_length;
- this->demux_plugin.get_video_frame = NULL;
- this->demux_plugin.got_video_frame_cb= NULL;
this->demux_plugin.get_capabilities = demux_eawve_get_capabilities;
this->demux_plugin.get_optional_data = demux_eawve_get_optional_data;
this->demux_plugin.demux_class = class_gen;