diff options
Diffstat (limited to 'src/demuxers/demux_nsf.c')
-rw-r--r-- | src/demuxers/demux_nsf.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/demuxers/demux_nsf.c b/src/demuxers/demux_nsf.c index ad80a694e..f632b37ff 100644 --- a/src/demuxers/demux_nsf.c +++ b/src/demuxers/demux_nsf.c @@ -30,7 +30,7 @@ * For more information regarding the NSF format, visit: * http://www.tripoint.org/kevtris/nes/nsfspec.txt * - * $Id: demux_nsf.c,v 1.17 2003/11/11 18:44:52 f1rmb Exp $ + * $Id: demux_nsf.c,v 1.18 2003/11/15 14:00:53 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -235,12 +235,12 @@ static void demux_nsf_send_headers(demux_plugin_t *this_gen) { } static int demux_nsf_seek (demux_plugin_t *this_gen, - off_t start_pos, int start_time) { + off_t start_pos, int start_time, int playing) { demux_nsf_t *this = (demux_nsf_t *) this_gen; /* if thread is not running, initialize demuxer */ - if( !this->stream->demux_thread_running ) { + if( !playing ) { /* send new pts */ _x_demux_control_newpts(this->stream, 0, 0); @@ -313,8 +313,6 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str this->demux_plugin.dispose = demux_nsf_dispose; this->demux_plugin.get_status = demux_nsf_get_status; this->demux_plugin.get_stream_length = demux_nsf_get_stream_length; - this->demux_plugin.get_video_frame = NULL; - this->demux_plugin.got_video_frame_cb= NULL; this->demux_plugin.get_capabilities = demux_nsf_get_capabilities; this->demux_plugin.get_optional_data = demux_nsf_get_optional_data; this->demux_plugin.demux_class = class_gen; |