From fcc01e646b9e4a752c8cbfd10838229bf27c155c Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Sat, 25 Apr 2009 18:43:30 +0000 Subject: [PATCH] Set the type of size in COOKSubpacket to unsigned Originally committed as revision 18691 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;