From 1e77df15ddee87c1a46c5521c0e7214e70600cac Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 18 Jul 2008 11:39:41 +0000 Subject: [PATCH] Make bitstream_* fields unsigned. Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/flac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/flac.c b/libavcodec/flac.c index 5745210..2d65c11 100644 --- a/libavcodec/flac.c +++ b/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; -- 2.7.4