summaryrefslogtreecommitdiff
path: root/libavcodec/shorten.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-28 14:25:19 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-28 14:25:19 +0100
commit1146bbc5a630db5169e51a9185292f88b1de6933 (patch)
tree0fb2b2e736b36a2dac5e06d0b85ebdaf802c59dd /libavcodec/shorten.c
parentbb2f4ae434223e99f131100f4bc71762b79eb6c5 (diff)
parent834e9fb0563956630e4d9bf61c9242ad134334da (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: x86: hpeldsp: Fix a typo, use the right register shorten: fix array subscript is below array bounds warning Conflicts: libavcodec/shorten.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/shorten.c')
-rw-r--r--libavcodec/shorten.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c
index 8e66928db5..804dac7558 100644
--- a/libavcodec/shorten.c
+++ b/libavcodec/shorten.c
@@ -467,7 +467,7 @@ static int shorten_decode_frame(AVCodecContext *avctx, void *data,
s->cur_chan = 0;
while (s->cur_chan < s->channels) {
- unsigned int cmd;
+ unsigned cmd;
int len;
if (get_bits_left(&s->gb) < 3+FNSIZE) {