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