diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-06 09:24:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-06 09:24:59 +0200 |
commit | e6b9903d8275d29569aef41f6848800b9af8eccf (patch) | |
tree | 1aa039efccec351bc42c15d1b56f6c5b1015c125 | |
parent | 9c1619b5fe4658bb44d26531634433545a7d4713 (diff) | |
download | ffmpeg-e6b9903d8275d29569aef41f6848800b9af8eccf.tar.gz |
shorten: fix cmd type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/shorten.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index 66261d2a1a..b47e1a69f1 100644 --- a/libavcodec/shorten.c +++ b/libavcodec/shorten.c @@ -466,7 +466,7 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data, s->cur_chan = 0; while (s->cur_chan < s->channels) { - int cmd; + unsigned int cmd; int len; if (get_bits_left(&s->gb) < 3+FNSIZE) { |