projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfcd396
)
Make bitstream_* fields unsigned.
author
Michael Niedermayer
<michaelni@gmx.at>
Fri, 18 Jul 2008 11:39:41 +0000
(11:39 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Fri, 18 Jul 2008 11:39:41 +0000
(11:39 +0000)
Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/flac.c
patch
|
blob
|
history
diff --git
a/libavcodec/flac.c
b/libavcodec/flac.c
index
5745210
..
2d65c11
100644
(file)
--- 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;