comparison flac.c @ 7303:f0fc58bb9780 libavcodec

Make bitstream_* fields unsigned.
author michael
date Fri, 18 Jul 2008 11:39:41 +0000
parents 3d8cf33fbafb
children ac25a6f7147e
comparison
equal deleted inserted replaced
7302:3d8cf33fbafb 7303:f0fc58bb9780
66 int curr_bps; 66 int curr_bps;
67 enum decorrelation_type decorrelation; 67 enum decorrelation_type decorrelation;
68 68
69 int32_t *decoded[MAX_CHANNELS]; 69 int32_t *decoded[MAX_CHANNELS];
70 uint8_t *bitstream; 70 uint8_t *bitstream;
71 int bitstream_size; 71 unsigned int bitstream_size;
72 int bitstream_index; 72 unsigned int bitstream_index;
73 unsigned int allocated_bitstream_size; 73 unsigned int allocated_bitstream_size;
74 } FLACContext; 74 } FLACContext;
75 75
76 #define METADATA_TYPE_STREAMINFO 0 76 #define METADATA_TYPE_STREAMINFO 0
77 77