Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: third_party/libwebp/tree.c

Issue 3614010: Add WebP library to Chromium... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/libwebp/quant.c ('k') | third_party/libwebp/vp8.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2010 Google Inc.
2 //
3 // This code is licensed under the same terms as WebM:
4 // Software License Agreement: http://www.webmproject.org/license/software/
5 // Additional IP Rights Grant: http://www.webmproject.org/license/additional/
6 // -----------------------------------------------------------------------------
7 //
8 // Coding trees and probas
9 //
10 // Author: Skal (pascal.massimino@gmail.com)
11
12 #include <stdio.h>
13 #include "vp8i.h"
14 #define USE_GENERIC_TREE
15
16 #if defined(__cplusplus) || defined(c_plusplus)
17 extern "C" {
18 #endif
19
20 #ifdef USE_GENERIC_TREE
21 static const int8_t kYModesIntra4[18] = {
22 -B_DC_PRED, 1,
23 -B_TM_PRED, 2,
24 -B_VE_PRED, 3,
25 4, 6,
26 -B_HE_PRED, 5,
27 -B_RD_PRED, -B_VR_PRED,
28 -B_LD_PRED, 7,
29 -B_VL_PRED, 8,
30 -B_HD_PRED, -B_HU_PRED
31 };
32 #endif
33
34 #ifndef ONLY_KEYFRAME_CODE
35 static const int8_t kYModesInter[8] = {
36 -DC_PRED, 1,
37 2, 3,
38 -V_PRED, -H_PRED,
39 -TM_PRED, -B_PRED
40 };
41
42 static const int8_t kMBSplit[6] = {
43 -3, 1,
44 -2, 2,
45 -0, -1
46 };
47
48 static const int8_t kMVRef[8] = {
49 -ZEROMV, 1,
50 -NEARESTMV, 2,
51 -NEARMV, 3,
52 -NEWMV, -SPLITMV
53 };
54
55 static const int8_t kMVRef4[6] = {
56 -LEFT4, 1
57 -ABOVE4, 2
58 -ZERO4, -NEW4
59 };
60 #endif
61
62 //-----------------------------------------------------------------------------
63 // Default probabilities
64
65 // Inter
66 #ifndef ONLY_KEYFRAME_CODE
67 static const uint8_t kYModeProbaInter0[4] = { 112, 86, 140, 37 };
68 static const uint8_t kUVModeProbaInter0[3] = { 162, 101, 204 };
69 static const uint8_t kMVProba0[2][NUM_MV_PROBAS] = {
70 { 162, 128, 225, 146, 172, 147, 214, 39,
71 156, 128, 129, 132, 75, 145, 178, 206,
72 239, 254, 254 },
73 { 164, 128, 204, 170, 119, 235, 140, 230,
74 228, 128, 130, 130, 74, 148, 180, 203,
75 236, 254, 254 }
76 };
77 #endif
78
79 // Paragraph 13.5
80 static const uint8_t
81 CoeffsProba0[NUM_TYPES][NUM_BANDS][NUM_CTX][NUM_PROBAS] = {
82 // genereated using vp8_default_coef_probs() in entropy.c:129
83 { { { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 },
84 { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 },
85 { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 }
86 },
87 { { 253, 136, 254, 255, 228, 219, 128, 128, 128, 128, 128 },
88 { 189, 129, 242, 255, 227, 213, 255, 219, 128, 128, 128 },
89 { 106, 126, 227, 252, 214, 209, 255, 255, 128, 128, 128 }
90 },
91 { { 1, 98, 248, 255, 236, 226, 255, 255, 128, 128, 128 },
92 { 181, 133, 238, 254, 221, 234, 255, 154, 128, 128, 128 },
93 { 78, 134, 202, 247, 198, 180, 255, 219, 128, 128, 128 },
94 },
95 { { 1, 185, 249, 255, 243, 255, 128, 128, 128, 128, 128 },
96 { 184, 150, 247, 255, 236, 224, 128, 128, 128, 128, 128 },
97 { 77, 110, 216, 255, 236, 230, 128, 128, 128, 128, 128 },
98 },
99 { { 1, 101, 251, 255, 241, 255, 128, 128, 128, 128, 128 },
100 { 170, 139, 241, 252, 236, 209, 255, 255, 128, 128, 128 },
101 { 37, 116, 196, 243, 228, 255, 255, 255, 128, 128, 128 }
102 },
103 { { 1, 204, 254, 255, 245, 255, 128, 128, 128, 128, 128 },
104 { 207, 160, 250, 255, 238, 128, 128, 128, 128, 128, 128 },
105 { 102, 103, 231, 255, 211, 171, 128, 128, 128, 128, 128 }
106 },
107 { { 1, 152, 252, 255, 240, 255, 128, 128, 128, 128, 128 },
108 { 177, 135, 243, 255, 234, 225, 128, 128, 128, 128, 128 },
109 { 80, 129, 211, 255, 194, 224, 128, 128, 128, 128, 128 }
110 },
111 { { 1, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
112 { 246, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
113 { 255, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 }
114 }
115 },
116 { { { 198, 35, 237, 223, 193, 187, 162, 160, 145, 155, 62 },
117 { 131, 45, 198, 221, 172, 176, 220, 157, 252, 221, 1 },
118 { 68, 47, 146, 208, 149, 167, 221, 162, 255, 223, 128 }
119 },
120 { { 1, 149, 241, 255, 221, 224, 255, 255, 128, 128, 128 },
121 { 184, 141, 234, 253, 222, 220, 255, 199, 128, 128, 128 },
122 { 81, 99, 181, 242, 176, 190, 249, 202, 255, 255, 128 }
123 },
124 { { 1, 129, 232, 253, 214, 197, 242, 196, 255, 255, 128 },
125 { 99, 121, 210, 250, 201, 198, 255, 202, 128, 128, 128 },
126 { 23, 91, 163, 242, 170, 187, 247, 210, 255, 255, 128 }
127 },
128 { { 1, 200, 246, 255, 234, 255, 128, 128, 128, 128, 128 },
129 { 109, 178, 241, 255, 231, 245, 255, 255, 128, 128, 128 },
130 { 44, 130, 201, 253, 205, 192, 255, 255, 128, 128, 128 }
131 },
132 { { 1, 132, 239, 251, 219, 209, 255, 165, 128, 128, 128 },
133 { 94, 136, 225, 251, 218, 190, 255, 255, 128, 128, 128 },
134 { 22, 100, 174, 245, 186, 161, 255, 199, 128, 128, 128 }
135 },
136 { { 1, 182, 249, 255, 232, 235, 128, 128, 128, 128, 128 },
137 { 124, 143, 241, 255, 227, 234, 128, 128, 128, 128, 128 },
138 { 35, 77, 181, 251, 193, 211, 255, 205, 128, 128, 128 }
139 },
140 { { 1, 157, 247, 255, 236, 231, 255, 255, 128, 128, 128 },
141 { 121, 141, 235, 255, 225, 227, 255, 255, 128, 128, 128 },
142 { 45, 99, 188, 251, 195, 217, 255, 224, 128, 128, 128 }
143 },
144 { { 1, 1, 251, 255, 213, 255, 128, 128, 128, 128, 128 },
145 { 203, 1, 248, 255, 255, 128, 128, 128, 128, 128, 128 },
146 { 137, 1, 177, 255, 224, 255, 128, 128, 128, 128, 128 }
147 }
148 },
149 { { { 253, 9, 248, 251, 207, 208, 255, 192, 128, 128, 128 },
150 { 175, 13, 224, 243, 193, 185, 249, 198, 255, 255, 128 },
151 { 73, 17, 171, 221, 161, 179, 236, 167, 255, 234, 128 }
152 },
153 { { 1, 95, 247, 253, 212, 183, 255, 255, 128, 128, 128 },
154 { 239, 90, 244, 250, 211, 209, 255, 255, 128, 128, 128 },
155 { 155, 77, 195, 248, 188, 195, 255, 255, 128, 128, 128 }
156 },
157 { { 1, 24, 239, 251, 218, 219, 255, 205, 128, 128, 128 },
158 { 201, 51, 219, 255, 196, 186, 128, 128, 128, 128, 128 },
159 { 69, 46, 190, 239, 201, 218, 255, 228, 128, 128, 128 }
160 },
161 { { 1, 191, 251, 255, 255, 128, 128, 128, 128, 128, 128 },
162 { 223, 165, 249, 255, 213, 255, 128, 128, 128, 128, 128 },
163 { 141, 124, 248, 255, 255, 128, 128, 128, 128, 128, 128 }
164 },
165 { { 1, 16, 248, 255, 255, 128, 128, 128, 128, 128, 128 },
166 { 190, 36, 230, 255, 236, 255, 128, 128, 128, 128, 128 },
167 { 149, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 }
168 },
169 { { 1, 226, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
170 { 247, 192, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
171 { 240, 128, 255, 128, 128, 128, 128, 128, 128, 128, 128 }
172 },
173 { { 1, 134, 252, 255, 255, 128, 128, 128, 128, 128, 128 },
174 { 213, 62, 250, 255, 255, 128, 128, 128, 128, 128, 128 },
175 { 55, 93, 255, 128, 128, 128, 128, 128, 128, 128, 128 }
176 },
177 { { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 },
178 { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 },
179 { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128 }
180 }
181 },
182 { { { 202, 24, 213, 235, 186, 191, 220, 160, 240, 175, 255 },
183 { 126, 38, 182, 232, 169, 184, 228, 174, 255, 187, 128 },
184 { 61, 46, 138, 219, 151, 178, 240, 170, 255, 216, 128 }
185 },
186 { { 1, 112, 230, 250, 199, 191, 247, 159, 255, 255, 128 },
187 { 166, 109, 228, 252, 211, 215, 255, 174, 128, 128, 128 },
188 { 39, 77, 162, 232, 172, 180, 245, 178, 255, 255, 128 }
189 },
190 { { 1, 52, 220, 246, 198, 199, 249, 220, 255, 255, 128 },
191 { 124, 74, 191, 243, 183, 193, 250, 221, 255, 255, 128 },
192 { 24, 71, 130, 219, 154, 170, 243, 182, 255, 255, 128 }
193 },
194 { { 1, 182, 225, 249, 219, 240, 255, 224, 128, 128, 128 },
195 { 149, 150, 226, 252, 216, 205, 255, 171, 128, 128, 128 },
196 { 28, 108, 170, 242, 183, 194, 254, 223, 255, 255, 128 }
197 },
198 { { 1, 81, 230, 252, 204, 203, 255, 192, 128, 128, 128 },
199 { 123, 102, 209, 247, 188, 196, 255, 233, 128, 128, 128 },
200 { 20, 95, 153, 243, 164, 173, 255, 203, 128, 128, 128 }
201 },
202 { { 1, 222, 248, 255, 216, 213, 128, 128, 128, 128, 128 },
203 { 168, 175, 246, 252, 235, 205, 255, 255, 128, 128, 128 },
204 { 47, 116, 215, 255, 211, 212, 255, 255, 128, 128, 128 }
205 },
206 { { 1, 121, 236, 253, 212, 214, 255, 255, 128, 128, 128 },
207 { 141, 84, 213, 252, 201, 202, 255, 219, 128, 128, 128 },
208 { 42, 80, 160, 240, 162, 185, 255, 205, 128, 128, 128 }
209 },
210 { { 1, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
211 { 244, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 },
212 { 238, 1, 255, 128, 128, 128, 128, 128, 128, 128, 128 }
213 }
214 }
215 };
216
217 // Paragraph 11.5
218 static const uint8_t kBModesProba[NUM_BMODES][NUM_BMODES][NUM_BMODES - 1] = {
219 // genereated using vp8_kf_default_bmode_probs()
220 { { 231, 120, 48, 89, 115, 113, 120, 152, 112 },
221 { 152, 179, 64, 126, 170, 118, 46, 70, 95 },
222 { 175, 69, 143, 80, 85, 82, 72, 155, 103 },
223 { 56, 58, 10, 171, 218, 189, 17, 13, 152 },
224 { 144, 71, 10, 38, 171, 213, 144, 34, 26 },
225 { 114, 26, 17, 163, 44, 195, 21, 10, 173 },
226 { 121, 24, 80, 195, 26, 62, 44, 64, 85 },
227 { 170, 46, 55, 19, 136, 160, 33, 206, 71 },
228 { 63, 20, 8, 114, 114, 208, 12, 9, 226 },
229 { 81, 40, 11, 96, 182, 84, 29, 16, 36 } },
230 { { 134, 183, 89, 137, 98, 101, 106, 165, 148 },
231 { 72, 187, 100, 130, 157, 111, 32, 75, 80 },
232 { 66, 102, 167, 99, 74, 62, 40, 234, 128 },
233 { 41, 53, 9, 178, 241, 141, 26, 8, 107 },
234 { 104, 79, 12, 27, 217, 255, 87, 17, 7 },
235 { 74, 43, 26, 146, 73, 166, 49, 23, 157 },
236 { 65, 38, 105, 160, 51, 52, 31, 115, 128 },
237 { 87, 68, 71, 44, 114, 51, 15, 186, 23 },
238 { 47, 41, 14, 110, 182, 183, 21, 17, 194 },
239 { 66, 45, 25, 102, 197, 189, 23, 18, 22 } },
240 { { 88, 88, 147, 150, 42, 46, 45, 196, 205 },
241 { 43, 97, 183, 117, 85, 38, 35, 179, 61 },
242 { 39, 53, 200, 87, 26, 21, 43, 232, 171 },
243 { 56, 34, 51, 104, 114, 102, 29, 93, 77 },
244 { 107, 54, 32, 26, 51, 1, 81, 43, 31 },
245 { 39, 28, 85, 171, 58, 165, 90, 98, 64 },
246 { 34, 22, 116, 206, 23, 34, 43, 166, 73 },
247 { 68, 25, 106, 22, 64, 171, 36, 225, 114 },
248 { 34, 19, 21, 102, 132, 188, 16, 76, 124 },
249 { 62, 18, 78, 95, 85, 57, 50, 48, 51 } },
250 { { 193, 101, 35, 159, 215, 111, 89, 46, 111 },
251 { 60, 148, 31, 172, 219, 228, 21, 18, 111 },
252 { 112, 113, 77, 85, 179, 255, 38, 120, 114 },
253 { 40, 42, 1, 196, 245, 209, 10, 25, 109 },
254 { 100, 80, 8, 43, 154, 1, 51, 26, 71 },
255 { 88, 43, 29, 140, 166, 213, 37, 43, 154 },
256 { 61, 63, 30, 155, 67, 45, 68, 1, 209 },
257 { 142, 78, 78, 16, 255, 128, 34, 197, 171 },
258 { 41, 40, 5, 102, 211, 183, 4, 1, 221 },
259 { 51, 50, 17, 168, 209, 192, 23, 25, 82 } },
260 { { 125, 98, 42, 88, 104, 85, 117, 175, 82 },
261 { 95, 84, 53, 89, 128, 100, 113, 101, 45 },
262 { 75, 79, 123, 47, 51, 128, 81, 171, 1 },
263 { 57, 17, 5, 71, 102, 57, 53, 41, 49 },
264 { 115, 21, 2, 10, 102, 255, 166, 23, 6 },
265 { 38, 33, 13, 121, 57, 73, 26, 1, 85 },
266 { 41, 10, 67, 138, 77, 110, 90, 47, 114 },
267 { 101, 29, 16, 10, 85, 128, 101, 196, 26 },
268 { 57, 18, 10, 102, 102, 213, 34, 20, 43 },
269 { 117, 20, 15, 36, 163, 128, 68, 1, 26 } },
270 { { 138, 31, 36, 171, 27, 166, 38, 44, 229 },
271 { 67, 87, 58, 169, 82, 115, 26, 59, 179 },
272 { 63, 59, 90, 180, 59, 166, 93, 73, 154 },
273 { 40, 40, 21, 116, 143, 209, 34, 39, 175 },
274 { 57, 46, 22, 24, 128, 1, 54, 17, 37 },
275 { 47, 15, 16, 183, 34, 223, 49, 45, 183 },
276 { 46, 17, 33, 183, 6, 98, 15, 32, 183 },
277 { 65, 32, 73, 115, 28, 128, 23, 128, 205 },
278 { 40, 3, 9, 115, 51, 192, 18, 6, 223 },
279 { 87, 37, 9, 115, 59, 77, 64, 21, 47 } },
280 { { 104, 55, 44, 218, 9, 54, 53, 130, 226 },
281 { 64, 90, 70, 205, 40, 41, 23, 26, 57 },
282 { 54, 57, 112, 184, 5, 41, 38, 166, 213 },
283 { 30, 34, 26, 133, 152, 116, 10, 32, 134 },
284 { 75, 32, 12, 51, 192, 255, 160, 43, 51 },
285 { 39, 19, 53, 221, 26, 114, 32, 73, 255 },
286 { 31, 9, 65, 234, 2, 15, 1, 118, 73 },
287 { 88, 31, 35, 67, 102, 85, 55, 186, 85 },
288 { 56, 21, 23, 111, 59, 205, 45, 37, 192 },
289 { 55, 38, 70, 124, 73, 102, 1, 34, 98 } },
290 { { 102, 61, 71, 37, 34, 53, 31, 243, 192 },
291 { 69, 60, 71, 38, 73, 119, 28, 222, 37 },
292 { 68, 45, 128, 34, 1, 47, 11, 245, 171 },
293 { 62, 17, 19, 70, 146, 85, 55, 62, 70 },
294 { 75, 15, 9, 9, 64, 255, 184, 119, 16 },
295 { 37, 43, 37, 154, 100, 163, 85, 160, 1 },
296 { 63, 9, 92, 136, 28, 64, 32, 201, 85 },
297 { 86, 6, 28, 5, 64, 255, 25, 248, 1 },
298 { 56, 8, 17, 132, 137, 255, 55, 116, 128 },
299 { 58, 15, 20, 82, 135, 57, 26, 121, 40 } },
300 { { 164, 50, 31, 137, 154, 133, 25, 35, 218 },
301 { 51, 103, 44, 131, 131, 123, 31, 6, 158 },
302 { 86, 40, 64, 135, 148, 224, 45, 183, 128 },
303 { 22, 26, 17, 131, 240, 154, 14, 1, 209 },
304 { 83, 12, 13, 54, 192, 255, 68, 47, 28 },
305 { 45, 16, 21, 91, 64, 222, 7, 1, 197 },
306 { 56, 21, 39, 155, 60, 138, 23, 102, 213 },
307 { 85, 26, 85, 85, 128, 128, 32, 146, 171 },
308 { 18, 11, 7, 63, 144, 171, 4, 4, 246 },
309 { 35, 27, 10, 146, 174, 171, 12, 26, 128 } },
310 { { 190, 80, 35, 99, 180, 80, 126, 54, 45 },
311 { 85, 126, 47, 87, 176, 51, 41, 20, 32 },
312 { 101, 75, 128, 139, 118, 146, 116, 128, 85 },
313 { 56, 41, 15, 176, 236, 85, 37, 9, 62 },
314 { 146, 36, 19, 30, 171, 255, 97, 27, 20 },
315 { 71, 30, 17, 119, 118, 255, 17, 18, 138 },
316 { 101, 38, 60, 138, 55, 70, 43, 26, 142 },
317 { 138, 45, 61, 62, 219, 1, 81, 188, 64 },
318 { 32, 41, 20, 117, 151, 142, 20, 21, 163 },
319 { 112, 19, 12, 61, 195, 128, 48, 4, 24 } }
320 };
321
322 void VP8ResetProba(VP8Proba* const proba) {
323 memset(proba->segments_, 255u, sizeof(proba->segments_));
324 memcpy(proba->coeffs_, CoeffsProba0, sizeof(CoeffsProba0));
325 #ifndef ONLY_KEYFRAME_CODE
326 memcpy(proba->mv_, kMVProba0, sizeof(kMVProba0));
327 memcpy(proba->ymode_, kYModeProbaInter0, sizeof(kYModeProbaInter0));
328 memcpy(proba->uvmode_, kUVModeProbaInter0, sizeof(kYModeProbaInter0));
329 #endif
330 }
331
332 void VP8ParseIntraMode(VP8BitReader* const br, VP8Decoder* const dec) {
333 uint8_t* const top = dec->intra_t_ + 4 * dec->mb_x_;
334 uint8_t* const left = dec->intra_l_;
335 // Hardcoded 16x16 intra-mode decision tree.
336 dec->is_i4x4_ = !VP8GetBit(br, 145); // decide for B_PRED first
337 if (!dec->is_i4x4_) {
338 const int ymode =
339 VP8GetBit(br, 156) ? (VP8GetBit(br, 128) ? TM_PRED : H_PRED)
340 : (VP8GetBit(br, 163) ? V_PRED : DC_PRED);
341 dec->imodes_[0] = ymode;
342 memset(top, ymode, 4 * sizeof(top[0]));
343 memset(left, ymode, 4 * sizeof(left[0]));
344 } else {
345 uint8_t* modes = dec->imodes_;
346 for (int y = 0; y < 4; ++y) {
347 int ymode = left[y];
348 for (int x = 0; x < 4; ++x) {
349 const uint8_t* const prob = kBModesProba[top[x]][ymode];
350 #ifdef USE_GENERIC_TREE
351 // Generic tree-parsing
352 int i = 0;
353 do {
354 i = kYModesIntra4[2 * i + VP8GetBit(br, prob[i])];
355 } while (i > 0);
356 ymode = -i;
357 #else
358 // Hardcoded tree parsing
359 ymode = !VP8GetBit(br, prob[0]) ? B_DC_PRED :
360 !VP8GetBit(br, prob[1]) ? B_TM_PRED :
361 !VP8GetBit(br, prob[2]) ? B_VE_PRED :
362 !VP8GetBit(br, prob[3]) ?
363 (!VP8GetBit(br, prob[4]) ? B_HE_PRED :
364 (!VP8GetBit(br, prob[5]) ? B_RD_PRED : B_VR_PRED)) :
365 (!VP8GetBit(br, prob[6]) ? B_LD_PRED :
366 (!VP8GetBit(br, prob[7]) ? B_VL_PRED :
367 (!VP8GetBit(br, prob[8]) ? B_HD_PRED : B_HU_PRED)));
368 #endif // USE_GENERIC_TREE
369 top[x] = ymode;
370 *modes++ = ymode;
371 }
372 left[y] = ymode;
373 }
374 }
375 // Hardcoded UVMode decision tree
376 dec->uvmode_ = !VP8GetBit(br, 142) ? DC_PRED
377 : !VP8GetBit(br, 114) ? V_PRED
378 : VP8GetBit(br, 183) ? TM_PRED : H_PRED;
379 }
380
381 //-----------------------------------------------------------------------------
382 // Paragraph 13
383
384 static const uint8_t
385 CoeffsUpdateProba[NUM_TYPES][NUM_BANDS][NUM_CTX][NUM_PROBAS] = {
386 { { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
387 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
388 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
389 },
390 { { 176, 246, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
391 { 223, 241, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
392 { 249, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 }
393 },
394 { { 255, 244, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
395 { 234, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
396 { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
397 },
398 { { 255, 246, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
399 { 239, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
400 { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 }
401 },
402 { { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
403 { 251, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
404 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
405 },
406 { { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
407 { 251, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
408 { 254, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 }
409 },
410 { { 255, 254, 253, 255, 254, 255, 255, 255, 255, 255, 255 },
411 { 250, 255, 254, 255, 254, 255, 255, 255, 255, 255, 255 },
412 { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
413 },
414 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
415 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
416 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
417 }
418 },
419 { { { 217, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
420 { 225, 252, 241, 253, 255, 255, 254, 255, 255, 255, 255 },
421 { 234, 250, 241, 250, 253, 255, 253, 254, 255, 255, 255 }
422 },
423 { { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
424 { 223, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
425 { 238, 253, 254, 254, 255, 255, 255, 255, 255, 255, 255 }
426 },
427 { { 255, 248, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
428 { 249, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
429 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
430 },
431 { { 255, 253, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
432 { 247, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
433 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
434 },
435 { { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
436 { 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
437 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
438 },
439 { { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
440 { 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
441 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
442 },
443 { { 255, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
444 { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
445 { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
446 },
447 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
448 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
449 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
450 }
451 },
452 { { { 186, 251, 250, 255, 255, 255, 255, 255, 255, 255, 255 },
453 { 234, 251, 244, 254, 255, 255, 255, 255, 255, 255, 255 },
454 { 251, 251, 243, 253, 254, 255, 254, 255, 255, 255, 255 }
455 },
456 { { 255, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
457 { 236, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
458 { 251, 253, 253, 254, 254, 255, 255, 255, 255, 255, 255 }
459 },
460 { { 255, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
461 { 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
462 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
463 },
464 { { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
465 { 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
466 { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
467 },
468 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
469 { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
470 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
471 },
472 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
473 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
474 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
475 },
476 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
477 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
478 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
479 },
480 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
481 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
482 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
483 }
484 },
485 { { { 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
486 { 250, 254, 252, 254, 255, 255, 255, 255, 255, 255, 255 },
487 { 248, 254, 249, 253, 255, 255, 255, 255, 255, 255, 255 }
488 },
489 { { 255, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
490 { 246, 253, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
491 { 252, 254, 251, 254, 254, 255, 255, 255, 255, 255, 255 }
492 },
493 { { 255, 254, 252, 255, 255, 255, 255, 255, 255, 255, 255 },
494 { 248, 254, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
495 { 253, 255, 254, 254, 255, 255, 255, 255, 255, 255, 255 }
496 },
497 { { 255, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
498 { 245, 251, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
499 { 253, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 }
500 },
501 { { 255, 251, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
502 { 252, 253, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
503 { 255, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
504 },
505 { { 255, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
506 { 249, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 },
507 { 255, 255, 254, 255, 255, 255, 255, 255, 255, 255, 255 }
508 },
509 { { 255, 255, 253, 255, 255, 255, 255, 255, 255, 255, 255 },
510 { 250, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
511 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
512 },
513 { { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
514 { 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 },
515 { 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 }
516 }
517 }
518 };
519
520 #ifndef ONLY_KEYFRAME_CODE
521 static const uint8_t MVUpdateProba[2][NUM_MV_PROBAS] = {
522 { 237, 246, 253, 253, 254, 254, 254, 254,
523 254, 254, 254, 254, 254, 254, 250, 250,
524 252, 254, 254 },
525 { 231, 243, 245, 253, 254, 254, 254, 254,
526 254, 254, 254, 254, 254, 254, 251, 251,
527 254, 254, 254 }
528 };
529 #endif
530
531 // Paragraph 9.9
532 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) {
533 VP8Proba* const proba = &dec->proba_;
534 for (int t = 0; t < NUM_TYPES; ++t) {
535 for (int b = 0; b < NUM_BANDS; ++b) {
536 for (int c = 0; c < NUM_CTX; ++c) {
537 for (int p = 0; p < NUM_PROBAS; ++p) {
538 if (VP8GetBit(br, CoeffsUpdateProba[t][b][c][p])) {
539 proba->coeffs_[t][b][c][p] = VP8GetValue(br, 8);
540 }
541 }
542 }
543 }
544 }
545 dec->use_skip_proba_ = VP8Get(br);
546 if (dec->use_skip_proba_) {
547 dec->skip_p_ = VP8GetValue(br, 8);
548 }
549 #ifndef ONLY_KEYFRAME_CODE
550 if (!dec->frm_hdr_.key_frame_) {
551 dec->intra_p_ = VP8GetValue(br, 8);
552 dec->last_p_ = VP8GetValue(br, 8);
553 dec->golden_p_ = VP8GetValue(br, 8);
554 if (VP8Get(br)) { // update y-mode
555 for (int i = 0; i < 4; ++i) {
556 proba->ymode_[i] = VP8GetValue(br, 8);
557 }
558 }
559 if (VP8Get(br)) { // update uv-mode
560 for (int i = 0; i < 3; ++i) {
561 proba->uvmode_[i] = VP8GetValue(br, 8);
562 }
563 }
564 // update MV
565 for (int d = 0; d < 2; ++d) {
566 for (int k = 0; k < NUM_MV_PROBAS; ++k) {
567 if (VP8GetBit(br, MVUpdateProba[d][k])) {
568 const int v = VP8GetValue(br, 7);
569 proba->mv_[d][k] = v ? v << 1 : 1;
570 }
571 }
572 }
573 }
574 #endif
575 }
576
577 #if defined(__cplusplus) || defined(c_plusplus)
578 } // extern "C"
579 #endif
OLDNEW
« no previous file with comments | « third_party/libwebp/quant.c ('k') | third_party/libwebp/vp8.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698