diff flac.c @ 7303:f0fc58bb9780 libavcodec

Make bitstream_* fields unsigned.
author michael
date Fri, 18 Jul 2008 11:39:41 +0000
parents 3d8cf33fbafb
children ac25a6f7147e
line wrap: on
line diff
--- a/flac.c	Fri Jul 18 11:38:53 2008 +0000
+++ b/flac.c	Fri Jul 18 11:39:41 2008 +0000
@@ -68,8 +68,8 @@
 
     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;