diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 16:01:06 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 16:01:06 +0000 |
commit | 3572e2b2dca2060cef536a6b2f9e038994f4eb94 (patch) | |
tree | 82c9705cce7a0382388f0a0f7d38bba38fac43c1 /src | |
parent | 0e7d3d993b4cc1db5e498fa6779386a771f08c97 (diff) | |
download | xine-lib-3572e2b2dca2060cef536a6b2f9e038994f4eb94.tar.gz xine-lib-3572e2b2dca2060cef536a6b2f9e038994f4eb94.tar.bz2 |
unused variable -> hint to Mike: still needed?
CVS patchset: 2741
CVS date: 2002/09/22 16:01:06
Diffstat (limited to 'src')
-rw-r--r-- | src/libxinevdec/msvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libxinevdec/msvc.c b/src/libxinevdec/msvc.c index 352cb3ce6..592172e22 100644 --- a/src/libxinevdec/msvc.c +++ b/src/libxinevdec/msvc.c @@ -22,7 +22,7 @@ * based on overview of Microsoft Video-1 algorithm * by Mike Melanson: http://www.pcisys.net/~melanson/codecs/video1.txt * - * $Id: msvc.c,v 1.11 2002/09/05 22:19:03 mroi Exp $ + * $Id: msvc.c,v 1.12 2002/09/22 16:01:06 mroi Exp $ */ #include <stdlib.h> @@ -261,7 +261,7 @@ static void msvc_decode_data (video_decoder_t *this_gen, buf_element_t *buf) { if (buf->decoder_flags & BUF_FLAG_FRAME_END) { vo_frame_t *img; - int n = (this->biWidth * this->biHeight); + /* unused variable: int n = (this->biWidth * this->biHeight); */ cram_decode_frame (this, this->buf, this->size); |