diff options
Diffstat (limited to 'src/demuxers/demux_idcin.c')
-rw-r--r-- | src/demuxers/demux_idcin.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/demuxers/demux_idcin.c b/src/demuxers/demux_idcin.c index 3a7f57245..bd7c10443 100644 --- a/src/demuxers/demux_idcin.c +++ b/src/demuxers/demux_idcin.c @@ -65,7 +65,7 @@ * - if any bytes exceed 63, do not shift the bytes at all before * transmitting them to the video decoder * - * $Id: demux_idcin.c,v 1.46 2003/11/11 18:44:52 f1rmb Exp $ + * $Id: demux_idcin.c,v 1.47 2003/11/15 14:00:46 miguelfreitas Exp $ */ #ifdef HAVE_CONFIG_H @@ -407,11 +407,11 @@ static void demux_idcin_send_headers(demux_plugin_t *this_gen) { } } -static int demux_idcin_seek (demux_plugin_t *this_gen, off_t start_pos, int start_time) { +static int demux_idcin_seek (demux_plugin_t *this_gen, off_t start_pos, int start_time, int playing) { demux_idcin_t *this = (demux_idcin_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); @@ -468,8 +468,6 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str this->demux_plugin.dispose = demux_idcin_dispose; this->demux_plugin.get_status = demux_idcin_get_status; this->demux_plugin.get_stream_length = demux_idcin_get_stream_length; - this->demux_plugin.get_video_frame = NULL; - this->demux_plugin.got_video_frame_cb= NULL; this->demux_plugin.get_capabilities = demux_idcin_get_capabilities; this->demux_plugin.get_optional_data = demux_idcin_get_optional_data; this->demux_plugin.demux_class = class_gen; |