diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-08-13 23:51:33 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2006-08-13 23:51:33 +0000 |
commit | 41608ff8d9949b407b0ead03144e2338f95135cf (patch) | |
tree | 80ccdf7839b21fe33b3cd7be2ba5c8fd5adda819 /src/demuxers | |
parent | 52413f7f6973121ef22a5e262c2395ed9da7defc (diff) | |
download | xine-lib-41608ff8d9949b407b0ead03144e2338f95135cf.tar.gz xine-lib-41608ff8d9949b407b0ead03144e2338f95135cf.tar.bz2 |
move image presentation support to xine-lib
CVS patchset: 8180
CVS date: 2006/08/13 23:51:33
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/demux_image.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/demuxers/demux_image.c b/src/demuxers/demux_image.c index d2a627f77..727d80a29 100644 --- a/src/demuxers/demux_image.c +++ b/src/demuxers/demux_image.c @@ -19,7 +19,7 @@ */ /* - * $Id: demux_image.c,v 1.24 2006/07/10 22:08:13 dgp85 Exp $ + * $Id: demux_image.c,v 1.25 2006/08/13 23:51:33 miguelfreitas Exp $ * * image dummy demultiplexer */ @@ -120,6 +120,13 @@ static int demux_image_seek (demux_plugin_t *this_gen, demux_image_t *this = (demux_image_t *) this_gen; + /* delay finished event for presentation mode. + * -1 => wait forever + * 0 => do not wait + * xx => wait xx/10 seconds + */ + xine_set_param (this->stream, XINE_PARAM_DELAY_FINISHED_EVENT, -1); + return this->status; } |