diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-01-11 13:10:13 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-01-11 13:10:13 +0000 |
commit | f76958faa45ece3eb82dfed256ddf0c3badefeef (patch) | |
tree | af8b4ad82b66e8fa52964c69cdd3b31fc6e1bffa | |
parent | 1be50d15e9eb8314d9f4027eb257ccc63326174c (diff) | |
download | xine-lib-f76958faa45ece3eb82dfed256ddf0c3badefeef.tar.gz xine-lib-f76958faa45ece3eb82dfed256ddf0c3badefeef.tar.bz2 |
whoups, thats codec_initialized, not decoder_ok in this one
CVS patchset: 3872
CVS date: 2003/01/11 13:10:13
-rw-r--r-- | src/libw32dll/qt_decoder.c | 6 |
1 files 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 |