diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-18 11:39:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-18 11:39:41 +0000 |
commit | 1e77df15ddee87c1a46c5521c0e7214e70600cac (patch) | |
tree | 94956634856ff868cd0fe13e95bacc9f96804cdb | |
parent | cfcd396bae11de94ad4a729361bc9b7b05f04c27 (diff) | |
download | ffmpeg-1e77df15ddee87c1a46c5521c0e7214e70600cac.tar.gz |
Make bitstream_* fields unsigned.
Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/flac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c index 5745210950..2d65c11922 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; |