diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-03-12 15:30:18 -0800 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-03-12 15:36:15 -0800 |
commit | 81a131312d0b56808e3f794cfd5d54ca6e13156f (patch) | |
tree | d4fb6500d77a3a1c3f5c111dc7acb177a3e0d43a | |
parent | 0215006ab75be1f49fa8eacf2c6d3c1bd22edfc7 (diff) | |
download | ffmpeg-81a131312d0b56808e3f794cfd5d54ca6e13156f.tar.gz |
VP8: fix other function declaration
Was missed in 3efbe137.
-rw-r--r-- | libavcodec/vp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |