summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Larsson <banan@ludd.ltu.se>2009-04-25 18:43:30 +0000
committerBenjamin Larsson <banan@ludd.ltu.se>2009-04-25 18:43:30 +0000
commitfcc01e646b9e4a752c8cbfd10838229bf27c155c (patch)
treef8b899f0a796d84e45e00f11d92d74828f8be730
parent75801da5805fc26b4f47270425896ec6f41ea07f (diff)
Set the type of size in COOKSubpacket to unsigned
Originally committed as revision 18691 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/cook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c
index 99d1bdb8c6..df85c7d431 100644
--- a/libavcodec/cook.c
+++ b/libavcodec/cook.c
@@ -72,7 +72,7 @@ typedef struct {
typedef struct {
int ch_idx;
- int size;
+ unsigned int size;
int num_channels;
int cookversion;
int samples_per_frame;