diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2009-04-25 18:43:30 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2009-04-25 18:43:30 +0000 |
commit | fcc01e646b9e4a752c8cbfd10838229bf27c155c (patch) | |
tree | f8b899f0a796d84e45e00f11d92d74828f8be730 /libavcodec/cook.c | |
parent | 75801da5805fc26b4f47270425896ec6f41ea07f (diff) | |
download | ffmpeg-fcc01e646b9e4a752c8cbfd10838229bf27c155c.tar.gz |
Set the type of size in COOKSubpacket to unsigned
Originally committed as revision 18691 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cook.c')
-rw-r--r-- | libavcodec/cook.c | 2 |
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; |