comparison mpeg4data.h @ 312:8cf5507e6ca5 libavcodec

mpeg4 mpeg quantizer support
author michaelni
date Sun, 07 Apr 2002 02:03:32 +0000
parents 764aeec1320e
children c56b45669214
comparison
equal deleted inserted replaced
311:ac677a84d5df 312:8cf5507e6ca5
120 {0, 0}, 120 {0, 0},
121 {0, 0}, 121 {0, 0},
122 {0, 0}, 122 {0, 0},
123 {0, 0}, 123 {0, 0},
124 }; 124 };
125
126 /* these matrixes will be permuted for the idct */
127 INT16 ff_mpeg4_default_intra_matrix[64] = {
128 8, 17, 18, 19, 21, 23, 25, 27,
129 17, 18, 19, 21, 23, 25, 27, 28,
130 20, 21, 22, 23, 24, 26, 28, 30,
131 21, 22, 23, 24, 26, 28, 30, 32,
132 22, 23, 24, 26, 28, 30, 32, 35,
133 23, 24, 26, 28, 30, 32, 35, 38,
134 25, 26, 28, 30, 32, 35, 38, 41,
135 27, 28, 30, 32, 35, 38, 41, 45,
136 };
137
138 INT16 ff_mpeg4_default_non_intra_matrix[64] = {
139 16, 17, 18, 19, 20, 21, 22, 23,
140 17, 18, 19, 20, 21, 22, 23, 24,
141 18, 19, 20, 21, 22, 23, 24, 25,
142 19, 20, 21, 22, 23, 24, 26, 27,
143 20, 21, 22, 23, 25, 26, 27, 28,
144 21, 22, 23, 24, 26, 27, 28, 30,
145 22, 23, 24, 26, 27, 28, 30, 31,
146 23, 24, 25, 27, 28, 30, 31, 33,
147 };
148