Make bitstream_* fields unsigned.

Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-07-18 11:39:41 +00:00
parent cfcd396bae
commit 1e77df15dd

View File

@ -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;