From 463d086bb573e7544ec11efca847ca8e7989a4ba Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Sun, 11 May 2003 02:51:07 +0000 Subject: get those permutations straight Originally committed as revision 1850 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp3data.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/vp3data.h') diff --git a/libavcodec/vp3data.h b/libavcodec/vp3data.h index 016b4e25c5..0021049fcd 100644 --- a/libavcodec/vp3data.h +++ b/libavcodec/vp3data.h @@ -60,7 +60,7 @@ static uint32_t vp31_quality_threshold[64] = }; /* table used to convert natural order <-> zigzag order */ -static const int dequant_index[64] = +static const int dezigzag_index[64] = { 0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5, 12, 19, 26, 33, 40, 48, 41, 34, @@ -71,8 +71,8 @@ static const int dequant_index[64] = 53, 60, 61, 54, 47, 55, 62, 63 }; -/* inverse of dequant index */ -static int quant_index[64]; +/* inverse of dezigzag index */ +static int zigzag_index[64]; static const uint16_t dc_bias[16][32][2] = { { /* DC bias table 0 */ -- cgit v1.2.3