Commit | Line | Data |
---|---|---|
3b636f21 DC |
1 | /** |
2 | * VP8 compatible video decoder | |
3 | * | |
4 | * Copyright (C) 2010 David Conrad | |
5 | * Copyright (C) 2010 Ronald S. Bultje | |
6 | * | |
7 | * This file is part of FFmpeg. | |
8 | * | |
9 | * FFmpeg is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU Lesser General Public | |
11 | * License as published by the Free Software Foundation; either | |
12 | * version 2.1 of the License, or (at your option) any later version. | |
13 | * | |
14 | * FFmpeg is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * Lesser General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU Lesser General Public | |
20 | * License along with FFmpeg; if not, write to the Free Software | |
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
22 | */ | |
23 | ||
24 | #include "avcodec.h" | |
25 | #include "vp56.h" | |
26 | #include "vp8data.h" | |
27 | #include "vp8dsp.h" | |
28 | #include "h264pred.h" | |
29 | #include "rectangle.h" | |
30 | ||
31 | typedef struct { | |
968570d6 JGG |
32 | uint8_t filter_level; |
33 | uint8_t inner_limit; | |
c55e0d34 | 34 | uint8_t inner_filter; |
968570d6 JGG |
35 | } VP8FilterStrength; |
36 | ||
37 | typedef struct { | |
3b636f21 DC |
38 | uint8_t skip; |
39 | // todo: make it possible to check for at least (i4x4 or split_mv) | |
40 | // in one op. are others needed? | |
41 | uint8_t mode; | |
42 | uint8_t ref_frame; | |
43 | uint8_t partitioning; | |
44 | VP56mv mv; | |
45 | VP56mv bmv[16]; | |
46 | } VP8Macroblock; | |
47 | ||
48 | typedef struct { | |
49 | AVCodecContext *avctx; | |
50 | DSPContext dsp; | |
51 | VP8DSPContext vp8dsp; | |
52 | H264PredContext hpc; | |
0ef1dbed | 53 | vp8_mc_func put_pixels_tab[3][3][3]; |
3b636f21 DC |
54 | AVFrame frames[4]; |
55 | AVFrame *framep[4]; | |
56 | uint8_t *edge_emu_buffer; | |
57 | VP56RangeCoder c; ///< header context, includes mb modes and motion vectors | |
58 | int profile; | |
59 | ||
60 | int mb_width; /* number of horizontal MB */ | |
61 | int mb_height; /* number of vertical MB */ | |
62 | int linesize; | |
63 | int uvlinesize; | |
64 | ||
65 | int keyframe; | |
66 | int invisible; | |
67 | int update_last; ///< update VP56_FRAME_PREVIOUS with the current one | |
68 | int update_golden; ///< VP56_FRAME_NONE if not updated, or which frame to copy if so | |
69 | int update_altref; | |
9ac831c2 | 70 | int deblock_filter; |
3b636f21 DC |
71 | |
72 | /** | |
73 | * If this flag is not set, all the probability updates | |
74 | * are discarded after this frame is decoded. | |
75 | */ | |
76 | int update_probabilities; | |
77 | ||
78 | /** | |
79 | * All coefficients are contained in separate arith coding contexts. | |
80 | * There can be 1, 2, 4, or 8 of these after the header context. | |
81 | */ | |
82 | int num_coeff_partitions; | |
83 | VP56RangeCoder coeff_partition[8]; | |
84 | ||
85 | VP8Macroblock *macroblocks; | |
86 | VP8Macroblock *macroblocks_base; | |
968570d6 | 87 | VP8FilterStrength *filter_strength; |
3b636f21 DC |
88 | int mb_stride; |
89 | ||
90 | uint8_t *intra4x4_pred_mode; | |
91 | uint8_t *intra4x4_pred_mode_base; | |
c55e0d34 | 92 | uint8_t *segmentation_map; |
3b636f21 DC |
93 | int b4_stride; |
94 | ||
95 | /** | |
9ac831c2 DC |
96 | * Cache of the top row needed for intra prediction |
97 | * 16 for luma, 8 for each chroma plane | |
98 | */ | |
99 | uint8_t (*top_border)[16+8+8]; | |
100 | ||
101 | /** | |
3b636f21 DC |
102 | * For coeff decode, we need to know whether the above block had non-zero |
103 | * coefficients. This means for each macroblock, we need data for 4 luma | |
104 | * blocks, 2 u blocks, 2 v blocks, and the luma dc block, for a total of 9 | |
105 | * per macroblock. We keep the last row in top_nnz. | |
106 | */ | |
107 | uint8_t (*top_nnz)[9]; | |
108 | DECLARE_ALIGNED(8, uint8_t, left_nnz)[9]; | |
109 | ||
110 | /** | |
111 | * This is the index plus one of the last non-zero coeff | |
112 | * for each of the blocks in the current macroblock. | |
113 | * So, 0 -> no coeffs | |
114 | * 1 -> dc-only (special transform) | |
115 | * 2+-> full transform | |
116 | */ | |
117 | DECLARE_ALIGNED(16, uint8_t, non_zero_count_cache)[6][4]; | |
118 | DECLARE_ALIGNED(16, DCTELEM, block)[6][4][16]; | |
d1c58fce | 119 | uint8_t intra4x4_pred_mode_mb[16]; |
3b636f21 DC |
120 | |
121 | int chroma_pred_mode; ///< 8x8c pred mode of the current macroblock | |
b9a7186b | 122 | int segment; ///< segment of the current macroblock |
3b636f21 DC |
123 | |
124 | int mbskip_enabled; | |
125 | int sign_bias[4]; ///< one state [0, 1] per ref frame type | |
c4211046 | 126 | int ref_count[3]; |
3b636f21 DC |
127 | |
128 | /** | |
129 | * Base parameters for segmentation, i.e. per-macroblock parameters. | |
130 | * These must be kept unchanged even if segmentation is not used for | |
131 | * a frame, since the values persist between interframes. | |
132 | */ | |
133 | struct { | |
134 | int enabled; | |
135 | int absolute_vals; | |
136 | int update_map; | |
137 | int8_t base_quant[4]; | |
138 | int8_t filter_level[4]; ///< base loop filter level | |
139 | } segmentation; | |
140 | ||
141 | /** | |
142 | * Macroblocks can have one of 4 different quants in a frame when | |
143 | * segmentation is enabled. | |
144 | * If segmentation is disabled, only the first segment's values are used. | |
145 | */ | |
146 | struct { | |
147 | // [0] - DC qmul [1] - AC qmul | |
148 | int16_t luma_qmul[2]; | |
149 | int16_t luma_dc_qmul[2]; ///< luma dc-only block quant | |
150 | int16_t chroma_qmul[2]; | |
151 | } qmat[4]; | |
152 | ||
153 | struct { | |
154 | int simple; | |
155 | int level; | |
156 | int sharpness; | |
157 | } filter; | |
158 | ||
159 | struct { | |
160 | int enabled; ///< whether each mb can have a different strength based on mode/ref | |
161 | ||
162 | /** | |
163 | * filter strength adjustment for the following macroblock modes: | |
164 | * [0] - i4x4 | |
165 | * [1] - zero mv | |
166 | * [2] - inter modes except for zero or split mv | |
167 | * [3] - split mv | |
168 | * i16x16 modes never have any adjustment | |
169 | */ | |
170 | int8_t mode[4]; | |
171 | ||
172 | /** | |
173 | * filter strength adjustment for macroblocks that reference: | |
174 | * [0] - intra / VP56_FRAME_CURRENT | |
175 | * [1] - VP56_FRAME_PREVIOUS | |
176 | * [2] - VP56_FRAME_GOLDEN | |
177 | * [3] - altref / VP56_FRAME_GOLDEN2 | |
178 | */ | |
179 | int8_t ref[4]; | |
180 | } lf_delta; | |
181 | ||
182 | /** | |
183 | * These are all of the updatable probabilities for binary decisions. | |
184 | * They are only implictly reset on keyframes, making it quite likely | |
185 | * for an interframe to desync if a prior frame's header was corrupt | |
186 | * or missing outright! | |
187 | */ | |
188 | struct { | |
189 | uint8_t segmentid[3]; | |
190 | uint8_t mbskip; | |
191 | uint8_t intra; | |
192 | uint8_t last; | |
193 | uint8_t golden; | |
194 | uint8_t pred16x16[4]; | |
195 | uint8_t pred8x8c[3]; | |
196 | uint8_t token[4][8][3][NUM_DCT_TOKENS-1]; | |
197 | uint8_t mvc[2][19]; | |
198 | } prob[2]; | |
199 | } VP8Context; | |
200 | ||
3b636f21 DC |
201 | static void vp8_decode_flush(AVCodecContext *avctx) |
202 | { | |
203 | VP8Context *s = avctx->priv_data; | |
204 | int i; | |
205 | ||
206 | for (i = 0; i < 4; i++) | |
207 | if (s->frames[i].data[0]) | |
208 | avctx->release_buffer(avctx, &s->frames[i]); | |
209 | memset(s->framep, 0, sizeof(s->framep)); | |
210 | ||
211 | av_freep(&s->macroblocks_base); | |
212 | av_freep(&s->intra4x4_pred_mode_base); | |
213 | av_freep(&s->top_nnz); | |
214 | av_freep(&s->edge_emu_buffer); | |
9ac831c2 | 215 | av_freep(&s->top_border); |
c55e0d34 | 216 | av_freep(&s->segmentation_map); |
3b636f21 DC |
217 | |
218 | s->macroblocks = NULL; | |
219 | s->intra4x4_pred_mode = NULL; | |
220 | } | |
221 | ||
222 | static int update_dimensions(VP8Context *s, int width, int height) | |
223 | { | |
224 | int i; | |
225 | ||
226 | if (avcodec_check_dimensions(s->avctx, width, height)) | |
227 | return AVERROR_INVALIDDATA; | |
228 | ||
229 | vp8_decode_flush(s->avctx); | |
230 | ||
231 | avcodec_set_dimensions(s->avctx, width, height); | |
232 | ||
233 | s->mb_width = (s->avctx->coded_width +15) / 16; | |
234 | s->mb_height = (s->avctx->coded_height+15) / 16; | |
235 | ||
236 | // we allocate a border around the top/left of intra4x4 modes | |
237 | // this is 4 blocks for intra4x4 to keep 4-byte alignment for fill_rectangle | |
238 | s->mb_stride = s->mb_width+1; | |
239 | s->b4_stride = 4*s->mb_stride; | |
240 | ||
c55e0d34 | 241 | s->macroblocks_base = av_mallocz((s->mb_stride+s->mb_height*2+2)*sizeof(*s->macroblocks)); |
968570d6 | 242 | s->filter_strength = av_mallocz(s->mb_stride*sizeof(*s->filter_strength)); |
3b636f21 DC |
243 | s->intra4x4_pred_mode_base = av_mallocz(s->b4_stride*(4*s->mb_height+1)); |
244 | s->top_nnz = av_mallocz(s->mb_width*sizeof(*s->top_nnz)); | |
9ac831c2 | 245 | s->top_border = av_mallocz((s->mb_width+1)*sizeof(*s->top_border)); |
c55e0d34 | 246 | s->segmentation_map = av_mallocz(s->mb_stride*s->mb_height); |
3b636f21 | 247 | |
c55e0d34 JGG |
248 | if (!s->macroblocks_base || !s->filter_strength || !s->intra4x4_pred_mode_base || |
249 | !s->top_nnz || !s->top_border || !s->segmentation_map) | |
b6c420ce DC |
250 | return AVERROR(ENOMEM); |
251 | ||
c55e0d34 | 252 | s->macroblocks = s->macroblocks_base + 1; |
3b636f21 DC |
253 | s->intra4x4_pred_mode = s->intra4x4_pred_mode_base + 4 + s->b4_stride; |
254 | ||
255 | memset(s->intra4x4_pred_mode_base, DC_PRED, s->b4_stride); | |
256 | for (i = 0; i < 4*s->mb_height; i++) | |
257 | s->intra4x4_pred_mode[i*s->b4_stride-1] = DC_PRED; | |
258 | ||
259 | return 0; | |
260 | } | |
261 | ||
262 | static void parse_segment_info(VP8Context *s) | |
263 | { | |
264 | VP56RangeCoder *c = &s->c; | |
265 | int i; | |
266 | ||
267 | s->segmentation.update_map = vp8_rac_get(c); | |
268 | ||
269 | if (vp8_rac_get(c)) { // update segment feature data | |
270 | s->segmentation.absolute_vals = vp8_rac_get(c); | |
271 | ||
272 | for (i = 0; i < 4; i++) | |
273 | s->segmentation.base_quant[i] = vp8_rac_get_sint(c, 7); | |
274 | ||
275 | for (i = 0; i < 4; i++) | |
276 | s->segmentation.filter_level[i] = vp8_rac_get_sint(c, 6); | |
277 | } | |
278 | if (s->segmentation.update_map) | |
279 | for (i = 0; i < 3; i++) | |
280 | s->prob->segmentid[i] = vp8_rac_get(c) ? vp8_rac_get_uint(c, 8) : 255; | |
281 | } | |
282 | ||
283 | static void update_lf_deltas(VP8Context *s) | |
284 | { | |
285 | VP56RangeCoder *c = &s->c; | |
286 | int i; | |
287 | ||
288 | for (i = 0; i < 4; i++) | |
289 | s->lf_delta.ref[i] = vp8_rac_get_sint(c, 6); | |
290 | ||
291 | for (i = 0; i < 4; i++) | |
292 | s->lf_delta.mode[i] = vp8_rac_get_sint(c, 6); | |
293 | } | |
294 | ||
295 | static int setup_partitions(VP8Context *s, const uint8_t *buf, int buf_size) | |
296 | { | |
297 | const uint8_t *sizes = buf; | |
298 | int i; | |
299 | ||
300 | s->num_coeff_partitions = 1 << vp8_rac_get_uint(&s->c, 2); | |
301 | ||
302 | buf += 3*(s->num_coeff_partitions-1); | |
303 | buf_size -= 3*(s->num_coeff_partitions-1); | |
304 | if (buf_size < 0) | |
305 | return -1; | |
306 | ||
307 | for (i = 0; i < s->num_coeff_partitions-1; i++) { | |
06d50ca8 | 308 | int size = AV_RL24(sizes + 3*i); |
3b636f21 DC |
309 | if (buf_size - size < 0) |
310 | return -1; | |
311 | ||
312 | vp56_init_range_decoder(&s->coeff_partition[i], buf, size); | |
313 | buf += size; | |
314 | buf_size -= size; | |
315 | } | |
316 | vp56_init_range_decoder(&s->coeff_partition[i], buf, buf_size); | |
317 | ||
318 | return 0; | |
319 | } | |
320 | ||
321 | static void get_quants(VP8Context *s) | |
322 | { | |
323 | VP56RangeCoder *c = &s->c; | |
324 | int i, base_qi; | |
325 | ||
326 | int yac_qi = vp8_rac_get_uint(c, 7); | |
327 | int ydc_delta = vp8_rac_get_sint(c, 4); | |
328 | int y2dc_delta = vp8_rac_get_sint(c, 4); | |
329 | int y2ac_delta = vp8_rac_get_sint(c, 4); | |
330 | int uvdc_delta = vp8_rac_get_sint(c, 4); | |
331 | int uvac_delta = vp8_rac_get_sint(c, 4); | |
332 | ||
333 | for (i = 0; i < 4; i++) { | |
334 | if (s->segmentation.enabled) { | |
335 | base_qi = s->segmentation.base_quant[i]; | |
336 | if (!s->segmentation.absolute_vals) | |
337 | base_qi += yac_qi; | |
338 | } else | |
339 | base_qi = yac_qi; | |
340 | ||
341 | s->qmat[i].luma_qmul[0] = vp8_dc_qlookup[av_clip(base_qi + ydc_delta , 0, 127)]; | |
342 | s->qmat[i].luma_qmul[1] = vp8_ac_qlookup[av_clip(base_qi , 0, 127)]; | |
343 | s->qmat[i].luma_dc_qmul[0] = 2 * vp8_dc_qlookup[av_clip(base_qi + y2dc_delta, 0, 127)]; | |
344 | s->qmat[i].luma_dc_qmul[1] = 155 * vp8_ac_qlookup[av_clip(base_qi + y2ac_delta, 0, 127)] / 100; | |
345 | s->qmat[i].chroma_qmul[0] = vp8_dc_qlookup[av_clip(base_qi + uvdc_delta, 0, 127)]; | |
346 | s->qmat[i].chroma_qmul[1] = vp8_ac_qlookup[av_clip(base_qi + uvac_delta, 0, 127)]; | |
347 | ||
348 | s->qmat[i].luma_dc_qmul[1] = FFMAX(s->qmat[i].luma_dc_qmul[1], 8); | |
349 | s->qmat[i].chroma_qmul[0] = FFMIN(s->qmat[i].chroma_qmul[0], 132); | |
350 | } | |
351 | } | |
352 | ||
353 | /** | |
354 | * Determine which buffers golden and altref should be updated with after this frame. | |
355 | * The spec isn't clear here, so I'm going by my understanding of what libvpx does | |
356 | * | |
357 | * Intra frames update all 3 references | |
358 | * Inter frames update VP56_FRAME_PREVIOUS if the update_last flag is set | |
359 | * If the update (golden|altref) flag is set, it's updated with the current frame | |
360 | * if update_last is set, and VP56_FRAME_PREVIOUS otherwise. | |
361 | * If the flag is not set, the number read means: | |
362 | * 0: no update | |
363 | * 1: VP56_FRAME_PREVIOUS | |
364 | * 2: update golden with altref, or update altref with golden | |
365 | */ | |
366 | static VP56Frame ref_to_update(VP8Context *s, int update, VP56Frame ref) | |
367 | { | |
368 | VP56RangeCoder *c = &s->c; | |
369 | ||
370 | if (update) | |
371 | return VP56_FRAME_CURRENT; | |
372 | ||
373 | switch (vp8_rac_get_uint(c, 2)) { | |
374 | case 1: | |
375 | return VP56_FRAME_PREVIOUS; | |
376 | case 2: | |
377 | return (ref == VP56_FRAME_GOLDEN) ? VP56_FRAME_GOLDEN2 : VP56_FRAME_GOLDEN; | |
378 | } | |
379 | return VP56_FRAME_NONE; | |
380 | } | |
381 | ||
382 | static void update_refs(VP8Context *s) | |
383 | { | |
384 | VP56RangeCoder *c = &s->c; | |
385 | ||
386 | int update_golden = vp8_rac_get(c); | |
387 | int update_altref = vp8_rac_get(c); | |
388 | ||
389 | s->update_golden = ref_to_update(s, update_golden, VP56_FRAME_GOLDEN); | |
390 | s->update_altref = ref_to_update(s, update_altref, VP56_FRAME_GOLDEN2); | |
391 | } | |
392 | ||
393 | static int decode_frame_header(VP8Context *s, const uint8_t *buf, int buf_size) | |
394 | { | |
395 | VP56RangeCoder *c = &s->c; | |
396 | int header_size, hscale, vscale, i, j, k, l, ret; | |
397 | int width = s->avctx->width; | |
398 | int height = s->avctx->height; | |
399 | ||
400 | s->keyframe = !(buf[0] & 1); | |
401 | s->profile = (buf[0]>>1) & 7; | |
402 | s->invisible = !(buf[0] & 0x10); | |
06d50ca8 | 403 | header_size = AV_RL24(buf) >> 5; |
3b636f21 DC |
404 | buf += 3; |
405 | buf_size -= 3; | |
406 | ||
0ef1dbed DC |
407 | if (s->profile > 3) |
408 | av_log(s->avctx, AV_LOG_WARNING, "Unknown profile %d\n", s->profile); | |
409 | ||
410 | if (!s->profile) | |
411 | memcpy(s->put_pixels_tab, s->vp8dsp.put_vp8_epel_pixels_tab, sizeof(s->put_pixels_tab)); | |
412 | else // profile 1-3 use bilinear, 4+ aren't defined so whatever | |
413 | memcpy(s->put_pixels_tab, s->vp8dsp.put_vp8_bilinear_pixels_tab, sizeof(s->put_pixels_tab)); | |
3b636f21 DC |
414 | |
415 | if (header_size > buf_size - 7*s->keyframe) { | |
416 | av_log(s->avctx, AV_LOG_ERROR, "Header size larger than data provided\n"); | |
417 | return AVERROR_INVALIDDATA; | |
418 | } | |
419 | ||
420 | if (s->keyframe) { | |
06d50ca8 JGG |
421 | if (AV_RL24(buf) != 0x2a019d) { |
422 | av_log(s->avctx, AV_LOG_ERROR, "Invalid start code 0x%x\n", AV_RL24(buf)); | |
3b636f21 DC |
423 | return AVERROR_INVALIDDATA; |
424 | } | |
425 | width = AV_RL16(buf+3) & 0x3fff; | |
426 | height = AV_RL16(buf+5) & 0x3fff; | |
427 | hscale = buf[4] >> 6; | |
428 | vscale = buf[6] >> 6; | |
429 | buf += 7; | |
430 | buf_size -= 7; | |
431 | ||
92a54426 MR |
432 | if (hscale || vscale) |
433 | av_log_missing_feature(s->avctx, "Upscaling", 1); | |
434 | ||
3b636f21 DC |
435 | s->update_golden = s->update_altref = VP56_FRAME_CURRENT; |
436 | memcpy(s->prob->token , vp8_token_default_probs , sizeof(s->prob->token)); | |
437 | memcpy(s->prob->pred16x16, vp8_pred16x16_prob_inter, sizeof(s->prob->pred16x16)); | |
438 | memcpy(s->prob->pred8x8c , vp8_pred8x8c_prob_inter , sizeof(s->prob->pred8x8c)); | |
439 | memcpy(s->prob->mvc , vp8_mv_default_prob , sizeof(s->prob->mvc)); | |
440 | memset(&s->segmentation, 0, sizeof(s->segmentation)); | |
441 | } | |
442 | ||
443 | if (!s->macroblocks_base || /* first frame */ | |
444 | width != s->avctx->width || height != s->avctx->height) { | |
445 | if ((ret = update_dimensions(s, width, height) < 0)) | |
446 | return ret; | |
447 | } | |
448 | ||
449 | vp56_init_range_decoder(c, buf, header_size); | |
450 | buf += header_size; | |
451 | buf_size -= header_size; | |
452 | ||
453 | if (s->keyframe) { | |
454 | if (vp8_rac_get(c)) | |
455 | av_log(s->avctx, AV_LOG_WARNING, "Unspecified colorspace\n"); | |
456 | vp8_rac_get(c); // whether we can skip clamping in dsp functions | |
457 | } | |
458 | ||
459 | if ((s->segmentation.enabled = vp8_rac_get(c))) | |
460 | parse_segment_info(s); | |
461 | else | |
462 | s->segmentation.update_map = 0; // FIXME: move this to some init function? | |
463 | ||
464 | s->filter.simple = vp8_rac_get(c); | |
465 | s->filter.level = vp8_rac_get_uint(c, 6); | |
466 | s->filter.sharpness = vp8_rac_get_uint(c, 3); | |
467 | ||
468 | if ((s->lf_delta.enabled = vp8_rac_get(c))) | |
469 | if (vp8_rac_get(c)) | |
470 | update_lf_deltas(s); | |
471 | ||
472 | if (setup_partitions(s, buf, buf_size)) { | |
473 | av_log(s->avctx, AV_LOG_ERROR, "Invalid partitions\n"); | |
474 | return AVERROR_INVALIDDATA; | |
475 | } | |
476 | ||
477 | get_quants(s); | |
478 | ||
479 | if (!s->keyframe) { | |
480 | update_refs(s); | |
481 | s->sign_bias[VP56_FRAME_GOLDEN] = vp8_rac_get(c); | |
482 | s->sign_bias[VP56_FRAME_GOLDEN2 /* altref */] = vp8_rac_get(c); | |
483 | } | |
484 | ||
485 | // if we aren't saving this frame's probabilities for future frames, | |
486 | // make a copy of the current probabilities | |
487 | if (!(s->update_probabilities = vp8_rac_get(c))) | |
488 | s->prob[1] = s->prob[0]; | |
489 | ||
490 | s->update_last = s->keyframe || vp8_rac_get(c); | |
491 | ||
492 | for (i = 0; i < 4; i++) | |
493 | for (j = 0; j < 8; j++) | |
494 | for (k = 0; k < 3; k++) | |
495 | for (l = 0; l < NUM_DCT_TOKENS-1; l++) | |
496 | if (vp56_rac_get_prob(c, vp8_token_update_probs[i][j][k][l])) | |
497 | s->prob->token[i][j][k][l] = vp8_rac_get_uint(c, 8); | |
498 | ||
499 | if ((s->mbskip_enabled = vp8_rac_get(c))) | |
500 | s->prob->mbskip = vp8_rac_get_uint(c, 8); | |
501 | ||
502 | if (!s->keyframe) { | |
503 | s->prob->intra = vp8_rac_get_uint(c, 8); | |
504 | s->prob->last = vp8_rac_get_uint(c, 8); | |
505 | s->prob->golden = vp8_rac_get_uint(c, 8); | |
506 | ||
507 | if (vp8_rac_get(c)) | |
508 | for (i = 0; i < 4; i++) | |
509 | s->prob->pred16x16[i] = vp8_rac_get_uint(c, 8); | |
510 | if (vp8_rac_get(c)) | |
511 | for (i = 0; i < 3; i++) | |
512 | s->prob->pred8x8c[i] = vp8_rac_get_uint(c, 8); | |
513 | ||
514 | // 17.2 MV probability update | |
515 | for (i = 0; i < 2; i++) | |
516 | for (j = 0; j < 19; j++) | |
517 | if (vp56_rac_get_prob(c, vp8_mv_update_prob[i][j])) | |
518 | s->prob->mvc[i][j] = vp8_rac_get_nn(c); | |
519 | } | |
520 | ||
521 | return 0; | |
522 | } | |
523 | ||
524 | static inline void clamp_mv(VP8Context *s, VP56mv *dst, const VP56mv *src, | |
525 | int mb_x, int mb_y) | |
526 | { | |
527 | #define MARGIN (16 << 2) | |
528 | dst->x = av_clip(src->x, -((mb_x << 6) + MARGIN), | |
529 | ((s->mb_width - 1 - mb_x) << 6) + MARGIN); | |
530 | dst->y = av_clip(src->y, -((mb_y << 6) + MARGIN), | |
531 | ((s->mb_height - 1 - mb_y) << 6) + MARGIN); | |
532 | } | |
533 | ||
534 | static void find_near_mvs(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, | |
702e8d33 | 535 | VP56mv near[2], VP56mv *best, uint8_t cnt[4]) |
3b636f21 | 536 | { |
c55e0d34 JGG |
537 | VP8Macroblock *mb_edge[3] = { mb + 2 /* top */, |
538 | mb - 1 /* left */, | |
539 | mb + 1 /* top-left */ }; | |
3b636f21 DC |
540 | enum { EDGE_TOP, EDGE_LEFT, EDGE_TOPLEFT }; |
541 | VP56mv near_mv[4] = {{ 0 }}; | |
542 | enum { CNT_ZERO, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV }; | |
702e8d33 | 543 | int idx = CNT_ZERO; |
3b636f21 | 544 | int best_idx = CNT_ZERO; |
702e8d33 JGG |
545 | int cur_sign_bias = s->sign_bias[mb->ref_frame]; |
546 | int *sign_bias = s->sign_bias; | |
3b636f21 DC |
547 | |
548 | /* Process MB on top, left and top-left */ | |
702e8d33 JGG |
549 | #define MV_EDGE_CHECK(n)\ |
550 | {\ | |
551 | VP8Macroblock *edge = mb_edge[n];\ | |
552 | int edge_ref = edge->ref_frame;\ | |
553 | if (edge_ref != VP56_FRAME_CURRENT) {\ | |
554 | uint32_t mv = AV_RN32A(&edge->mv);\ | |
555 | if (mv) {\ | |
556 | if (cur_sign_bias != sign_bias[edge_ref]) {\ | |
557 | /* SWAR negate of the values in mv. */\ | |
0087aa47 JGG |
558 | mv = ~mv;\ |
559 | mv = ((mv&0x7fff7fff) + 0x00010001) ^ (mv&0x80008000);\ | |
702e8d33 JGG |
560 | }\ |
561 | if (!n || mv != AV_RN32A(&near_mv[idx]))\ | |
562 | AV_WN32A(&near_mv[++idx], mv);\ | |
563 | cnt[idx] += 1 + (n != 2);\ | |
564 | } else\ | |
565 | cnt[CNT_ZERO] += 1 + (n != 2);\ | |
566 | }\ | |
3b636f21 | 567 | } |
702e8d33 JGG |
568 | MV_EDGE_CHECK(0) |
569 | MV_EDGE_CHECK(1) | |
570 | MV_EDGE_CHECK(2) | |
3b636f21 | 571 | |
702e8d33 JGG |
572 | /* If we have three distinct MVs, merge first and last if they're the same */ |
573 | if (cnt[CNT_SPLITMV] && AV_RN32A(&near_mv[1+EDGE_TOP]) == AV_RN32A(&near_mv[1+EDGE_TOPLEFT])) | |
3b636f21 DC |
574 | cnt[CNT_NEAREST] += 1; |
575 | ||
576 | cnt[CNT_SPLITMV] = ((mb_edge[EDGE_LEFT]->mode == VP8_MVMODE_SPLIT) + | |
577 | (mb_edge[EDGE_TOP]->mode == VP8_MVMODE_SPLIT)) * 2 + | |
578 | (mb_edge[EDGE_TOPLEFT]->mode == VP8_MVMODE_SPLIT); | |
579 | ||
580 | /* Swap near and nearest if necessary */ | |
581 | if (cnt[CNT_NEAR] > cnt[CNT_NEAREST]) { | |
702e8d33 JGG |
582 | FFSWAP(uint8_t, cnt[CNT_NEAREST], cnt[CNT_NEAR]); |
583 | FFSWAP( VP56mv, near_mv[CNT_NEAREST], near_mv[CNT_NEAR]); | |
3b636f21 DC |
584 | } |
585 | ||
586 | /* Choose the best mv out of 0,0 and the nearest mv */ | |
587 | if (cnt[CNT_NEAREST] >= cnt[CNT_ZERO]) | |
588 | best_idx = CNT_NEAREST; | |
589 | ||
9fddd14a | 590 | mb->mv = near_mv[best_idx]; |
3b636f21 DC |
591 | near[0] = near_mv[CNT_NEAREST]; |
592 | near[1] = near_mv[CNT_NEAR]; | |
593 | } | |
594 | ||
595 | /** | |
596 | * Motion vector coding, 17.1. | |
597 | */ | |
598 | static int read_mv_component(VP56RangeCoder *c, const uint8_t *p) | |
599 | { | |
600 | int x = 0; | |
601 | ||
602 | if (vp56_rac_get_prob(c, p[0])) { | |
603 | int i; | |
604 | ||
605 | for (i = 0; i < 3; i++) | |
606 | x += vp56_rac_get_prob(c, p[9 + i]) << i; | |
607 | for (i = 9; i > 3; i--) | |
608 | x += vp56_rac_get_prob(c, p[9 + i]) << i; | |
609 | if (!(x & 0xFFF0) || vp56_rac_get_prob(c, p[12])) | |
610 | x += 8; | |
611 | } else | |
612 | x = vp8_rac_get_tree(c, vp8_small_mvtree, &p[2]); | |
613 | ||
614 | return (x && vp56_rac_get_prob(c, p[1])) ? -x : x; | |
615 | } | |
616 | ||
7bf254c4 | 617 | static const uint8_t *get_submv_prob(uint32_t left, uint32_t top) |
3b636f21 | 618 | { |
7bf254c4 JGG |
619 | if (left == top) |
620 | return vp8_submv_prob[4-!!left]; | |
621 | if (!top) | |
3b636f21 | 622 | return vp8_submv_prob[2]; |
7bf254c4 | 623 | return vp8_submv_prob[1-!!left]; |
3b636f21 DC |
624 | } |
625 | ||
626 | /** | |
627 | * Split motion vector prediction, 16.4. | |
7ed06b2b | 628 | * @returns the number of motion vectors parsed (2, 4 or 16) |
3b636f21 | 629 | */ |
9fddd14a | 630 | static int decode_splitmvs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb) |
3b636f21 DC |
631 | { |
632 | int part_idx = mb->partitioning = | |
633 | vp8_rac_get_tree(c, vp8_mbsplit_tree, vp8_mbsplit_prob); | |
634 | int n, num = vp8_mbsplit_count[part_idx]; | |
c55e0d34 | 635 | VP8Macroblock *top_mb = &mb[2]; |
7bf254c4 JGG |
636 | VP8Macroblock *left_mb = &mb[-1]; |
637 | const uint8_t *mbsplits_left = vp8_mbsplits[left_mb->partitioning], | |
638 | *mbsplits_top = vp8_mbsplits[top_mb->partitioning], | |
639 | *mbsplits_cur = vp8_mbsplits[part_idx], | |
7ed06b2b | 640 | *firstidx = vp8_mbfirstidx[part_idx]; |
c55e0d34 JGG |
641 | VP56mv *top_mv = top_mb->bmv; |
642 | VP56mv *left_mv = left_mb->bmv; | |
643 | VP56mv *cur_mv = mb->bmv; | |
3b636f21 DC |
644 | |
645 | for (n = 0; n < num; n++) { | |
7ed06b2b | 646 | int k = firstidx[n]; |
7bf254c4 | 647 | uint32_t left, above; |
7ed06b2b RB |
648 | const uint8_t *submv_prob; |
649 | ||
7bf254c4 JGG |
650 | if (!(k & 3)) |
651 | left = AV_RN32A(&left_mv[mbsplits_left[k + 3]]); | |
652 | else | |
653 | left = AV_RN32A(&cur_mv[mbsplits_cur[k - 1]]); | |
654 | if (k <= 3) | |
655 | above = AV_RN32A(&top_mv[mbsplits_top[k + 12]]); | |
656 | else | |
657 | above = AV_RN32A(&cur_mv[mbsplits_cur[k - 4]]); | |
7ed06b2b RB |
658 | |
659 | submv_prob = get_submv_prob(left, above); | |
3b636f21 DC |
660 | |
661 | switch (vp8_rac_get_tree(c, vp8_submv_ref_tree, submv_prob)) { | |
662 | case VP8_SUBMVMODE_NEW4X4: | |
9fddd14a JGG |
663 | mb->bmv[n].y = mb->mv.y + read_mv_component(c, s->prob->mvc[0]); |
664 | mb->bmv[n].x = mb->mv.x + read_mv_component(c, s->prob->mvc[1]); | |
3b636f21 DC |
665 | break; |
666 | case VP8_SUBMVMODE_ZERO4X4: | |
14767f35 | 667 | AV_ZERO32(&mb->bmv[n]); |
3b636f21 DC |
668 | break; |
669 | case VP8_SUBMVMODE_LEFT4X4: | |
7bf254c4 | 670 | AV_WN32A(&mb->bmv[n], left); |
3b636f21 DC |
671 | break; |
672 | case VP8_SUBMVMODE_TOP4X4: | |
7bf254c4 | 673 | AV_WN32A(&mb->bmv[n], above); |
3b636f21 DC |
674 | break; |
675 | } | |
3b636f21 | 676 | } |
7ed06b2b RB |
677 | |
678 | return num; | |
3b636f21 DC |
679 | } |
680 | ||
681 | static inline void decode_intra4x4_modes(VP56RangeCoder *c, uint8_t *intra4x4, | |
682 | int stride, int keyframe) | |
683 | { | |
d1c58fce | 684 | int x, y, t, l, i; |
3b636f21 | 685 | |
d1c58fce JGG |
686 | if (keyframe) { |
687 | const uint8_t *ctx; | |
688 | for (y = 0; y < 4; y++) { | |
689 | for (x = 0; x < 4; x++) { | |
3b636f21 DC |
690 | t = intra4x4[x - stride]; |
691 | l = intra4x4[x - 1]; | |
692 | ctx = vp8_pred4x4_prob_intra[t][l]; | |
d1c58fce | 693 | intra4x4[x] = vp8_rac_get_tree(c, vp8_pred4x4_tree, ctx); |
3b636f21 | 694 | } |
d1c58fce | 695 | intra4x4 += stride; |
3b636f21 | 696 | } |
d1c58fce JGG |
697 | } else { |
698 | for (i = 0; i < 16; i++) | |
699 | intra4x4[i] = vp8_rac_get_tree(c, vp8_pred4x4_tree, vp8_pred4x4_prob_inter); | |
3b636f21 DC |
700 | } |
701 | } | |
702 | ||
703 | static void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, | |
c55e0d34 | 704 | uint8_t *intra4x4, uint8_t *segment) |
3b636f21 DC |
705 | { |
706 | VP56RangeCoder *c = &s->c; | |
3b636f21 DC |
707 | |
708 | if (s->segmentation.update_map) | |
c55e0d34 | 709 | *segment = vp8_rac_get_tree(c, vp8_segmentid_tree, s->prob->segmentid); |
b9a7186b | 710 | s->segment = *segment; |
3b636f21 DC |
711 | |
712 | mb->skip = s->mbskip_enabled ? vp56_rac_get_prob(c, s->prob->mbskip) : 0; | |
713 | ||
714 | if (s->keyframe) { | |
715 | mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_intra, vp8_pred16x16_prob_intra); | |
716 | ||
717 | if (mb->mode == MODE_I4x4) { | |
718 | decode_intra4x4_modes(c, intra4x4, s->b4_stride, 1); | |
719 | } else | |
720 | fill_rectangle(intra4x4, 4, 4, s->b4_stride, vp8_pred4x4_mode[mb->mode], 1); | |
721 | ||
722 | s->chroma_pred_mode = vp8_rac_get_tree(c, vp8_pred8x8c_tree, vp8_pred8x8c_prob_intra); | |
723 | mb->ref_frame = VP56_FRAME_CURRENT; | |
724 | } else if (vp56_rac_get_prob(c, s->prob->intra)) { | |
725 | VP56mv near[2], best; | |
702e8d33 | 726 | uint8_t cnt[4] = { 0 }; |
3b636f21 DC |
727 | uint8_t p[4]; |
728 | ||
729 | // inter MB, 16.2 | |
730 | if (vp56_rac_get_prob(c, s->prob->last)) | |
731 | mb->ref_frame = vp56_rac_get_prob(c, s->prob->golden) ? | |
732 | VP56_FRAME_GOLDEN2 /* altref */ : VP56_FRAME_GOLDEN; | |
733 | else | |
734 | mb->ref_frame = VP56_FRAME_PREVIOUS; | |
c4211046 | 735 | s->ref_count[mb->ref_frame-1]++; |
3b636f21 DC |
736 | |
737 | // motion vectors, 16.3 | |
738 | find_near_mvs(s, mb, mb_x, mb_y, near, &best, cnt); | |
702e8d33 JGG |
739 | p[0] = vp8_mode_contexts[cnt[0]][0]; |
740 | p[1] = vp8_mode_contexts[cnt[1]][1]; | |
741 | p[2] = vp8_mode_contexts[cnt[2]][2]; | |
742 | p[3] = vp8_mode_contexts[cnt[3]][3]; | |
3b636f21 DC |
743 | mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_mvinter, p); |
744 | switch (mb->mode) { | |
745 | case VP8_MVMODE_SPLIT: | |
9fddd14a JGG |
746 | clamp_mv(s, &mb->mv, &mb->mv, mb_x, mb_y); |
747 | mb->mv = mb->bmv[decode_splitmvs(s, c, mb) - 1]; | |
3b636f21 DC |
748 | break; |
749 | case VP8_MVMODE_ZERO: | |
14767f35 | 750 | AV_ZERO32(&mb->mv); |
3b636f21 DC |
751 | break; |
752 | case VP8_MVMODE_NEAREST: | |
753 | clamp_mv(s, &mb->mv, &near[0], mb_x, mb_y); | |
754 | break; | |
755 | case VP8_MVMODE_NEAR: | |
756 | clamp_mv(s, &mb->mv, &near[1], mb_x, mb_y); | |
757 | break; | |
758 | case VP8_MVMODE_NEW: | |
9fddd14a JGG |
759 | clamp_mv(s, &mb->mv, &mb->mv, mb_x, mb_y); |
760 | mb->mv.y += + read_mv_component(c, s->prob->mvc[0]); | |
761 | mb->mv.x += + read_mv_component(c, s->prob->mvc[1]); | |
3b636f21 DC |
762 | break; |
763 | } | |
764 | if (mb->mode != VP8_MVMODE_SPLIT) { | |
7ed06b2b RB |
765 | mb->partitioning = VP8_SPLITMVMODE_NONE; |
766 | mb->bmv[0] = mb->mv; | |
3b636f21 DC |
767 | } |
768 | } else { | |
769 | // intra MB, 16.1 | |
770 | mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_inter, s->prob->pred16x16); | |
771 | ||
158e062c | 772 | if (mb->mode == MODE_I4x4) |
d1c58fce | 773 | decode_intra4x4_modes(c, intra4x4, 4, 0); |
3b636f21 DC |
774 | |
775 | s->chroma_pred_mode = vp8_rac_get_tree(c, vp8_pred8x8c_tree, s->prob->pred8x8c); | |
776 | mb->ref_frame = VP56_FRAME_CURRENT; | |
b946111f | 777 | mb->partitioning = VP8_SPLITMVMODE_NONE; |
14767f35 | 778 | AV_ZERO32(&mb->bmv[0]); |
3b636f21 DC |
779 | } |
780 | } | |
781 | ||
782 | /** | |
e394953e RB |
783 | * @param c arithmetic bitstream reader context |
784 | * @param block destination for block coefficients | |
785 | * @param probs probabilities to use when reading trees from the bitstream | |
3b636f21 DC |
786 | * @param i initial coeff index, 0 unless a separate DC block is coded |
787 | * @param zero_nhood the initial prediction context for number of surrounding | |
788 | * all-zero blocks (only left/top, so 0-2) | |
3fa76268 | 789 | * @param qmul array holding the dc/ac dequant factor at position 0/1 |
3b636f21 DC |
790 | * @return 0 if no coeffs were decoded |
791 | * otherwise, the index of the last coeff decoded plus one | |
792 | */ | |
793 | static int decode_block_coeffs(VP56RangeCoder *c, DCTELEM block[16], | |
794 | uint8_t probs[8][3][NUM_DCT_TOKENS-1], | |
795 | int i, int zero_nhood, int16_t qmul[2]) | |
796 | { | |
797 | int token, nonzero = 0; | |
798 | int offset = 0; | |
799 | ||
800 | for (; i < 16; i++) { | |
801 | token = vp8_rac_get_tree_with_offset(c, vp8_coeff_tree, probs[vp8_coeff_band[i]][zero_nhood], offset); | |
802 | ||
803 | if (token == DCT_EOB) | |
804 | break; | |
805 | else if (token >= DCT_CAT1) { | |
806 | int cat = token-DCT_CAT1; | |
807 | token = vp8_rac_get_coeff(c, vp8_dct_cat_prob[cat]); | |
2a38c2e9 | 808 | token += 3 + (2<<cat); |
3b636f21 DC |
809 | } |
810 | ||
811 | // after the first token, the non-zero prediction context becomes | |
812 | // based on the last decoded coeff | |
813 | if (!token) { | |
814 | zero_nhood = 0; | |
815 | offset = 1; | |
816 | continue; | |
817 | } else if (token == 1) | |
818 | zero_nhood = 1; | |
819 | else | |
820 | zero_nhood = 2; | |
821 | ||
822 | // todo: full [16] qmat? load into register? | |
823 | block[zigzag_scan[i]] = (vp8_rac_get(c) ? -token : token) * qmul[!!i]; | |
824 | nonzero = i+1; | |
825 | offset = 0; | |
826 | } | |
827 | return nonzero; | |
828 | } | |
829 | ||
830 | static void decode_mb_coeffs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb, | |
831 | uint8_t t_nnz[9], uint8_t l_nnz[9]) | |
832 | { | |
833 | LOCAL_ALIGNED_16(DCTELEM, dc,[16]); | |
834 | int i, x, y, luma_start = 0, luma_ctx = 3; | |
835 | int nnz_pred, nnz, nnz_total = 0; | |
b9a7186b | 836 | int segment = s->segment; |
3b636f21 | 837 | |
3b636f21 DC |
838 | if (mb->mode != MODE_I4x4 && mb->mode != VP8_MVMODE_SPLIT) { |
839 | AV_ZERO128(dc); | |
840 | AV_ZERO128(dc+8); | |
841 | nnz_pred = t_nnz[8] + l_nnz[8]; | |
842 | ||
843 | // decode DC values and do hadamard | |
844 | nnz = decode_block_coeffs(c, dc, s->prob->token[1], 0, nnz_pred, | |
845 | s->qmat[segment].luma_dc_qmul); | |
846 | l_nnz[8] = t_nnz[8] = !!nnz; | |
847 | nnz_total += nnz; | |
848 | s->vp8dsp.vp8_luma_dc_wht(s->block, dc); | |
849 | luma_start = 1; | |
850 | luma_ctx = 0; | |
851 | } | |
852 | ||
853 | // luma blocks | |
854 | for (y = 0; y < 4; y++) | |
855 | for (x = 0; x < 4; x++) { | |
856 | nnz_pred = l_nnz[y] + t_nnz[x]; | |
857 | nnz = decode_block_coeffs(c, s->block[y][x], s->prob->token[luma_ctx], luma_start, | |
858 | nnz_pred, s->qmat[segment].luma_qmul); | |
859 | // nnz+luma_start may be one more than the actual last index, but we don't care | |
860 | s->non_zero_count_cache[y][x] = nnz + luma_start; | |
861 | t_nnz[x] = l_nnz[y] = !!nnz; | |
862 | nnz_total += nnz; | |
863 | } | |
864 | ||
865 | // chroma blocks | |
866 | // TODO: what to do about dimensions? 2nd dim for luma is x, | |
867 | // but for chroma it's (y<<1)|x | |
868 | for (i = 4; i < 6; i++) | |
869 | for (y = 0; y < 2; y++) | |
870 | for (x = 0; x < 2; x++) { | |
871 | nnz_pred = l_nnz[i+2*y] + t_nnz[i+2*x]; | |
872 | nnz = decode_block_coeffs(c, s->block[i][(y<<1)+x], s->prob->token[2], 0, | |
873 | nnz_pred, s->qmat[segment].chroma_qmul); | |
874 | s->non_zero_count_cache[i][(y<<1)+x] = nnz; | |
875 | t_nnz[i+2*x] = l_nnz[i+2*y] = !!nnz; | |
876 | nnz_total += nnz; | |
877 | } | |
878 | ||
879 | // if there were no coded coeffs despite the macroblock not being marked skip, | |
880 | // we MUST not do the inner loop filter and should not do IDCT | |
881 | // Since skip isn't used for bitstream prediction, just manually set it. | |
882 | if (!nnz_total) | |
883 | mb->skip = 1; | |
884 | } | |
885 | ||
9ac831c2 DC |
886 | static av_always_inline |
887 | void backup_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, | |
888 | int linesize, int uvlinesize, int simple) | |
889 | { | |
890 | AV_COPY128(top_border, src_y + 15*linesize); | |
891 | if (!simple) { | |
892 | AV_COPY64(top_border+16, src_cb + 7*uvlinesize); | |
893 | AV_COPY64(top_border+24, src_cr + 7*uvlinesize); | |
894 | } | |
895 | } | |
896 | ||
897 | static av_always_inline | |
898 | void xchg_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr, | |
899 | int linesize, int uvlinesize, int mb_x, int mb_y, int mb_width, | |
900 | int simple, int xchg) | |
901 | { | |
902 | uint8_t *top_border_m1 = top_border-32; // for TL prediction | |
903 | src_y -= linesize; | |
904 | src_cb -= uvlinesize; | |
905 | src_cr -= uvlinesize; | |
906 | ||
096971e8 MR |
907 | #define XCHG(a,b,xchg) do { \ |
908 | if (xchg) AV_SWAP64(b,a); \ | |
909 | else AV_COPY64(b,a); \ | |
910 | } while (0) | |
9ac831c2 DC |
911 | |
912 | XCHG(top_border_m1+8, src_y-8, xchg); | |
913 | XCHG(top_border, src_y, xchg); | |
914 | XCHG(top_border+8, src_y+8, 1); | |
070ce7ef | 915 | if (mb_x < mb_width-1) |
9ac831c2 | 916 | XCHG(top_border+32, src_y+16, 1); |
070ce7ef | 917 | |
9ac831c2 DC |
918 | // only copy chroma for normal loop filter |
919 | // or to initialize the top row to 127 | |
920 | if (!simple || !mb_y) { | |
921 | XCHG(top_border_m1+16, src_cb-8, xchg); | |
922 | XCHG(top_border_m1+24, src_cr-8, xchg); | |
923 | XCHG(top_border+16, src_cb, 1); | |
924 | XCHG(top_border+24, src_cr, 1); | |
925 | } | |
926 | } | |
927 | ||
3b636f21 DC |
928 | static int check_intra_pred_mode(int mode, int mb_x, int mb_y) |
929 | { | |
930 | if (mode == DC_PRED8x8) { | |
a71abb71 JGG |
931 | if (!mb_x) { |
932 | mode = mb_y ? TOP_DC_PRED8x8 : DC_128_PRED8x8; | |
933 | } else if (!mb_y) { | |
09959ec4 | 934 | mode = LEFT_DC_PRED8x8; |
a71abb71 | 935 | } |
3b636f21 DC |
936 | } |
937 | return mode; | |
938 | } | |
939 | ||
940 | static void intra_predict(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb, | |
d1c58fce | 941 | uint8_t *intra4x4, int mb_x, int mb_y) |
3b636f21 DC |
942 | { |
943 | int x, y, mode, nnz, tr; | |
944 | ||
9ac831c2 DC |
945 | // for the first row, we need to run xchg_mb_border to init the top edge to 127 |
946 | // otherwise, skip it if we aren't going to deblock | |
947 | if (s->deblock_filter || !mb_y) | |
948 | xchg_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2], | |
949 | s->linesize, s->uvlinesize, mb_x, mb_y, s->mb_width, | |
950 | s->filter.simple, 1); | |
951 | ||
3b636f21 DC |
952 | if (mb->mode < MODE_I4x4) { |
953 | mode = check_intra_pred_mode(mb->mode, mb_x, mb_y); | |
954 | s->hpc.pred16x16[mode](dst[0], s->linesize); | |
955 | } else { | |
956 | uint8_t *ptr = dst[0]; | |
d1c58fce | 957 | int stride = s->keyframe ? s->b4_stride : 4; |
3b636f21 DC |
958 | |
959 | // all blocks on the right edge of the macroblock use bottom edge | |
960 | // the top macroblock for their topright edge | |
961 | uint8_t *tr_right = ptr - s->linesize + 16; | |
962 | ||
963 | // if we're on the right edge of the frame, said edge is extended | |
964 | // from the top macroblock | |
965 | if (mb_x == s->mb_width-1) { | |
966 | tr = tr_right[-1]*0x01010101; | |
967 | tr_right = (uint8_t *)&tr; | |
968 | } | |
969 | ||
b74f70d6 JGG |
970 | if (mb->skip) |
971 | AV_ZERO128(s->non_zero_count_cache); | |
972 | ||
3b636f21 DC |
973 | for (y = 0; y < 4; y++) { |
974 | uint8_t *topright = ptr + 4 - s->linesize; | |
975 | for (x = 0; x < 4; x++) { | |
976 | if (x == 3) | |
977 | topright = tr_right; | |
978 | ||
d1c58fce | 979 | s->hpc.pred4x4[intra4x4[x]](ptr+4*x, topright, s->linesize); |
3b636f21 DC |
980 | |
981 | nnz = s->non_zero_count_cache[y][x]; | |
982 | if (nnz) { | |
983 | if (nnz == 1) | |
984 | s->vp8dsp.vp8_idct_dc_add(ptr+4*x, s->block[y][x], s->linesize); | |
985 | else | |
986 | s->vp8dsp.vp8_idct_add(ptr+4*x, s->block[y][x], s->linesize); | |
987 | } | |
988 | topright += 4; | |
989 | } | |
990 | ||
991 | ptr += 4*s->linesize; | |
d1c58fce | 992 | intra4x4 += stride; |
3b636f21 DC |
993 | } |
994 | } | |
995 | ||
996 | mode = check_intra_pred_mode(s->chroma_pred_mode, mb_x, mb_y); | |
997 | s->hpc.pred8x8[mode](dst[1], s->uvlinesize); | |
998 | s->hpc.pred8x8[mode](dst[2], s->uvlinesize); | |
9ac831c2 DC |
999 | |
1000 | if (s->deblock_filter || !mb_y) | |
1001 | xchg_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2], | |
1002 | s->linesize, s->uvlinesize, mb_x, mb_y, s->mb_width, | |
1003 | s->filter.simple, 0); | |
3b636f21 DC |
1004 | } |
1005 | ||
1006 | /** | |
1007 | * Generic MC function. | |
1008 | * | |
1009 | * @param s VP8 decoding context | |
1010 | * @param luma 1 for luma (Y) planes, 0 for chroma (Cb/Cr) planes | |
1011 | * @param dst target buffer for block data at block position | |
1012 | * @param src reference picture buffer at origin (0, 0) | |
1013 | * @param mv motion vector (relative to block position) to get pixel data from | |
1014 | * @param x_off horizontal position of block from origin (0, 0) | |
1015 | * @param y_off vertical position of block from origin (0, 0) | |
1016 | * @param block_w width of block (16, 8 or 4) | |
1017 | * @param block_h height of block (always same as block_w) | |
1018 | * @param width width of src/dst plane data | |
1019 | * @param height height of src/dst plane data | |
1020 | * @param linesize size of a single line of plane data, including padding | |
e394953e | 1021 | * @param mc_func motion compensation function pointers (bilinear or sixtap MC) |
3b636f21 DC |
1022 | */ |
1023 | static inline void vp8_mc(VP8Context *s, int luma, | |
1024 | uint8_t *dst, uint8_t *src, const VP56mv *mv, | |
1025 | int x_off, int y_off, int block_w, int block_h, | |
1026 | int width, int height, int linesize, | |
d6f8476b | 1027 | vp8_mc_func mc_func[3][3]) |
3b636f21 | 1028 | { |
c0498b30 JGG |
1029 | if (AV_RN32A(mv)) { |
1030 | static const uint8_t idx[8] = { 0, 1, 2, 1, 2, 1, 2, 1 }; | |
1031 | int mx = (mv->x << luma)&7, mx_idx = idx[mx]; | |
1032 | int my = (mv->y << luma)&7, my_idx = idx[my]; | |
1033 | ||
1034 | x_off += mv->x >> (3 - luma); | |
1035 | y_off += mv->y >> (3 - luma); | |
1036 | ||
1037 | // edge emulation | |
1038 | src += y_off * linesize + x_off; | |
1039 | if (x_off < 2 || x_off >= width - block_w - 3 || | |
1040 | y_off < 2 || y_off >= height - block_h - 3) { | |
1041 | ff_emulated_edge_mc(s->edge_emu_buffer, src - 2 * linesize - 2, linesize, | |
1042 | block_w + 5, block_h + 5, | |
1043 | x_off - 2, y_off - 2, width, height); | |
1044 | src = s->edge_emu_buffer + 2 + linesize * 2; | |
1045 | } | |
1046 | mc_func[my_idx][mx_idx](dst, linesize, src, linesize, block_h, mx, my); | |
1047 | } else | |
1048 | mc_func[0][0](dst, linesize, src + y_off * linesize + x_off, linesize, block_h, 0, 0); | |
3b636f21 DC |
1049 | } |
1050 | ||
7c4dcf81 RB |
1051 | static inline void vp8_mc_part(VP8Context *s, uint8_t *dst[3], |
1052 | AVFrame *ref_frame, int x_off, int y_off, | |
1053 | int bx_off, int by_off, | |
1054 | int block_w, int block_h, | |
1055 | int width, int height, VP56mv *mv) | |
1056 | { | |
1057 | VP56mv uvmv = *mv; | |
1058 | ||
1059 | /* Y */ | |
1060 | vp8_mc(s, 1, dst[0] + by_off * s->linesize + bx_off, | |
1061 | ref_frame->data[0], mv, x_off + bx_off, y_off + by_off, | |
1062 | block_w, block_h, width, height, s->linesize, | |
1063 | s->put_pixels_tab[block_w == 8]); | |
1064 | ||
1065 | /* U/V */ | |
1066 | if (s->profile == 3) { | |
1067 | uvmv.x &= ~7; | |
1068 | uvmv.y &= ~7; | |
1069 | } | |
1070 | x_off >>= 1; y_off >>= 1; | |
1071 | bx_off >>= 1; by_off >>= 1; | |
1072 | width >>= 1; height >>= 1; | |
1073 | block_w >>= 1; block_h >>= 1; | |
1074 | vp8_mc(s, 0, dst[1] + by_off * s->uvlinesize + bx_off, | |
1075 | ref_frame->data[1], &uvmv, x_off + bx_off, y_off + by_off, | |
1076 | block_w, block_h, width, height, s->uvlinesize, | |
1077 | s->put_pixels_tab[1 + (block_w == 4)]); | |
1078 | vp8_mc(s, 0, dst[2] + by_off * s->uvlinesize + bx_off, | |
1079 | ref_frame->data[2], &uvmv, x_off + bx_off, y_off + by_off, | |
1080 | block_w, block_h, width, height, s->uvlinesize, | |
1081 | s->put_pixels_tab[1 + (block_w == 4)]); | |
1082 | } | |
1083 | ||
d864dee8 JGG |
1084 | /* Fetch pixels for estimated mv 4 macroblocks ahead. |
1085 | * Optimized for 64-byte cache lines. Inspired by ffh264 prefetch_motion. */ | |
ef38842f | 1086 | static inline void prefetch_motion(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, int mb_xy, int ref) |
d864dee8 | 1087 | { |
ef38842f JGG |
1088 | /* Don't prefetch refs that haven't been used very often this frame. */ |
1089 | if (s->ref_count[ref-1] > (mb_xy >> 5)) { | |
c4211046 JGG |
1090 | int x_off = mb_x << 4, y_off = mb_y << 4; |
1091 | int mx = mb->mv.x + x_off + 8; | |
1092 | int my = mb->mv.y + y_off; | |
1093 | uint8_t **src= s->framep[ref]->data; | |
1094 | int off= mx + (my + (mb_x&3)*4)*s->linesize + 64; | |
1095 | s->dsp.prefetch(src[0]+off, s->linesize, 4); | |
1096 | off= (mx>>1) + ((my>>1) + (mb_x&7))*s->uvlinesize + 64; | |
1097 | s->dsp.prefetch(src[1]+off, src[2]-src[1], 2); | |
1098 | } | |
d864dee8 JGG |
1099 | } |
1100 | ||
3b636f21 DC |
1101 | /** |
1102 | * Apply motion vectors to prediction buffer, chapter 18. | |
1103 | */ | |
1104 | static void inter_predict(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb, | |
1105 | int mb_x, int mb_y) | |
1106 | { | |
1107 | int x_off = mb_x << 4, y_off = mb_y << 4; | |
1108 | int width = 16*s->mb_width, height = 16*s->mb_height; | |
d292c345 JGG |
1109 | AVFrame *ref = s->framep[mb->ref_frame]; |
1110 | VP56mv *bmv = mb->bmv; | |
3b636f21 DC |
1111 | |
1112 | if (mb->mode < VP8_MVMODE_SPLIT) { | |
d292c345 | 1113 | vp8_mc_part(s, dst, ref, x_off, y_off, |
7c4dcf81 RB |
1114 | 0, 0, 16, 16, width, height, &mb->mv); |
1115 | } else switch (mb->partitioning) { | |
1116 | case VP8_SPLITMVMODE_4x4: { | |
3b636f21 | 1117 | int x, y; |
7c4dcf81 | 1118 | VP56mv uvmv; |
3b636f21 DC |
1119 | |
1120 | /* Y */ | |
1121 | for (y = 0; y < 4; y++) { | |
1122 | for (x = 0; x < 4; x++) { | |
1123 | vp8_mc(s, 1, dst[0] + 4*y*s->linesize + x*4, | |
d292c345 | 1124 | ref->data[0], &bmv[4*y + x], |
3b636f21 DC |
1125 | 4*x + x_off, 4*y + y_off, 4, 4, |
1126 | width, height, s->linesize, | |
0ef1dbed | 1127 | s->put_pixels_tab[2]); |
3b636f21 DC |
1128 | } |
1129 | } | |
1130 | ||
1131 | /* U/V */ | |
1132 | x_off >>= 1; y_off >>= 1; width >>= 1; height >>= 1; | |
1133 | for (y = 0; y < 2; y++) { | |
1134 | for (x = 0; x < 2; x++) { | |
1135 | uvmv.x = mb->bmv[ 2*y * 4 + 2*x ].x + | |
1136 | mb->bmv[ 2*y * 4 + 2*x+1].x + | |
1137 | mb->bmv[(2*y+1) * 4 + 2*x ].x + | |
1138 | mb->bmv[(2*y+1) * 4 + 2*x+1].x; | |
1139 | uvmv.y = mb->bmv[ 2*y * 4 + 2*x ].y + | |
1140 | mb->bmv[ 2*y * 4 + 2*x+1].y + | |
1141 | mb->bmv[(2*y+1) * 4 + 2*x ].y + | |
1142 | mb->bmv[(2*y+1) * 4 + 2*x+1].y; | |
8f910a56 SG |
1143 | uvmv.x = (uvmv.x + 2 + (uvmv.x >> (INT_BIT-1))) >> 2; |
1144 | uvmv.y = (uvmv.y + 2 + (uvmv.y >> (INT_BIT-1))) >> 2; | |
3b636f21 DC |
1145 | if (s->profile == 3) { |
1146 | uvmv.x &= ~7; | |
1147 | uvmv.y &= ~7; | |
1148 | } | |
1149 | vp8_mc(s, 0, dst[1] + 4*y*s->uvlinesize + x*4, | |
d292c345 | 1150 | ref->data[1], &uvmv, |
3b636f21 DC |
1151 | 4*x + x_off, 4*y + y_off, 4, 4, |
1152 | width, height, s->uvlinesize, | |
0ef1dbed | 1153 | s->put_pixels_tab[2]); |
3b636f21 | 1154 | vp8_mc(s, 0, dst[2] + 4*y*s->uvlinesize + x*4, |
d292c345 | 1155 | ref->data[2], &uvmv, |
3b636f21 DC |
1156 | 4*x + x_off, 4*y + y_off, 4, 4, |
1157 | width, height, s->uvlinesize, | |
0ef1dbed | 1158 | s->put_pixels_tab[2]); |
3b636f21 DC |
1159 | } |
1160 | } | |
7c4dcf81 RB |
1161 | break; |
1162 | } | |
1163 | case VP8_SPLITMVMODE_16x8: | |
d292c345 JGG |
1164 | vp8_mc_part(s, dst, ref, x_off, y_off, |
1165 | 0, 0, 16, 8, width, height, &bmv[0]); | |
1166 | vp8_mc_part(s, dst, ref, x_off, y_off, | |
1167 | 0, 8, 16, 8, width, height, &bmv[1]); | |
7c4dcf81 RB |
1168 | break; |
1169 | case VP8_SPLITMVMODE_8x16: | |
d292c345 JGG |
1170 | vp8_mc_part(s, dst, ref, x_off, y_off, |
1171 | 0, 0, 8, 16, width, height, &bmv[0]); | |
1172 | vp8_mc_part(s, dst, ref, x_off, y_off, | |
1173 | 8, 0, 8, 16, width, height, &bmv[1]); | |
7c4dcf81 RB |
1174 | break; |
1175 | case VP8_SPLITMVMODE_8x8: | |
d292c345 JGG |
1176 | vp8_mc_part(s, dst, ref, x_off, y_off, |
1177 | 0, 0, 8, 8, width, height, &bmv[0]); | |
1178 | vp8_mc_part(s, dst, ref, x_off, y_off, | |
1179 | 8, 0, 8, 8, width, height, &bmv[1]); | |
1180 | vp8_mc_part(s, dst, ref, x_off, y_off, | |
1181 | 0, 8, 8, 8, width, height, &bmv[2]); | |
1182 | vp8_mc_part(s, dst, ref, x_off, y_off, | |
1183 | 8, 8, 8, 8, width, height, &bmv[3]); | |
7c4dcf81 | 1184 | break; |
3b636f21 DC |
1185 | } |
1186 | } | |
1187 | ||
8a467b2d | 1188 | static void idct_mb(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb) |
3b636f21 | 1189 | { |
3df56f41 | 1190 | int x, y, ch; |
3b636f21 | 1191 | |
8a467b2d JGG |
1192 | if (mb->mode != MODE_I4x4) { |
1193 | uint8_t *y_dst = dst[0]; | |
3b636f21 | 1194 | for (y = 0; y < 4; y++) { |
3df56f41 JGG |
1195 | uint32_t nnz4 = AV_RN32A(s->non_zero_count_cache[y]); |
1196 | if (nnz4) { | |
1197 | if (nnz4&~0x01010101) { | |
8a467b2d | 1198 | for (x = 0; x < 4; x++) { |
3df56f41 | 1199 | int nnz = s->non_zero_count_cache[y][x]; |
8a467b2d JGG |
1200 | if (nnz) { |
1201 | if (nnz == 1) | |
1202 | s->vp8dsp.vp8_idct_dc_add(y_dst+4*x, s->block[y][x], s->linesize); | |
1203 | else | |
1204 | s->vp8dsp.vp8_idct_add(y_dst+4*x, s->block[y][x], s->linesize); | |
1205 | } | |
1206 | } | |
1207 | } else { | |
3ae079a3 | 1208 | s->vp8dsp.vp8_idct_dc_add4y(y_dst, s->block[y], s->linesize); |
3b636f21 DC |
1209 | } |
1210 | } | |
1211 | y_dst += 4*s->linesize; | |
1212 | } | |
8a467b2d | 1213 | } |
3b636f21 | 1214 | |
8a467b2d | 1215 | for (ch = 0; ch < 2; ch++) { |
3ae079a3 JGG |
1216 | uint32_t nnz4 = AV_RN32A(s->non_zero_count_cache[4+ch]); |
1217 | if (nnz4) { | |
8a467b2d | 1218 | uint8_t *ch_dst = dst[1+ch]; |
3ae079a3 JGG |
1219 | if (nnz4&~0x01010101) { |
1220 | for (y = 0; y < 2; y++) { | |
1221 | for (x = 0; x < 2; x++) { | |
1222 | int nnz = s->non_zero_count_cache[4+ch][(y<<1)+x]; | |
1223 | if (nnz) { | |
1224 | if (nnz == 1) | |
1225 | s->vp8dsp.vp8_idct_dc_add(ch_dst+4*x, s->block[4+ch][(y<<1)+x], s->uvlinesize); | |
1226 | else | |
1227 | s->vp8dsp.vp8_idct_add(ch_dst+4*x, s->block[4+ch][(y<<1)+x], s->uvlinesize); | |
1228 | } | |
8a467b2d | 1229 | } |
3ae079a3 | 1230 | ch_dst += 4*s->uvlinesize; |
8a467b2d | 1231 | } |
3ae079a3 JGG |
1232 | } else { |
1233 | s->vp8dsp.vp8_idct_dc_add4uv(ch_dst, s->block[4+ch], s->uvlinesize); | |
3b636f21 DC |
1234 | } |
1235 | } | |
3b636f21 DC |
1236 | } |
1237 | } | |
1238 | ||
968570d6 | 1239 | static void filter_level_for_mb(VP8Context *s, VP8Macroblock *mb, VP8FilterStrength *f ) |
3b636f21 DC |
1240 | { |
1241 | int interior_limit, filter_level; | |
1242 | ||
1243 | if (s->segmentation.enabled) { | |
b9a7186b | 1244 | filter_level = s->segmentation.filter_level[s->segment]; |
3b636f21 DC |
1245 | if (!s->segmentation.absolute_vals) |
1246 | filter_level += s->filter.level; | |
1247 | } else | |
1248 | filter_level = s->filter.level; | |
1249 | ||
1250 | if (s->lf_delta.enabled) { | |
1251 | filter_level += s->lf_delta.ref[mb->ref_frame]; | |
1252 | ||
1253 | if (mb->ref_frame == VP56_FRAME_CURRENT) { | |
1254 | if (mb->mode == MODE_I4x4) | |
1255 | filter_level += s->lf_delta.mode[0]; | |
1256 | } else { | |
1257 | if (mb->mode == VP8_MVMODE_ZERO) | |
1258 | filter_level += s->lf_delta.mode[1]; | |
1259 | else if (mb->mode == VP8_MVMODE_SPLIT) | |
1260 | filter_level += s->lf_delta.mode[3]; | |
1261 | else | |
1262 | filter_level += s->lf_delta.mode[2]; | |
1263 | } | |
1264 | } | |
1265 | filter_level = av_clip(filter_level, 0, 63); | |
1266 | ||
1267 | interior_limit = filter_level; | |
1268 | if (s->filter.sharpness) { | |
1269 | interior_limit >>= s->filter.sharpness > 4 ? 2 : 1; | |
1270 | interior_limit = FFMIN(interior_limit, 9 - s->filter.sharpness); | |
1271 | } | |
1272 | interior_limit = FFMAX(interior_limit, 1); | |
1273 | ||
968570d6 JGG |
1274 | f->filter_level = filter_level; |
1275 | f->inner_limit = interior_limit; | |
c55e0d34 | 1276 | f->inner_filter = !mb->skip || mb->mode == MODE_I4x4 || mb->mode == VP8_MVMODE_SPLIT; |
3b636f21 DC |
1277 | } |
1278 | ||
c55e0d34 | 1279 | static void filter_mb(VP8Context *s, uint8_t *dst[3], VP8FilterStrength *f, int mb_x, int mb_y) |
3b636f21 | 1280 | { |
968570d6 JGG |
1281 | int mbedge_lim, bedge_lim, hev_thresh; |
1282 | int filter_level = f->filter_level; | |
1283 | int inner_limit = f->inner_limit; | |
c55e0d34 | 1284 | int inner_filter = f->inner_filter; |
145d3186 JGG |
1285 | int linesize = s->linesize; |
1286 | int uvlinesize = s->uvlinesize; | |
3b636f21 | 1287 | |
3b636f21 DC |
1288 | if (!filter_level) |
1289 | return; | |
1290 | ||
5245c04d DC |
1291 | mbedge_lim = 2*(filter_level+2) + inner_limit; |
1292 | bedge_lim = 2* filter_level + inner_limit; | |
968570d6 JGG |
1293 | hev_thresh = filter_level >= 15; |
1294 | ||
1295 | if (s->keyframe) { | |
1296 | if (filter_level >= 40) | |
1297 | hev_thresh = 2; | |
1298 | } else { | |
1299 | if (filter_level >= 40) | |
1300 | hev_thresh = 3; | |
1301 | else if (filter_level >= 20) | |
1302 | hev_thresh = 2; | |
1303 | } | |
5245c04d | 1304 | |
3b636f21 | 1305 | if (mb_x) { |
145d3186 | 1306 | s->vp8dsp.vp8_h_loop_filter16y(dst[0], linesize, |
3facfc99 | 1307 | mbedge_lim, inner_limit, hev_thresh); |
145d3186 | 1308 | s->vp8dsp.vp8_h_loop_filter8uv(dst[1], dst[2], uvlinesize, |
3facfc99 | 1309 | mbedge_lim, inner_limit, hev_thresh); |
3b636f21 DC |
1310 | } |
1311 | ||
c55e0d34 | 1312 | if (inner_filter) { |
145d3186 JGG |
1313 | s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+ 4, linesize, bedge_lim, |
1314 | inner_limit, hev_thresh); | |
1315 | s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+ 8, linesize, bedge_lim, | |
1316 | inner_limit, hev_thresh); | |
1317 | s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+12, linesize, bedge_lim, | |
1318 | inner_limit, hev_thresh); | |
1319 | s->vp8dsp.vp8_h_loop_filter8uv_inner(dst[1] + 4, dst[2] + 4, | |
1320 | uvlinesize, bedge_lim, | |
1321 | inner_limit, hev_thresh); | |
3b636f21 DC |
1322 | } |
1323 | ||
1324 | if (mb_y) { | |
145d3186 | 1325 | s->vp8dsp.vp8_v_loop_filter16y(dst[0], linesize, |
3facfc99 | 1326 | mbedge_lim, inner_limit, hev_thresh); |
145d3186 | 1327 | s->vp8dsp.vp8_v_loop_filter8uv(dst[1], dst[2], uvlinesize, |
3facfc99 | 1328 | mbedge_lim, inner_limit, hev_thresh); |
3b636f21 DC |
1329 | } |
1330 | ||
c55e0d34 | 1331 | if (inner_filter) { |
145d3186 JGG |
1332 | s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+ 4*linesize, |
1333 | linesize, bedge_lim, | |
1334 | inner_limit, hev_thresh); | |
1335 | s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+ 8*linesize, | |
1336 | linesize, bedge_lim, | |
1337 | inner_limit, hev_thresh); | |
1338 | s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+12*linesize, | |
1339 | linesize, bedge_lim, | |
1340 | inner_limit, hev_thresh); | |
1341 | s->vp8dsp.vp8_v_loop_filter8uv_inner(dst[1] + 4 * uvlinesize, | |
1342 | dst[2] + 4 * uvlinesize, | |
1343 | uvlinesize, bedge_lim, | |
3facfc99 | 1344 | inner_limit, hev_thresh); |
3b636f21 DC |
1345 | } |
1346 | } | |
1347 | ||
c55e0d34 | 1348 | static void filter_mb_simple(VP8Context *s, uint8_t *dst, VP8FilterStrength *f, int mb_x, int mb_y) |
3b636f21 | 1349 | { |
968570d6 JGG |
1350 | int mbedge_lim, bedge_lim; |
1351 | int filter_level = f->filter_level; | |
1352 | int inner_limit = f->inner_limit; | |
c55e0d34 | 1353 | int inner_filter = f->inner_filter; |
145d3186 | 1354 | int linesize = s->linesize; |
3b636f21 | 1355 | |
3b636f21 DC |
1356 | if (!filter_level) |
1357 | return; | |
1358 | ||
1359 | mbedge_lim = 2*(filter_level+2) + inner_limit; | |
1360 | bedge_lim = 2* filter_level + inner_limit; | |
1361 | ||
1362 | if (mb_x) | |
145d3186 | 1363 | s->vp8dsp.vp8_h_loop_filter_simple(dst, linesize, mbedge_lim); |
c55e0d34 | 1364 | if (inner_filter) { |
145d3186 JGG |
1365 | s->vp8dsp.vp8_h_loop_filter_simple(dst+ 4, linesize, bedge_lim); |
1366 | s->vp8dsp.vp8_h_loop_filter_simple(dst+ 8, linesize, bedge_lim); | |
1367 | s->vp8dsp.vp8_h_loop_filter_simple(dst+12, linesize, bedge_lim); | |
3b636f21 DC |
1368 | } |
1369 | ||
1370 | if (mb_y) | |
145d3186 | 1371 | s->vp8dsp.vp8_v_loop_filter_simple(dst, linesize, mbedge_lim); |
c55e0d34 | 1372 | if (inner_filter) { |
145d3186 JGG |
1373 | s->vp8dsp.vp8_v_loop_filter_simple(dst+ 4*linesize, linesize, bedge_lim); |
1374 | s->vp8dsp.vp8_v_loop_filter_simple(dst+ 8*linesize, linesize, bedge_lim); | |
1375 | s->vp8dsp.vp8_v_loop_filter_simple(dst+12*linesize, linesize, bedge_lim); | |
3b636f21 DC |
1376 | } |
1377 | } | |
1378 | ||
1379 | static void filter_mb_row(VP8Context *s, int mb_y) | |
1380 | { | |
968570d6 | 1381 | VP8FilterStrength *f = s->filter_strength; |
3b636f21 DC |
1382 | uint8_t *dst[3] = { |
1383 | s->framep[VP56_FRAME_CURRENT]->data[0] + 16*mb_y*s->linesize, | |
1384 | s->framep[VP56_FRAME_CURRENT]->data[1] + 8*mb_y*s->uvlinesize, | |
1385 | s->framep[VP56_FRAME_CURRENT]->data[2] + 8*mb_y*s->uvlinesize | |
1386 | }; | |
1387 | int mb_x; | |
1388 | ||
1389 | for (mb_x = 0; mb_x < s->mb_width; mb_x++) { | |
9ac831c2 | 1390 | backup_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2], s->linesize, s->uvlinesize, 0); |
c55e0d34 | 1391 | filter_mb(s, dst, f++, mb_x, mb_y); |
3b636f21 DC |
1392 | dst[0] += 16; |
1393 | dst[1] += 8; | |
1394 | dst[2] += 8; | |
1395 | } | |
1396 | } | |
1397 | ||
1398 | static void filter_mb_row_simple(VP8Context *s, int mb_y) | |
1399 | { | |
968570d6 | 1400 | VP8FilterStrength *f = s->filter_strength; |
968570d6 | 1401 | uint8_t *dst = s->framep[VP56_FRAME_CURRENT]->data[0] + 16*mb_y*s->linesize; |
3b636f21 DC |
1402 | int mb_x; |
1403 | ||
1404 | for (mb_x = 0; mb_x < s->mb_width; mb_x++) { | |
9ac831c2 | 1405 | backup_mb_border(s->top_border[mb_x+1], dst, NULL, NULL, s->linesize, 0, 1); |
c55e0d34 | 1406 | filter_mb_simple(s, dst, f++, mb_x, mb_y); |
3b636f21 DC |
1407 | dst += 16; |
1408 | } | |
1409 | } | |
1410 | ||
1411 | static int vp8_decode_frame(AVCodecContext *avctx, void *data, int *data_size, | |
1412 | AVPacket *avpkt) | |
1413 | { | |
1414 | VP8Context *s = avctx->priv_data; | |
1415 | int ret, mb_x, mb_y, i, y, referenced; | |
1416 | enum AVDiscard skip_thresh; | |
86721533 | 1417 | AVFrame *curframe = NULL; |
3b636f21 DC |
1418 | |
1419 | if ((ret = decode_frame_header(s, avpkt->data, avpkt->size)) < 0) | |
1420 | return ret; | |
1421 | ||
1422 | referenced = s->update_last || s->update_golden == VP56_FRAME_CURRENT | |
1423 | || s->update_altref == VP56_FRAME_CURRENT; | |
1424 | ||
1425 | skip_thresh = !referenced ? AVDISCARD_NONREF : | |
1426 | !s->keyframe ? AVDISCARD_NONKEY : AVDISCARD_ALL; | |
1427 | ||
1428 | if (avctx->skip_frame >= skip_thresh) { | |
1429 | s->invisible = 1; | |
1430 | goto skip_decode; | |
1431 | } | |
9ac831c2 | 1432 | s->deblock_filter = s->filter.level && avctx->skip_loop_filter < skip_thresh; |
3b636f21 DC |
1433 | |
1434 | for (i = 0; i < 4; i++) | |
1435 | if (&s->frames[i] != s->framep[VP56_FRAME_PREVIOUS] && | |
1436 | &s->frames[i] != s->framep[VP56_FRAME_GOLDEN] && | |
1437 | &s->frames[i] != s->framep[VP56_FRAME_GOLDEN2]) { | |
1438 | curframe = s->framep[VP56_FRAME_CURRENT] = &s->frames[i]; | |
1439 | break; | |
1440 | } | |
1441 | if (curframe->data[0]) | |
1442 | avctx->release_buffer(avctx, curframe); | |
1443 | ||
1444 | curframe->key_frame = s->keyframe; | |
1445 | curframe->pict_type = s->keyframe ? FF_I_TYPE : FF_P_TYPE; | |
1446 | curframe->reference = referenced ? 3 : 0; | |
1447 | if ((ret = avctx->get_buffer(avctx, curframe))) { | |
1448 | av_log(avctx, AV_LOG_ERROR, "get_buffer() failed!\n"); | |
1449 | return ret; | |
1450 | } | |
1451 | ||
1452 | // Given that arithmetic probabilities are updated every frame, it's quite likely | |
1453 | // that the values we have on a random interframe are complete junk if we didn't | |
1454 | // start decode on a keyframe. So just don't display anything rather than junk. | |
1455 | if (!s->keyframe && (!s->framep[VP56_FRAME_PREVIOUS] || | |
1456 | !s->framep[VP56_FRAME_GOLDEN] || | |
1457 | !s->framep[VP56_FRAME_GOLDEN2])) { | |
1458 | av_log(avctx, AV_LOG_WARNING, "Discarding interframe without a prior keyframe!\n"); | |
1459 | return AVERROR_INVALIDDATA; | |
1460 | } | |
1461 | ||
1462 | s->linesize = curframe->linesize[0]; | |
1463 | s->uvlinesize = curframe->linesize[1]; | |
1464 | ||
1465 | if (!s->edge_emu_buffer) | |
1466 | s->edge_emu_buffer = av_malloc(21*s->linesize); | |
1467 | ||
1468 | memset(s->top_nnz, 0, s->mb_width*sizeof(*s->top_nnz)); | |
1469 | ||
c55e0d34 JGG |
1470 | /* Zero macroblock structures for top/left prediction from outside the frame. */ |
1471 | memset(s->macroblocks, 0, (s->mb_width + s->mb_height*2)*sizeof(*s->macroblocks)); | |
1472 | ||
3b636f21 | 1473 | // top edge of 127 for intra prediction |
9ac831c2 | 1474 | memset(s->top_border, 127, (s->mb_width+1)*sizeof(*s->top_border)); |
c4211046 | 1475 | memset(s->ref_count, 0, sizeof(s->ref_count)); |
3b636f21 DC |
1476 | |
1477 | for (mb_y = 0; mb_y < s->mb_height; mb_y++) { | |
1478 | VP56RangeCoder *c = &s->coeff_partition[mb_y & (s->num_coeff_partitions-1)]; | |
c55e0d34 | 1479 | VP8Macroblock *mb = s->macroblocks + (s->mb_height - mb_y - 1)*2; |
3b636f21 | 1480 | uint8_t *intra4x4 = s->intra4x4_pred_mode + 4*mb_y*s->b4_stride; |
c55e0d34 | 1481 | uint8_t *segment_map = s->segmentation_map + mb_y*s->mb_stride; |
ef38842f | 1482 | int mb_xy = mb_y * s->mb_stride; |
3b636f21 DC |
1483 | uint8_t *dst[3] = { |
1484 | curframe->data[0] + 16*mb_y*s->linesize, | |
1485 | curframe->data[1] + 8*mb_y*s->uvlinesize, | |
1486 | curframe->data[2] + 8*mb_y*s->uvlinesize | |
1487 | }; | |
1488 | ||
1489 | memset(s->left_nnz, 0, sizeof(s->left_nnz)); | |
1490 | ||
1491 | // left edge of 129 for intra prediction | |
1492 | if (!(avctx->flags & CODEC_FLAG_EMU_EDGE)) | |
1493 | for (i = 0; i < 3; i++) | |
1494 | for (y = 0; y < 16>>!!i; y++) | |
1495 | dst[i][y*curframe->linesize[i]-1] = 129; | |
9ac831c2 DC |
1496 | if (mb_y) |
1497 | memset(s->top_border, 129, sizeof(*s->top_border)); | |
3b636f21 | 1498 | |
ef38842f | 1499 | for (mb_x = 0; mb_x < s->mb_width; mb_x++, mb_xy++, mb++) { |
d1c58fce | 1500 | uint8_t *intra4x4_mb = s->keyframe ? intra4x4 + 4*mb_x : s->intra4x4_pred_mode_mb; |
c55e0d34 | 1501 | uint8_t *segment_mb = segment_map+mb_x; |
d1c58fce | 1502 | |
d864dee8 JGG |
1503 | /* Prefetch the current frame, 4 MBs ahead */ |
1504 | s->dsp.prefetch(dst[0] + (mb_x&3)*4*s->linesize + 64, s->linesize, 4); | |
1505 | s->dsp.prefetch(dst[1] + (mb_x&7)*s->uvlinesize + 64, dst[2] - dst[1], 2); | |
1506 | ||
c55e0d34 | 1507 | decode_mb_mode(s, mb, mb_x, mb_y, intra4x4_mb, segment_mb); |
3b636f21 | 1508 | |
ef38842f | 1509 | prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_PREVIOUS); |
c4211046 | 1510 | |
3b636f21 DC |
1511 | if (!mb->skip) |
1512 | decode_mb_coeffs(s, c, mb, s->top_nnz[mb_x], s->left_nnz); | |
3b636f21 | 1513 | |
b946111f | 1514 | if (mb->mode <= MODE_I4x4) |
d1c58fce | 1515 | intra_predict(s, dst, mb, intra4x4_mb, mb_x, mb_y); |
b946111f | 1516 | else |
3b636f21 | 1517 | inter_predict(s, dst, mb, mb_x, mb_y); |
3b636f21 | 1518 | |
ef38842f | 1519 | prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_GOLDEN); |
c4211046 | 1520 | |
3b636f21 | 1521 | if (!mb->skip) { |
8a467b2d | 1522 | idct_mb(s, dst, mb); |
3b636f21 DC |
1523 | } else { |
1524 | AV_ZERO64(s->left_nnz); | |
1525 | AV_WN64(s->top_nnz[mb_x], 0); // array of 9, so unaligned | |
1526 | ||
1527 | // Reset DC block predictors if they would exist if the mb had coefficients | |
1528 | if (mb->mode != MODE_I4x4 && mb->mode != VP8_MVMODE_SPLIT) { | |
1529 | s->left_nnz[8] = 0; | |
1530 | s->top_nnz[mb_x][8] = 0; | |
1531 | } | |
1532 | } | |
1533 | ||
968570d6 JGG |
1534 | if (s->deblock_filter) |
1535 | filter_level_for_mb(s, mb, &s->filter_strength[mb_x]); | |
1536 | ||
ef38842f | 1537 | prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_GOLDEN2); |
c4211046 | 1538 | |
3b636f21 DC |
1539 | dst[0] += 16; |
1540 | dst[1] += 8; | |
1541 | dst[2] += 8; | |
3b636f21 | 1542 | } |
9ac831c2 | 1543 | if (s->deblock_filter) { |
3b636f21 | 1544 | if (s->filter.simple) |
9ac831c2 | 1545 | filter_mb_row_simple(s, mb_y); |
3b636f21 | 1546 | else |
9ac831c2 | 1547 | filter_mb_row(s, mb_y); |
3b636f21 DC |
1548 | } |
1549 | } | |
3b636f21 DC |
1550 | |
1551 | skip_decode: | |
1552 | // if future frames don't use the updated probabilities, | |
1553 | // reset them to the values we saved | |
1554 | if (!s->update_probabilities) | |
1555 | s->prob[0] = s->prob[1]; | |
1556 | ||
1557 | // check if golden and altref are swapped | |
1558 | if (s->update_altref == VP56_FRAME_GOLDEN && | |
1559 | s->update_golden == VP56_FRAME_GOLDEN2) | |
1560 | FFSWAP(AVFrame *, s->framep[VP56_FRAME_GOLDEN], s->framep[VP56_FRAME_GOLDEN2]); | |
1561 | else { | |
1562 | if (s->update_altref != VP56_FRAME_NONE) | |
1563 | s->framep[VP56_FRAME_GOLDEN2] = s->framep[s->update_altref]; | |
1564 | ||
1565 | if (s->update_golden != VP56_FRAME_NONE) | |
1566 | s->framep[VP56_FRAME_GOLDEN] = s->framep[s->update_golden]; | |
1567 | } | |
1568 | ||
1569 | if (s->update_last) // move cur->prev | |
1570 | s->framep[VP56_FRAME_PREVIOUS] = s->framep[VP56_FRAME_CURRENT]; | |
1571 | ||
1572 | // release no longer referenced frames | |
1573 | for (i = 0; i < 4; i++) | |
1574 | if (s->frames[i].data[0] && | |
1575 | &s->frames[i] != s->framep[VP56_FRAME_CURRENT] && | |
1576 | &s->frames[i] != s->framep[VP56_FRAME_PREVIOUS] && | |
1577 | &s->frames[i] != s->framep[VP56_FRAME_GOLDEN] && | |
1578 | &s->frames[i] != s->framep[VP56_FRAME_GOLDEN2]) | |
1579 | avctx->release_buffer(avctx, &s->frames[i]); | |
1580 | ||
1581 | if (!s->invisible) { | |
1582 | *(AVFrame*)data = *s->framep[VP56_FRAME_CURRENT]; | |
1583 | *data_size = sizeof(AVFrame); | |
1584 | } | |
1585 | ||
1586 | return avpkt->size; | |
1587 | } | |
1588 | ||
1589 | static av_cold int vp8_decode_init(AVCodecContext *avctx) | |
1590 | { | |
1591 | VP8Context *s = avctx->priv_data; | |
1592 | ||
1593 | s->avctx = avctx; | |
1594 | avctx->pix_fmt = PIX_FMT_YUV420P; | |
1595 | ||
1596 | dsputil_init(&s->dsp, avctx); | |
1597 | ff_h264_pred_init(&s->hpc, CODEC_ID_VP8); | |
1598 | ff_vp8dsp_init(&s->vp8dsp); | |
1599 | ||
1600 | // intra pred needs edge emulation among other things | |
1601 | if (avctx->flags&CODEC_FLAG_EMU_EDGE) { | |
03ac56e7 | 1602 | av_log(avctx, AV_LOG_ERROR, "Edge emulation not supported\n"); |
3b636f21 DC |
1603 | return AVERROR_PATCHWELCOME; |
1604 | } | |
1605 | ||
1606 | return 0; | |
1607 | } | |
1608 | ||
1609 | static av_cold int vp8_decode_free(AVCodecContext *avctx) | |
1610 | { | |
1611 | vp8_decode_flush(avctx); | |
1612 | return 0; | |
1613 | } | |
1614 | ||
1615 | AVCodec vp8_decoder = { | |
1616 | "vp8", | |
1617 | AVMEDIA_TYPE_VIDEO, | |
1618 | CODEC_ID_VP8, | |
1619 | sizeof(VP8Context), | |
1620 | vp8_decode_init, | |
1621 | NULL, | |
1622 | vp8_decode_free, | |
1623 | vp8_decode_frame, | |
1624 | CODEC_CAP_DR1, | |
1625 | .flush = vp8_decode_flush, | |
1626 | .long_name = NULL_IF_CONFIG_SMALL("On2 VP8"), | |
1627 | }; |