diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-08-01 03:56:31 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-08-01 03:56:31 +0000 |
commit | 0ba07a109bf3dad4feca7d4ab4a58af2ca9120d8 (patch) | |
tree | 0e792cb907deb0cb1f013662d1a60b543d88e32a /src/demuxers/demux_film.c | |
parent | da6b4de729aa7220c844ea9fa8ba4c887fd3cb0f (diff) | |
download | xine-lib-0ba07a109bf3dad4feca7d4ab4a58af2ca9120d8.tar.gz xine-lib-0ba07a109bf3dad4feca7d4ab4a58af2ca9120d8.tar.bz2 |
always return DEMUX_OK at the very end of the _start() function
CVS patchset: 2376
CVS date: 2002/08/01 03:56:31
Diffstat (limited to 'src/demuxers/demux_film.c')
-rw-r--r-- | src/demuxers/demux_film.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/demuxers/demux_film.c b/src/demuxers/demux_film.c index f4aa0fd92..fc4e2ce5b 100644 --- a/src/demuxers/demux_film.c +++ b/src/demuxers/demux_film.c @@ -21,7 +21,7 @@ * For more information on the FILM file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_film.c,v 1.19 2002/07/17 18:17:48 miguelfreitas Exp $ + * $Id: demux_film.c,v 1.20 2002/08/01 03:56:31 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -558,7 +558,6 @@ static int demux_film_start (demux_plugin_t *this_gen, demux_film_t *this = (demux_film_t *) this_gen; buf_element_t *buf; int err; - int status; pthread_mutex_lock(&this->mutex); @@ -652,10 +651,9 @@ static int demux_film_start (demux_plugin_t *this_gen, } } - status = this->status; pthread_mutex_unlock(&this->mutex); - return status; + return DEMUX_OK; } static int demux_film_seek (demux_plugin_t *this_gen, |