mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Make bitstream_* fields unsigned.
Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
cfcd396bae
commit
1e77df15dd
@ -68,8 +68,8 @@ typedef struct FLACContext {
|
|||||||
|
|
||||||
int32_t *decoded[MAX_CHANNELS];
|
int32_t *decoded[MAX_CHANNELS];
|
||||||
uint8_t *bitstream;
|
uint8_t *bitstream;
|
||||||
int bitstream_size;
|
unsigned int bitstream_size;
|
||||||
int bitstream_index;
|
unsigned int bitstream_index;
|
||||||
unsigned int allocated_bitstream_size;
|
unsigned int allocated_bitstream_size;
|
||||||
} FLACContext;
|
} FLACContext;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user