From f76958faa45ece3eb82dfed256ddf0c3badefeef Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Sat, 11 Jan 2003 13:10:13 +0000 Subject: whoups, thats codec_initialized, not decoder_ok in this one CVS patchset: 3872 CVS date: 2003/01/11 13:10:13 --- src/libw32dll/qt_decoder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libw32dll/qt_decoder.c b/src/libw32dll/qt_decoder.c index 07c3aa22d..b78b6a0e9 100644 --- a/src/libw32dll/qt_decoder.c +++ b/src/libw32dll/qt_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: qt_decoder.c,v 1.10 2003/01/11 05:26:55 guenter Exp $ + * $Id: qt_decoder.c,v 1.11 2003/01/11 13:10:13 guenter Exp $ * * quicktime video/audio decoder plugin, using win32 dlls * most of this code comes directly from MPlayer @@ -1098,9 +1098,9 @@ static void qtv_dispose (video_decoder_t *this_gen) { qtv_decoder_t *this = (qtv_decoder_t *) this_gen; - if (this->decoder_ok) { + if (this->codec_initialized) { this->stream->video_out->close(this->stream->video_out, this->stream); - this->decoder_ok = 0; + this->codec_initialized = 0; } #ifdef LOG -- cgit v1.2.3