From dc0ad40de2b0d6995eb842e56b22f9096bd539ff Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sat, 28 May 2011 14:40:16 -0400 Subject: ac3dsp: fix loop condition in ac3_update_bap_counts_c() --- libavcodec/ac3dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index de58f3ab26..8ce5f8d2c5 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c @@ -131,7 +131,7 @@ static void ac3_bit_alloc_calc_bap_c(int16_t *mask, int16_t *psd, static void ac3_update_bap_counts_c(uint16_t mant_cnt[16], uint8_t *bap, int len) { - while (len-- >= 0) + while (len-- > 0) mant_cnt[bap[len]]++; } -- cgit v1.2.3