diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-30 20:06:16 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-30 20:06:16 +0000 |
commit | 2f922b51c9eeffbc517b95c2c4de7c68087c57f7 (patch) | |
tree | 17fd08f60daddd1cfd3d701a2b3e524a17c98326 | |
parent | 7eef010d0a780cb7227bf74c2247bf3c08419131 (diff) | |
download | xine-lib-2f922b51c9eeffbc517b95c2c4de7c68087c57f7.tar.gz xine-lib-2f922b51c9eeffbc517b95c2c4de7c68087c57f7.tar.bz2 |
biBitCount information not needed for cinepak movies
CVS patchset: 1820
CVS date: 2002/04/30 20:06:16
-rw-r--r-- | src/libxinevdec/cinepak.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libxinevdec/cinepak.c b/src/libxinevdec/cinepak.c index d472ef4d6..35506b40d 100644 --- a/src/libxinevdec/cinepak.c +++ b/src/libxinevdec/cinepak.c @@ -22,7 +22,7 @@ * based on overview of Cinepak algorithm and example decoder * by Tim Ferguson: http://www.csse.monash.edu.au/~timf/ * - * $Id: cinepak.c,v 1.1 2002/04/30 08:28:10 esnel Exp $ + * $Id: cinepak.c,v 1.2 2002/04/30 20:06:16 esnel Exp $ */ #include <stdlib.h> @@ -78,7 +78,6 @@ typedef struct cvid_decoder_s { long biWidth; long biHeight; - short biBitCount; uint8_t *img_buffer; cvid_strip_t strips[MAX_STRIPS]; |