diff options
Diffstat (limited to 'src/demuxers/demux_image.c')
-rw-r--r-- | src/demuxers/demux_image.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/demuxers/demux_image.c b/src/demuxers/demux_image.c index 0ebbe6c03..3b238b1dd 100644 --- a/src/demuxers/demux_image.c +++ b/src/demuxers/demux_image.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_image.c,v 1.9 2003/11/11 18:44:52 f1rmb Exp $ + * $Id: demux_image.c,v 1.10 2003/11/15 14:00:47 miguelfreitas Exp $ * * image dummy demultiplexer */ @@ -97,7 +97,7 @@ static void demux_image_send_headers (demux_plugin_t *this_gen) { } static int demux_image_seek (demux_plugin_t *this_gen, - off_t start_pos, int start_time) { + off_t start_pos, int start_time, int playing) { demux_image_t *this = (demux_image_t *) this_gen; @@ -172,8 +172,6 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, this->demux_plugin.dispose = demux_image_dispose; this->demux_plugin.get_status = demux_image_get_status; this->demux_plugin.get_stream_length = demux_image_get_stream_length; - this->demux_plugin.get_video_frame = NULL; - this->demux_plugin.got_video_frame_cb= NULL; this->demux_plugin.get_capabilities = demux_image_get_capabilities; this->demux_plugin.get_optional_data = demux_image_get_optional_data; this->demux_plugin.demux_class = class_gen; @@ -233,6 +231,6 @@ static void *init_class (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_DEMUX, 22, "image", XINE_VERSION_CODE, NULL, init_class }, + { PLUGIN_DEMUX, 23, "image", XINE_VERSION_CODE, NULL, init_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |