Make bitstream_* fields unsigned.

Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Michael Niedermayer 17 years ago
parent cfcd396bae
commit 1e77df15dd
  1. 4
      libavcodec/flac.c

@ -68,8 +68,8 @@ typedef struct FLACContext {
int32_t *decoded[MAX_CHANNELS];
uint8_t *bitstream;
int bitstream_size;
int bitstream_index;
unsigned int bitstream_size;
unsigned int bitstream_index;
unsigned int allocated_bitstream_size;
} FLACContext;

Loading…
Cancel
Save