diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-23 00:34:59 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-04-23 00:34:59 +0000 |
commit | 2d61e7f5cd4f5add1aaab63fe54a17a416fe275a (patch) | |
tree | b3348bc8a5d92ef84e4433bad8d897716c0c31d9 /src/xine-engine/video_decoder.c | |
parent | 6f114fb0e414ba8fab9627558d7b299436fece19 (diff) | |
download | xine-lib-2d61e7f5cd4f5add1aaab63fe54a17a416fe275a.tar.gz xine-lib-2d61e7f5cd4f5add1aaab63fe54a17a416fe275a.tar.bz2 |
further decoder plugin fixes (mpeg2)
CVS patchset: 16
CVS date: 2001/04/23 00:34:59
Diffstat (limited to 'src/xine-engine/video_decoder.c')
-rw-r--r-- | src/xine-engine/video_decoder.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index dab46d628..3d3632b1e 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_decoder.c,v 1.4 2001/04/22 02:42:49 guenter Exp $ + * $Id: video_decoder.c,v 1.5 2001/04/23 00:34:59 guenter Exp $ * */ @@ -43,7 +43,7 @@ void *video_decoder_loop (void *this_gen) { switch (buf->type) { case BUF_CONTROL_START: if (this->video_cur_decoder) { - this->video_cur_decoder->close (); + this->video_cur_decoder->close (this->video_cur_decoder); this->video_cur_decoder = NULL; } @@ -62,7 +62,7 @@ void *video_decoder_loop (void *this_gen) { if (this->video_cur_decoder != decoder) { if (this->video_cur_decoder) - this->video_cur_decoder->close (); + this->video_cur_decoder->close (this->video_cur_decoder); this->video_cur_decoder = decoder; this->video_cur_decoder->init (this->video_cur_decoder, this->video_out); @@ -76,7 +76,7 @@ void *video_decoder_loop (void *this_gen) { case BUF_CONTROL_END: if (this->video_cur_decoder) { - this->video_cur_decoder->close (); + this->video_cur_decoder->close (this->video_cur_decoder); this->video_cur_decoder = NULL; } @@ -94,7 +94,7 @@ void *video_decoder_loop (void *this_gen) { case BUF_CONTROL_QUIT: if (this->video_cur_decoder) { - this->video_cur_decoder->close (); + this->video_cur_decoder->close (this->video_cur_decoder); this->video_cur_decoder = NULL; } running = 0; |