diff options
author | Jason Garrett-Glaser <jason@x264.com> | 2011-03-09 19:53:52 -0800 |
---|---|---|
committer | Jason Garrett-Glaser <jason@x264.com> | 2011-03-12 03:41:39 -0800 |
commit | 3efbe137396d39e225315a9d1e4bf82d1a9c92e5 (patch) | |
tree | 780608e6a72d99bf3f0c6b371004402fb1610469 /libavcodec/vp8.c | |
parent | b1d2f812c9c581d38fe7c93a4ea24430fedc89f1 (diff) | |
download | ffmpeg-3efbe137396d39e225315a9d1e4bf82d1a9c92e5.tar.gz |
VP8: fix function declaration
Diffstat (limited to 'libavcodec/vp8.c')
-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 14d3df528b..de077c8886 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -640,7 +640,7 @@ void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, uint8_ * otherwise, the index of the last coeff decoded plus one */ static int decode_block_coeffs_internal(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, uint8_t *token_prob, int16_t qmul[2]) { goto skip_eob; |