From 81a131312d0b56808e3f794cfd5d54ca6e13156f Mon Sep 17 00:00:00 2001 From: Jason Garrett-Glaser Date: Sat, 12 Mar 2011 15:30:18 -0800 Subject: [PATCH] VP8: fix other function declaration Was missed in 3efbe137. --- libavcodec/vp8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 42f401d2b1..c067f4cf2f 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -695,7 +695,7 @@ skip_eob: static av_always_inline int decode_block_coeffs(VP56RangeCoder *c, DCTELEM block[16], - uint8_t probs[8][3][NUM_DCT_TOKENS-1], + uint8_t probs[16][3][NUM_DCT_TOKENS-1], int i, int zero_nhood, int16_t qmul[2]) { uint8_t *token_prob = probs[i][zero_nhood];