diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-05-11 02:51:07 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-05-11 02:51:07 +0000 |
commit | 463d086bb573e7544ec11efca847ca8e7989a4ba (patch) | |
tree | f23ad7cf699d1d7adf2ec96c6f28571336e7f8d2 /libavcodec/vp3data.h | |
parent | 892fc83e88a20f9543c6c5be3626712be7a2e6f2 (diff) | |
download | ffmpeg-463d086bb573e7544ec11efca847ca8e7989a4ba.tar.gz |
get those permutations straight
Originally committed as revision 1850 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3data.h')
-rw-r--r-- | libavcodec/vp3data.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |