]> git.sesse.net Git - ffmpeg/blob - libavcodec/vp3.c
vp3: Use hpeldsp instead of dsputil for half-pel functions
[ffmpeg] / libavcodec / vp3.c
1 /*
2  * Copyright (C) 2003-2004 the ffmpeg project
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * On2 VP3 Video Decoder
24  *
25  * VP3 Video Decoder by Mike Melanson (mike at multimedia.cx)
26  * For more information about the VP3 coding process, visit:
27  *   http://wiki.multimedia.cx/index.php?title=On2_VP3
28  *
29  * Theora decoder by Alex Beregszaszi
30  */
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #include "libavutil/imgutils.h"
37 #include "avcodec.h"
38 #include "internal.h"
39 #include "dsputil.h"
40 #include "get_bits.h"
41 #include "hpeldsp.h"
42 #include "videodsp.h"
43 #include "vp3data.h"
44 #include "vp3dsp.h"
45 #include "xiph.h"
46 #include "thread.h"
47
48 #define FRAGMENT_PIXELS 8
49
50 //FIXME split things out into their own arrays
51 typedef struct Vp3Fragment {
52     int16_t dc;
53     uint8_t coding_method;
54     uint8_t qpi;
55 } Vp3Fragment;
56
57 #define SB_NOT_CODED        0
58 #define SB_PARTIALLY_CODED  1
59 #define SB_FULLY_CODED      2
60
61 // This is the maximum length of a single long bit run that can be encoded
62 // for superblock coding or block qps. Theora special-cases this to read a
63 // bit instead of flipping the current bit to allow for runs longer than 4129.
64 #define MAXIMUM_LONG_BIT_RUN 4129
65
66 #define MODE_INTER_NO_MV      0
67 #define MODE_INTRA            1
68 #define MODE_INTER_PLUS_MV    2
69 #define MODE_INTER_LAST_MV    3
70 #define MODE_INTER_PRIOR_LAST 4
71 #define MODE_USING_GOLDEN     5
72 #define MODE_GOLDEN_MV        6
73 #define MODE_INTER_FOURMV     7
74 #define CODING_MODE_COUNT     8
75
76 /* special internal mode */
77 #define MODE_COPY             8
78
79 /* There are 6 preset schemes, plus a free-form scheme */
80 static const int ModeAlphabet[6][CODING_MODE_COUNT] =
81 {
82     /* scheme 1: Last motion vector dominates */
83     {    MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
84          MODE_INTER_PLUS_MV,    MODE_INTER_NO_MV,
85          MODE_INTRA,            MODE_USING_GOLDEN,
86          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
87
88     /* scheme 2 */
89     {    MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
90          MODE_INTER_NO_MV,      MODE_INTER_PLUS_MV,
91          MODE_INTRA,            MODE_USING_GOLDEN,
92          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
93
94     /* scheme 3 */
95     {    MODE_INTER_LAST_MV,    MODE_INTER_PLUS_MV,
96          MODE_INTER_PRIOR_LAST, MODE_INTER_NO_MV,
97          MODE_INTRA,            MODE_USING_GOLDEN,
98          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
99
100     /* scheme 4 */
101     {    MODE_INTER_LAST_MV,    MODE_INTER_PLUS_MV,
102          MODE_INTER_NO_MV,      MODE_INTER_PRIOR_LAST,
103          MODE_INTRA,            MODE_USING_GOLDEN,
104          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
105
106     /* scheme 5: No motion vector dominates */
107     {    MODE_INTER_NO_MV,      MODE_INTER_LAST_MV,
108          MODE_INTER_PRIOR_LAST, MODE_INTER_PLUS_MV,
109          MODE_INTRA,            MODE_USING_GOLDEN,
110          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
111
112     /* scheme 6 */
113     {    MODE_INTER_NO_MV,      MODE_USING_GOLDEN,
114          MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
115          MODE_INTER_PLUS_MV,    MODE_INTRA,
116          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
117
118 };
119
120 static const uint8_t hilbert_offset[16][2] = {
121     {0,0}, {1,0}, {1,1}, {0,1},
122     {0,2}, {0,3}, {1,3}, {1,2},
123     {2,2}, {2,3}, {3,3}, {3,2},
124     {3,1}, {2,1}, {2,0}, {3,0}
125 };
126
127 #define MIN_DEQUANT_VAL 2
128
129 typedef struct Vp3DecodeContext {
130     AVCodecContext *avctx;
131     int theora, theora_tables;
132     int version;
133     int width, height;
134     int chroma_x_shift, chroma_y_shift;
135     ThreadFrame golden_frame;
136     ThreadFrame last_frame;
137     ThreadFrame current_frame;
138     int keyframe;
139     uint8_t idct_permutation[64];
140     uint8_t idct_scantable[64];
141     HpelDSPContext hdsp;
142     VideoDSPContext vdsp;
143     VP3DSPContext vp3dsp;
144     DECLARE_ALIGNED(16, int16_t, block)[64];
145     int flipped_image;
146     int last_slice_end;
147     int skip_loop_filter;
148
149     int qps[3];
150     int nqps;
151     int last_qps[3];
152
153     int superblock_count;
154     int y_superblock_width;
155     int y_superblock_height;
156     int y_superblock_count;
157     int c_superblock_width;
158     int c_superblock_height;
159     int c_superblock_count;
160     int u_superblock_start;
161     int v_superblock_start;
162     unsigned char *superblock_coding;
163
164     int macroblock_count;
165     int macroblock_width;
166     int macroblock_height;
167
168     int fragment_count;
169     int fragment_width[2];
170     int fragment_height[2];
171
172     Vp3Fragment *all_fragments;
173     int fragment_start[3];
174     int data_offset[3];
175
176     int8_t (*motion_val[2])[2];
177
178     /* tables */
179     uint16_t coded_dc_scale_factor[64];
180     uint32_t coded_ac_scale_factor[64];
181     uint8_t base_matrix[384][64];
182     uint8_t qr_count[2][3];
183     uint8_t qr_size [2][3][64];
184     uint16_t qr_base[2][3][64];
185
186     /**
187      * This is a list of all tokens in bitstream order. Reordering takes place
188      * by pulling from each level during IDCT. As a consequence, IDCT must be
189      * in Hilbert order, making the minimum slice height 64 for 4:2:0 and 32
190      * otherwise. The 32 different tokens with up to 12 bits of extradata are
191      * collapsed into 3 types, packed as follows:
192      *   (from the low to high bits)
193      *
194      * 2 bits: type (0,1,2)
195      *   0: EOB run, 14 bits for run length (12 needed)
196      *   1: zero run, 7 bits for run length
197      *                7 bits for the next coefficient (3 needed)
198      *   2: coefficient, 14 bits (11 needed)
199      *
200      * Coefficients are signed, so are packed in the highest bits for automatic
201      * sign extension.
202      */
203     int16_t *dct_tokens[3][64];
204     int16_t *dct_tokens_base;
205 #define TOKEN_EOB(eob_run)              ((eob_run) << 2)
206 #define TOKEN_ZERO_RUN(coeff, zero_run) (((coeff) << 9) + ((zero_run) << 2) + 1)
207 #define TOKEN_COEFF(coeff)              (((coeff) << 2) + 2)
208
209     /**
210      * number of blocks that contain DCT coefficients at the given level or higher
211      */
212     int num_coded_frags[3][64];
213     int total_num_coded_frags;
214
215     /* this is a list of indexes into the all_fragments array indicating
216      * which of the fragments are coded */
217     int *coded_fragment_list[3];
218
219     VLC dc_vlc[16];
220     VLC ac_vlc_1[16];
221     VLC ac_vlc_2[16];
222     VLC ac_vlc_3[16];
223     VLC ac_vlc_4[16];
224
225     VLC superblock_run_length_vlc;
226     VLC fragment_run_length_vlc;
227     VLC mode_code_vlc;
228     VLC motion_vector_vlc;
229
230     /* these arrays need to be on 16-byte boundaries since SSE2 operations
231      * index into them */
232     DECLARE_ALIGNED(16, int16_t, qmat)[3][2][3][64];     ///< qmat[qpi][is_inter][plane]
233
234     /* This table contains superblock_count * 16 entries. Each set of 16
235      * numbers corresponds to the fragment indexes 0..15 of the superblock.
236      * An entry will be -1 to indicate that no entry corresponds to that
237      * index. */
238     int *superblock_fragments;
239
240     /* This is an array that indicates how a particular macroblock
241      * is coded. */
242     unsigned char *macroblock_coding;
243
244     uint8_t *edge_emu_buffer;
245
246     /* Huffman decode */
247     int hti;
248     unsigned int hbits;
249     int entries;
250     int huff_code_size;
251     uint32_t huffman_table[80][32][2];
252
253     uint8_t filter_limit_values[64];
254     DECLARE_ALIGNED(8, int, bounding_values_array)[256+2];
255 } Vp3DecodeContext;
256
257 /************************************************************************
258  * VP3 specific functions
259  ************************************************************************/
260
261 static void vp3_decode_flush(AVCodecContext *avctx)
262 {
263     Vp3DecodeContext *s = avctx->priv_data;
264
265     if (s->golden_frame.f)
266         ff_thread_release_buffer(avctx, &s->golden_frame);
267     if (s->last_frame.f)
268         ff_thread_release_buffer(avctx, &s->last_frame);
269     if (s->current_frame.f)
270         ff_thread_release_buffer(avctx, &s->current_frame);
271 }
272
273 static av_cold int vp3_decode_end(AVCodecContext *avctx)
274 {
275     Vp3DecodeContext *s = avctx->priv_data;
276     int i;
277
278     av_freep(&s->superblock_coding);
279     av_freep(&s->all_fragments);
280     av_freep(&s->coded_fragment_list[0]);
281     av_freep(&s->dct_tokens_base);
282     av_freep(&s->superblock_fragments);
283     av_freep(&s->macroblock_coding);
284     av_freep(&s->motion_val[0]);
285     av_freep(&s->motion_val[1]);
286     av_freep(&s->edge_emu_buffer);
287
288     /* release all frames */
289     vp3_decode_flush(avctx);
290     av_frame_free(&s->current_frame.f);
291     av_frame_free(&s->last_frame.f);
292     av_frame_free(&s->golden_frame.f);
293
294     if (avctx->internal->is_copy)
295         return 0;
296
297     for (i = 0; i < 16; i++) {
298         ff_free_vlc(&s->dc_vlc[i]);
299         ff_free_vlc(&s->ac_vlc_1[i]);
300         ff_free_vlc(&s->ac_vlc_2[i]);
301         ff_free_vlc(&s->ac_vlc_3[i]);
302         ff_free_vlc(&s->ac_vlc_4[i]);
303     }
304
305     ff_free_vlc(&s->superblock_run_length_vlc);
306     ff_free_vlc(&s->fragment_run_length_vlc);
307     ff_free_vlc(&s->mode_code_vlc);
308     ff_free_vlc(&s->motion_vector_vlc);
309
310
311     return 0;
312 }
313
314 /*
315  * This function sets up all of the various blocks mappings:
316  * superblocks <-> fragments, macroblocks <-> fragments,
317  * superblocks <-> macroblocks
318  *
319  * @return 0 is successful; returns 1 if *anything* went wrong.
320  */
321 static int init_block_mapping(Vp3DecodeContext *s)
322 {
323     int sb_x, sb_y, plane;
324     int x, y, i, j = 0;
325
326     for (plane = 0; plane < 3; plane++) {
327         int sb_width    = plane ? s->c_superblock_width  : s->y_superblock_width;
328         int sb_height   = plane ? s->c_superblock_height : s->y_superblock_height;
329         int frag_width  = s->fragment_width[!!plane];
330         int frag_height = s->fragment_height[!!plane];
331
332         for (sb_y = 0; sb_y < sb_height; sb_y++)
333             for (sb_x = 0; sb_x < sb_width; sb_x++)
334                 for (i = 0; i < 16; i++) {
335                     x = 4*sb_x + hilbert_offset[i][0];
336                     y = 4*sb_y + hilbert_offset[i][1];
337
338                     if (x < frag_width && y < frag_height)
339                         s->superblock_fragments[j++] = s->fragment_start[plane] + y*frag_width + x;
340                     else
341                         s->superblock_fragments[j++] = -1;
342                 }
343     }
344
345     return 0;  /* successful path out */
346 }
347
348 /*
349  * This function sets up the dequantization tables used for a particular
350  * frame.
351  */
352 static void init_dequantizer(Vp3DecodeContext *s, int qpi)
353 {
354     int ac_scale_factor = s->coded_ac_scale_factor[s->qps[qpi]];
355     int dc_scale_factor = s->coded_dc_scale_factor[s->qps[qpi]];
356     int i, plane, inter, qri, bmi, bmj, qistart;
357
358     for(inter=0; inter<2; inter++){
359         for(plane=0; plane<3; plane++){
360             int sum=0;
361             for(qri=0; qri<s->qr_count[inter][plane]; qri++){
362                 sum+= s->qr_size[inter][plane][qri];
363                 if(s->qps[qpi] <= sum)
364                     break;
365             }
366             qistart= sum - s->qr_size[inter][plane][qri];
367             bmi= s->qr_base[inter][plane][qri  ];
368             bmj= s->qr_base[inter][plane][qri+1];
369             for(i=0; i<64; i++){
370                 int coeff= (  2*(sum    -s->qps[qpi])*s->base_matrix[bmi][i]
371                             - 2*(qistart-s->qps[qpi])*s->base_matrix[bmj][i]
372                             + s->qr_size[inter][plane][qri])
373                            / (2*s->qr_size[inter][plane][qri]);
374
375                 int qmin= 8<<(inter + !i);
376                 int qscale= i ? ac_scale_factor : dc_scale_factor;
377
378                 s->qmat[qpi][inter][plane][s->idct_permutation[i]] =
379                     av_clip((qscale * coeff) / 100 * 4, qmin, 4096);
380             }
381             // all DC coefficients use the same quant so as not to interfere with DC prediction
382             s->qmat[qpi][inter][plane][0] = s->qmat[0][inter][plane][0];
383         }
384     }
385 }
386
387 /*
388  * This function initializes the loop filter boundary limits if the frame's
389  * quality index is different from the previous frame's.
390  *
391  * The filter_limit_values may not be larger than 127.
392  */
393 static void init_loop_filter(Vp3DecodeContext *s)
394 {
395     int *bounding_values= s->bounding_values_array+127;
396     int filter_limit;
397     int x;
398     int value;
399
400     filter_limit = s->filter_limit_values[s->qps[0]];
401     assert(filter_limit < 128);
402
403     /* set up the bounding values */
404     memset(s->bounding_values_array, 0, 256 * sizeof(int));
405     for (x = 0; x < filter_limit; x++) {
406         bounding_values[-x] = -x;
407         bounding_values[x] = x;
408     }
409     for (x = value = filter_limit; x < 128 && value; x++, value--) {
410         bounding_values[ x] =  value;
411         bounding_values[-x] = -value;
412     }
413     if (value)
414         bounding_values[128] = value;
415     bounding_values[129] = bounding_values[130] = filter_limit * 0x02020202;
416 }
417
418 /*
419  * This function unpacks all of the superblock/macroblock/fragment coding
420  * information from the bitstream.
421  */
422 static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
423 {
424     int superblock_starts[3] = { 0, s->u_superblock_start, s->v_superblock_start };
425     int bit = 0;
426     int current_superblock = 0;
427     int current_run = 0;
428     int num_partial_superblocks = 0;
429
430     int i, j;
431     int current_fragment;
432     int plane;
433
434     if (s->keyframe) {
435         memset(s->superblock_coding, SB_FULLY_CODED, s->superblock_count);
436
437     } else {
438
439         /* unpack the list of partially-coded superblocks */
440         bit = get_bits1(gb) ^ 1;
441         current_run = 0;
442
443         while (current_superblock < s->superblock_count && get_bits_left(gb) > 0) {
444             if (s->theora && current_run == MAXIMUM_LONG_BIT_RUN)
445                 bit = get_bits1(gb);
446             else
447                 bit ^= 1;
448
449                 current_run = get_vlc2(gb,
450                     s->superblock_run_length_vlc.table, 6, 2) + 1;
451                 if (current_run == 34)
452                     current_run += get_bits(gb, 12);
453
454             if (current_superblock + current_run > s->superblock_count) {
455                 av_log(s->avctx, AV_LOG_ERROR, "Invalid partially coded superblock run length\n");
456                 return -1;
457             }
458
459             memset(s->superblock_coding + current_superblock, bit, current_run);
460
461             current_superblock += current_run;
462             if (bit)
463                 num_partial_superblocks += current_run;
464         }
465
466         /* unpack the list of fully coded superblocks if any of the blocks were
467          * not marked as partially coded in the previous step */
468         if (num_partial_superblocks < s->superblock_count) {
469             int superblocks_decoded = 0;
470
471             current_superblock = 0;
472             bit = get_bits1(gb) ^ 1;
473             current_run = 0;
474
475             while (superblocks_decoded < s->superblock_count - num_partial_superblocks
476                    && get_bits_left(gb) > 0) {
477
478                 if (s->theora && current_run == MAXIMUM_LONG_BIT_RUN)
479                     bit = get_bits1(gb);
480                 else
481                     bit ^= 1;
482
483                         current_run = get_vlc2(gb,
484                             s->superblock_run_length_vlc.table, 6, 2) + 1;
485                         if (current_run == 34)
486                             current_run += get_bits(gb, 12);
487
488                 for (j = 0; j < current_run; current_superblock++) {
489                     if (current_superblock >= s->superblock_count) {
490                         av_log(s->avctx, AV_LOG_ERROR, "Invalid fully coded superblock run length\n");
491                         return -1;
492                     }
493
494                 /* skip any superblocks already marked as partially coded */
495                 if (s->superblock_coding[current_superblock] == SB_NOT_CODED) {
496                     s->superblock_coding[current_superblock] = 2*bit;
497                     j++;
498                 }
499                 }
500                 superblocks_decoded += current_run;
501             }
502         }
503
504         /* if there were partial blocks, initialize bitstream for
505          * unpacking fragment codings */
506         if (num_partial_superblocks) {
507
508             current_run = 0;
509             bit = get_bits1(gb);
510             /* toggle the bit because as soon as the first run length is
511              * fetched the bit will be toggled again */
512             bit ^= 1;
513         }
514     }
515
516     /* figure out which fragments are coded; iterate through each
517      * superblock (all planes) */
518     s->total_num_coded_frags = 0;
519     memset(s->macroblock_coding, MODE_COPY, s->macroblock_count);
520
521     for (plane = 0; plane < 3; plane++) {
522         int sb_start = superblock_starts[plane];
523         int sb_end = sb_start + (plane ? s->c_superblock_count : s->y_superblock_count);
524         int num_coded_frags = 0;
525
526     for (i = sb_start; i < sb_end && get_bits_left(gb) > 0; i++) {
527
528         /* iterate through all 16 fragments in a superblock */
529         for (j = 0; j < 16; j++) {
530
531             /* if the fragment is in bounds, check its coding status */
532             current_fragment = s->superblock_fragments[i * 16 + j];
533             if (current_fragment != -1) {
534                 int coded = s->superblock_coding[i];
535
536                 if (s->superblock_coding[i] == SB_PARTIALLY_CODED) {
537
538                     /* fragment may or may not be coded; this is the case
539                      * that cares about the fragment coding runs */
540                     if (current_run-- == 0) {
541                         bit ^= 1;
542                         current_run = get_vlc2(gb,
543                             s->fragment_run_length_vlc.table, 5, 2);
544                     }
545                     coded = bit;
546                 }
547
548                     if (coded) {
549                         /* default mode; actual mode will be decoded in
550                          * the next phase */
551                         s->all_fragments[current_fragment].coding_method =
552                             MODE_INTER_NO_MV;
553                         s->coded_fragment_list[plane][num_coded_frags++] =
554                             current_fragment;
555                     } else {
556                         /* not coded; copy this fragment from the prior frame */
557                         s->all_fragments[current_fragment].coding_method =
558                             MODE_COPY;
559                     }
560             }
561         }
562     }
563         s->total_num_coded_frags += num_coded_frags;
564         for (i = 0; i < 64; i++)
565             s->num_coded_frags[plane][i] = num_coded_frags;
566         if (plane < 2)
567             s->coded_fragment_list[plane+1] = s->coded_fragment_list[plane] + num_coded_frags;
568     }
569     return 0;
570 }
571
572 /*
573  * This function unpacks all the coding mode data for individual macroblocks
574  * from the bitstream.
575  */
576 static int unpack_modes(Vp3DecodeContext *s, GetBitContext *gb)
577 {
578     int i, j, k, sb_x, sb_y;
579     int scheme;
580     int current_macroblock;
581     int current_fragment;
582     int coding_mode;
583     int custom_mode_alphabet[CODING_MODE_COUNT];
584     const int *alphabet;
585     Vp3Fragment *frag;
586
587     if (s->keyframe) {
588         for (i = 0; i < s->fragment_count; i++)
589             s->all_fragments[i].coding_method = MODE_INTRA;
590
591     } else {
592
593         /* fetch the mode coding scheme for this frame */
594         scheme = get_bits(gb, 3);
595
596         /* is it a custom coding scheme? */
597         if (scheme == 0) {
598             for (i = 0; i < 8; i++)
599                 custom_mode_alphabet[i] = MODE_INTER_NO_MV;
600             for (i = 0; i < 8; i++)
601                 custom_mode_alphabet[get_bits(gb, 3)] = i;
602             alphabet = custom_mode_alphabet;
603         } else
604             alphabet = ModeAlphabet[scheme-1];
605
606         /* iterate through all of the macroblocks that contain 1 or more
607          * coded fragments */
608         for (sb_y = 0; sb_y < s->y_superblock_height; sb_y++) {
609             for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) {
610                 if (get_bits_left(gb) <= 0)
611                     return -1;
612
613             for (j = 0; j < 4; j++) {
614                 int mb_x = 2*sb_x +   (j>>1);
615                 int mb_y = 2*sb_y + (((j>>1)+j)&1);
616                 current_macroblock = mb_y * s->macroblock_width + mb_x;
617
618                 if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height)
619                     continue;
620
621 #define BLOCK_X (2*mb_x + (k&1))
622 #define BLOCK_Y (2*mb_y + (k>>1))
623                 /* coding modes are only stored if the macroblock has at least one
624                  * luma block coded, otherwise it must be INTER_NO_MV */
625                 for (k = 0; k < 4; k++) {
626                     current_fragment = BLOCK_Y*s->fragment_width[0] + BLOCK_X;
627                     if (s->all_fragments[current_fragment].coding_method != MODE_COPY)
628                         break;
629                 }
630                 if (k == 4) {
631                     s->macroblock_coding[current_macroblock] = MODE_INTER_NO_MV;
632                     continue;
633                 }
634
635                 /* mode 7 means get 3 bits for each coding mode */
636                 if (scheme == 7)
637                     coding_mode = get_bits(gb, 3);
638                 else
639                     coding_mode = alphabet
640                         [get_vlc2(gb, s->mode_code_vlc.table, 3, 3)];
641
642                 s->macroblock_coding[current_macroblock] = coding_mode;
643                 for (k = 0; k < 4; k++) {
644                     frag = s->all_fragments + BLOCK_Y*s->fragment_width[0] + BLOCK_X;
645                     if (frag->coding_method != MODE_COPY)
646                         frag->coding_method = coding_mode;
647                 }
648
649 #define SET_CHROMA_MODES \
650     if (frag[s->fragment_start[1]].coding_method != MODE_COPY) \
651         frag[s->fragment_start[1]].coding_method = coding_mode;\
652     if (frag[s->fragment_start[2]].coding_method != MODE_COPY) \
653         frag[s->fragment_start[2]].coding_method = coding_mode;
654
655                 if (s->chroma_y_shift) {
656                     frag = s->all_fragments + mb_y*s->fragment_width[1] + mb_x;
657                     SET_CHROMA_MODES
658                 } else if (s->chroma_x_shift) {
659                     frag = s->all_fragments + 2*mb_y*s->fragment_width[1] + mb_x;
660                     for (k = 0; k < 2; k++) {
661                         SET_CHROMA_MODES
662                         frag += s->fragment_width[1];
663                     }
664                 } else {
665                     for (k = 0; k < 4; k++) {
666                         frag = s->all_fragments + BLOCK_Y*s->fragment_width[1] + BLOCK_X;
667                         SET_CHROMA_MODES
668                     }
669                 }
670             }
671             }
672         }
673     }
674
675     return 0;
676 }
677
678 /*
679  * This function unpacks all the motion vectors for the individual
680  * macroblocks from the bitstream.
681  */
682 static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb)
683 {
684     int j, k, sb_x, sb_y;
685     int coding_mode;
686     int motion_x[4];
687     int motion_y[4];
688     int last_motion_x = 0;
689     int last_motion_y = 0;
690     int prior_last_motion_x = 0;
691     int prior_last_motion_y = 0;
692     int current_macroblock;
693     int current_fragment;
694     int frag;
695
696     if (s->keyframe)
697         return 0;
698
699     /* coding mode 0 is the VLC scheme; 1 is the fixed code scheme */
700     coding_mode = get_bits1(gb);
701
702     /* iterate through all of the macroblocks that contain 1 or more
703      * coded fragments */
704     for (sb_y = 0; sb_y < s->y_superblock_height; sb_y++) {
705         for (sb_x = 0; sb_x < s->y_superblock_width; sb_x++) {
706             if (get_bits_left(gb) <= 0)
707                 return -1;
708
709         for (j = 0; j < 4; j++) {
710             int mb_x = 2*sb_x +   (j>>1);
711             int mb_y = 2*sb_y + (((j>>1)+j)&1);
712             current_macroblock = mb_y * s->macroblock_width + mb_x;
713
714             if (mb_x >= s->macroblock_width || mb_y >= s->macroblock_height ||
715                 (s->macroblock_coding[current_macroblock] == MODE_COPY))
716                 continue;
717
718             switch (s->macroblock_coding[current_macroblock]) {
719
720             case MODE_INTER_PLUS_MV:
721             case MODE_GOLDEN_MV:
722                 /* all 6 fragments use the same motion vector */
723                 if (coding_mode == 0) {
724                     motion_x[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
725                     motion_y[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
726                 } else {
727                     motion_x[0] = fixed_motion_vector_table[get_bits(gb, 6)];
728                     motion_y[0] = fixed_motion_vector_table[get_bits(gb, 6)];
729                 }
730
731                 /* vector maintenance, only on MODE_INTER_PLUS_MV */
732                 if (s->macroblock_coding[current_macroblock] ==
733                     MODE_INTER_PLUS_MV) {
734                     prior_last_motion_x = last_motion_x;
735                     prior_last_motion_y = last_motion_y;
736                     last_motion_x = motion_x[0];
737                     last_motion_y = motion_y[0];
738                 }
739                 break;
740
741             case MODE_INTER_FOURMV:
742                 /* vector maintenance */
743                 prior_last_motion_x = last_motion_x;
744                 prior_last_motion_y = last_motion_y;
745
746                 /* fetch 4 vectors from the bitstream, one for each
747                  * Y fragment, then average for the C fragment vectors */
748                 for (k = 0; k < 4; k++) {
749                     current_fragment = BLOCK_Y*s->fragment_width[0] + BLOCK_X;
750                     if (s->all_fragments[current_fragment].coding_method != MODE_COPY) {
751                         if (coding_mode == 0) {
752                             motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
753                             motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
754                         } else {
755                             motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)];
756                             motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)];
757                         }
758                         last_motion_x = motion_x[k];
759                         last_motion_y = motion_y[k];
760                     } else {
761                         motion_x[k] = 0;
762                         motion_y[k] = 0;
763                     }
764                 }
765                 break;
766
767             case MODE_INTER_LAST_MV:
768                 /* all 6 fragments use the last motion vector */
769                 motion_x[0] = last_motion_x;
770                 motion_y[0] = last_motion_y;
771
772                 /* no vector maintenance (last vector remains the
773                  * last vector) */
774                 break;
775
776             case MODE_INTER_PRIOR_LAST:
777                 /* all 6 fragments use the motion vector prior to the
778                  * last motion vector */
779                 motion_x[0] = prior_last_motion_x;
780                 motion_y[0] = prior_last_motion_y;
781
782                 /* vector maintenance */
783                 prior_last_motion_x = last_motion_x;
784                 prior_last_motion_y = last_motion_y;
785                 last_motion_x = motion_x[0];
786                 last_motion_y = motion_y[0];
787                 break;
788
789             default:
790                 /* covers intra, inter without MV, golden without MV */
791                 motion_x[0] = 0;
792                 motion_y[0] = 0;
793
794                 /* no vector maintenance */
795                 break;
796             }
797
798             /* assign the motion vectors to the correct fragments */
799             for (k = 0; k < 4; k++) {
800                 current_fragment =
801                     BLOCK_Y*s->fragment_width[0] + BLOCK_X;
802                 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) {
803                     s->motion_val[0][current_fragment][0] = motion_x[k];
804                     s->motion_val[0][current_fragment][1] = motion_y[k];
805                 } else {
806                     s->motion_val[0][current_fragment][0] = motion_x[0];
807                     s->motion_val[0][current_fragment][1] = motion_y[0];
808                 }
809             }
810
811             if (s->chroma_y_shift) {
812                 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) {
813                     motion_x[0] = RSHIFT(motion_x[0] + motion_x[1] + motion_x[2] + motion_x[3], 2);
814                     motion_y[0] = RSHIFT(motion_y[0] + motion_y[1] + motion_y[2] + motion_y[3], 2);
815                 }
816                 motion_x[0] = (motion_x[0]>>1) | (motion_x[0]&1);
817                 motion_y[0] = (motion_y[0]>>1) | (motion_y[0]&1);
818                 frag = mb_y*s->fragment_width[1] + mb_x;
819                 s->motion_val[1][frag][0] = motion_x[0];
820                 s->motion_val[1][frag][1] = motion_y[0];
821             } else if (s->chroma_x_shift) {
822                 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) {
823                     motion_x[0] = RSHIFT(motion_x[0] + motion_x[1], 1);
824                     motion_y[0] = RSHIFT(motion_y[0] + motion_y[1], 1);
825                     motion_x[1] = RSHIFT(motion_x[2] + motion_x[3], 1);
826                     motion_y[1] = RSHIFT(motion_y[2] + motion_y[3], 1);
827                 } else {
828                     motion_x[1] = motion_x[0];
829                     motion_y[1] = motion_y[0];
830                 }
831                 motion_x[0] = (motion_x[0]>>1) | (motion_x[0]&1);
832                 motion_x[1] = (motion_x[1]>>1) | (motion_x[1]&1);
833
834                 frag = 2*mb_y*s->fragment_width[1] + mb_x;
835                 for (k = 0; k < 2; k++) {
836                     s->motion_val[1][frag][0] = motion_x[k];
837                     s->motion_val[1][frag][1] = motion_y[k];
838                     frag += s->fragment_width[1];
839                 }
840             } else {
841                 for (k = 0; k < 4; k++) {
842                     frag = BLOCK_Y*s->fragment_width[1] + BLOCK_X;
843                     if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) {
844                         s->motion_val[1][frag][0] = motion_x[k];
845                         s->motion_val[1][frag][1] = motion_y[k];
846                     } else {
847                         s->motion_val[1][frag][0] = motion_x[0];
848                         s->motion_val[1][frag][1] = motion_y[0];
849                     }
850                 }
851             }
852         }
853         }
854     }
855
856     return 0;
857 }
858
859 static int unpack_block_qpis(Vp3DecodeContext *s, GetBitContext *gb)
860 {
861     int qpi, i, j, bit, run_length, blocks_decoded, num_blocks_at_qpi;
862     int num_blocks = s->total_num_coded_frags;
863
864     for (qpi = 0; qpi < s->nqps-1 && num_blocks > 0; qpi++) {
865         i = blocks_decoded = num_blocks_at_qpi = 0;
866
867         bit = get_bits1(gb) ^ 1;
868         run_length = 0;
869
870         do {
871             if (run_length == MAXIMUM_LONG_BIT_RUN)
872                 bit = get_bits1(gb);
873             else
874                 bit ^= 1;
875
876             run_length = get_vlc2(gb, s->superblock_run_length_vlc.table, 6, 2) + 1;
877             if (run_length == 34)
878                 run_length += get_bits(gb, 12);
879             blocks_decoded += run_length;
880
881             if (!bit)
882                 num_blocks_at_qpi += run_length;
883
884             for (j = 0; j < run_length; i++) {
885                 if (i >= s->total_num_coded_frags)
886                     return -1;
887
888                 if (s->all_fragments[s->coded_fragment_list[0][i]].qpi == qpi) {
889                     s->all_fragments[s->coded_fragment_list[0][i]].qpi += bit;
890                     j++;
891                 }
892             }
893         } while (blocks_decoded < num_blocks && get_bits_left(gb) > 0);
894
895         num_blocks -= num_blocks_at_qpi;
896     }
897
898     return 0;
899 }
900
901 /*
902  * This function is called by unpack_dct_coeffs() to extract the VLCs from
903  * the bitstream. The VLCs encode tokens which are used to unpack DCT
904  * data. This function unpacks all the VLCs for either the Y plane or both
905  * C planes, and is called for DC coefficients or different AC coefficient
906  * levels (since different coefficient types require different VLC tables.
907  *
908  * This function returns a residual eob run. E.g, if a particular token gave
909  * instructions to EOB the next 5 fragments and there were only 2 fragments
910  * left in the current fragment range, 3 would be returned so that it could
911  * be passed into the next call to this same function.
912  */
913 static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
914                         VLC *table, int coeff_index,
915                         int plane,
916                         int eob_run)
917 {
918     int i, j = 0;
919     int token;
920     int zero_run = 0;
921     int16_t coeff = 0;
922     int bits_to_get;
923     int blocks_ended;
924     int coeff_i = 0;
925     int num_coeffs = s->num_coded_frags[plane][coeff_index];
926     int16_t *dct_tokens = s->dct_tokens[plane][coeff_index];
927
928     /* local references to structure members to avoid repeated deferences */
929     int *coded_fragment_list = s->coded_fragment_list[plane];
930     Vp3Fragment *all_fragments = s->all_fragments;
931     VLC_TYPE (*vlc_table)[2] = table->table;
932
933     if (num_coeffs < 0)
934         av_log(s->avctx, AV_LOG_ERROR, "Invalid number of coefficents at level %d\n", coeff_index);
935
936     if (eob_run > num_coeffs) {
937         coeff_i = blocks_ended = num_coeffs;
938         eob_run -= num_coeffs;
939     } else {
940         coeff_i = blocks_ended = eob_run;
941         eob_run = 0;
942     }
943
944     // insert fake EOB token to cover the split between planes or zzi
945     if (blocks_ended)
946         dct_tokens[j++] = blocks_ended << 2;
947
948     while (coeff_i < num_coeffs && get_bits_left(gb) > 0) {
949             /* decode a VLC into a token */
950             token = get_vlc2(gb, vlc_table, 11, 3);
951             /* use the token to get a zero run, a coefficient, and an eob run */
952             if ((unsigned) token <= 6U) {
953                 eob_run = eob_run_base[token];
954                 if (eob_run_get_bits[token])
955                     eob_run += get_bits(gb, eob_run_get_bits[token]);
956
957                 // record only the number of blocks ended in this plane,
958                 // any spill will be recorded in the next plane.
959                 if (eob_run > num_coeffs - coeff_i) {
960                     dct_tokens[j++] = TOKEN_EOB(num_coeffs - coeff_i);
961                     blocks_ended   += num_coeffs - coeff_i;
962                     eob_run        -= num_coeffs - coeff_i;
963                     coeff_i         = num_coeffs;
964                 } else {
965                     dct_tokens[j++] = TOKEN_EOB(eob_run);
966                     blocks_ended   += eob_run;
967                     coeff_i        += eob_run;
968                     eob_run = 0;
969                 }
970             } else if (token >= 0) {
971                 bits_to_get = coeff_get_bits[token];
972                 if (bits_to_get)
973                     bits_to_get = get_bits(gb, bits_to_get);
974                 coeff = coeff_tables[token][bits_to_get];
975
976                 zero_run = zero_run_base[token];
977                 if (zero_run_get_bits[token])
978                     zero_run += get_bits(gb, zero_run_get_bits[token]);
979
980                 if (zero_run) {
981                     dct_tokens[j++] = TOKEN_ZERO_RUN(coeff, zero_run);
982                 } else {
983                     // Save DC into the fragment structure. DC prediction is
984                     // done in raster order, so the actual DC can't be in with
985                     // other tokens. We still need the token in dct_tokens[]
986                     // however, or else the structure collapses on itself.
987                     if (!coeff_index)
988                         all_fragments[coded_fragment_list[coeff_i]].dc = coeff;
989
990                     dct_tokens[j++] = TOKEN_COEFF(coeff);
991                 }
992
993                 if (coeff_index + zero_run > 64) {
994                     av_log(s->avctx, AV_LOG_DEBUG, "Invalid zero run of %d with"
995                            " %d coeffs left\n", zero_run, 64-coeff_index);
996                     zero_run = 64 - coeff_index;
997                 }
998
999                 // zero runs code multiple coefficients,
1000                 // so don't try to decode coeffs for those higher levels
1001                 for (i = coeff_index+1; i <= coeff_index+zero_run; i++)
1002                     s->num_coded_frags[plane][i]--;
1003                 coeff_i++;
1004             } else {
1005                 av_log(s->avctx, AV_LOG_ERROR,
1006                        "Invalid token %d\n", token);
1007                 return -1;
1008             }
1009     }
1010
1011     if (blocks_ended > s->num_coded_frags[plane][coeff_index])
1012         av_log(s->avctx, AV_LOG_ERROR, "More blocks ended than coded!\n");
1013
1014     // decrement the number of blocks that have higher coeffecients for each
1015     // EOB run at this level
1016     if (blocks_ended)
1017         for (i = coeff_index+1; i < 64; i++)
1018             s->num_coded_frags[plane][i] -= blocks_ended;
1019
1020     // setup the next buffer
1021     if (plane < 2)
1022         s->dct_tokens[plane+1][coeff_index] = dct_tokens + j;
1023     else if (coeff_index < 63)
1024         s->dct_tokens[0][coeff_index+1] = dct_tokens + j;
1025
1026     return eob_run;
1027 }
1028
1029 static void reverse_dc_prediction(Vp3DecodeContext *s,
1030                                   int first_fragment,
1031                                   int fragment_width,
1032                                   int fragment_height);
1033 /*
1034  * This function unpacks all of the DCT coefficient data from the
1035  * bitstream.
1036  */
1037 static int unpack_dct_coeffs(Vp3DecodeContext *s, GetBitContext *gb)
1038 {
1039     int i;
1040     int dc_y_table;
1041     int dc_c_table;
1042     int ac_y_table;
1043     int ac_c_table;
1044     int residual_eob_run = 0;
1045     VLC *y_tables[64];
1046     VLC *c_tables[64];
1047
1048     s->dct_tokens[0][0] = s->dct_tokens_base;
1049
1050     /* fetch the DC table indexes */
1051     dc_y_table = get_bits(gb, 4);
1052     dc_c_table = get_bits(gb, 4);
1053
1054     /* unpack the Y plane DC coefficients */
1055     residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_y_table], 0,
1056         0, residual_eob_run);
1057     if (residual_eob_run < 0)
1058         return residual_eob_run;
1059
1060     /* reverse prediction of the Y-plane DC coefficients */
1061     reverse_dc_prediction(s, 0, s->fragment_width[0], s->fragment_height[0]);
1062
1063     /* unpack the C plane DC coefficients */
1064     residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_c_table], 0,
1065         1, residual_eob_run);
1066     if (residual_eob_run < 0)
1067         return residual_eob_run;
1068     residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_c_table], 0,
1069         2, residual_eob_run);
1070     if (residual_eob_run < 0)
1071         return residual_eob_run;
1072
1073     /* reverse prediction of the C-plane DC coefficients */
1074     if (!(s->avctx->flags & CODEC_FLAG_GRAY))
1075     {
1076         reverse_dc_prediction(s, s->fragment_start[1],
1077             s->fragment_width[1], s->fragment_height[1]);
1078         reverse_dc_prediction(s, s->fragment_start[2],
1079             s->fragment_width[1], s->fragment_height[1]);
1080     }
1081
1082     /* fetch the AC table indexes */
1083     ac_y_table = get_bits(gb, 4);
1084     ac_c_table = get_bits(gb, 4);
1085
1086     /* build tables of AC VLC tables */
1087     for (i = 1; i <= 5; i++) {
1088         y_tables[i] = &s->ac_vlc_1[ac_y_table];
1089         c_tables[i] = &s->ac_vlc_1[ac_c_table];
1090     }
1091     for (i = 6; i <= 14; i++) {
1092         y_tables[i] = &s->ac_vlc_2[ac_y_table];
1093         c_tables[i] = &s->ac_vlc_2[ac_c_table];
1094     }
1095     for (i = 15; i <= 27; i++) {
1096         y_tables[i] = &s->ac_vlc_3[ac_y_table];
1097         c_tables[i] = &s->ac_vlc_3[ac_c_table];
1098     }
1099     for (i = 28; i <= 63; i++) {
1100         y_tables[i] = &s->ac_vlc_4[ac_y_table];
1101         c_tables[i] = &s->ac_vlc_4[ac_c_table];
1102     }
1103
1104     /* decode all AC coefficents */
1105     for (i = 1; i <= 63; i++) {
1106             residual_eob_run = unpack_vlcs(s, gb, y_tables[i], i,
1107                 0, residual_eob_run);
1108             if (residual_eob_run < 0)
1109                 return residual_eob_run;
1110
1111             residual_eob_run = unpack_vlcs(s, gb, c_tables[i], i,
1112                 1, residual_eob_run);
1113             if (residual_eob_run < 0)
1114                 return residual_eob_run;
1115             residual_eob_run = unpack_vlcs(s, gb, c_tables[i], i,
1116                 2, residual_eob_run);
1117             if (residual_eob_run < 0)
1118                 return residual_eob_run;
1119     }
1120
1121     return 0;
1122 }
1123
1124 /*
1125  * This function reverses the DC prediction for each coded fragment in
1126  * the frame. Much of this function is adapted directly from the original
1127  * VP3 source code.
1128  */
1129 #define COMPATIBLE_FRAME(x) \
1130   (compatible_frame[s->all_fragments[x].coding_method] == current_frame_type)
1131 #define DC_COEFF(u) s->all_fragments[u].dc
1132
1133 static void reverse_dc_prediction(Vp3DecodeContext *s,
1134                                   int first_fragment,
1135                                   int fragment_width,
1136                                   int fragment_height)
1137 {
1138
1139 #define PUL 8
1140 #define PU 4
1141 #define PUR 2
1142 #define PL 1
1143
1144     int x, y;
1145     int i = first_fragment;
1146
1147     int predicted_dc;
1148
1149     /* DC values for the left, up-left, up, and up-right fragments */
1150     int vl, vul, vu, vur;
1151
1152     /* indexes for the left, up-left, up, and up-right fragments */
1153     int l, ul, u, ur;
1154
1155     /*
1156      * The 6 fields mean:
1157      *   0: up-left multiplier
1158      *   1: up multiplier
1159      *   2: up-right multiplier
1160      *   3: left multiplier
1161      */
1162     static const int predictor_transform[16][4] = {
1163         {  0,  0,  0,  0},
1164         {  0,  0,  0,128},        // PL
1165         {  0,  0,128,  0},        // PUR
1166         {  0,  0, 53, 75},        // PUR|PL
1167         {  0,128,  0,  0},        // PU
1168         {  0, 64,  0, 64},        // PU|PL
1169         {  0,128,  0,  0},        // PU|PUR
1170         {  0,  0, 53, 75},        // PU|PUR|PL
1171         {128,  0,  0,  0},        // PUL
1172         {  0,  0,  0,128},        // PUL|PL
1173         { 64,  0, 64,  0},        // PUL|PUR
1174         {  0,  0, 53, 75},        // PUL|PUR|PL
1175         {  0,128,  0,  0},        // PUL|PU
1176        {-104,116,  0,116},        // PUL|PU|PL
1177         { 24, 80, 24,  0},        // PUL|PU|PUR
1178        {-104,116,  0,116}         // PUL|PU|PUR|PL
1179     };
1180
1181     /* This table shows which types of blocks can use other blocks for
1182      * prediction. For example, INTRA is the only mode in this table to
1183      * have a frame number of 0. That means INTRA blocks can only predict
1184      * from other INTRA blocks. There are 2 golden frame coding types;
1185      * blocks encoding in these modes can only predict from other blocks
1186      * that were encoded with these 1 of these 2 modes. */
1187     static const unsigned char compatible_frame[9] = {
1188         1,    /* MODE_INTER_NO_MV */
1189         0,    /* MODE_INTRA */
1190         1,    /* MODE_INTER_PLUS_MV */
1191         1,    /* MODE_INTER_LAST_MV */
1192         1,    /* MODE_INTER_PRIOR_MV */
1193         2,    /* MODE_USING_GOLDEN */
1194         2,    /* MODE_GOLDEN_MV */
1195         1,    /* MODE_INTER_FOUR_MV */
1196         3     /* MODE_COPY */
1197     };
1198     int current_frame_type;
1199
1200     /* there is a last DC predictor for each of the 3 frame types */
1201     short last_dc[3];
1202
1203     int transform = 0;
1204
1205     vul = vu = vur = vl = 0;
1206     last_dc[0] = last_dc[1] = last_dc[2] = 0;
1207
1208     /* for each fragment row... */
1209     for (y = 0; y < fragment_height; y++) {
1210
1211         /* for each fragment in a row... */
1212         for (x = 0; x < fragment_width; x++, i++) {
1213
1214             /* reverse prediction if this block was coded */
1215             if (s->all_fragments[i].coding_method != MODE_COPY) {
1216
1217                 current_frame_type =
1218                     compatible_frame[s->all_fragments[i].coding_method];
1219
1220                 transform= 0;
1221                 if(x){
1222                     l= i-1;
1223                     vl = DC_COEFF(l);
1224                     if(COMPATIBLE_FRAME(l))
1225                         transform |= PL;
1226                 }
1227                 if(y){
1228                     u= i-fragment_width;
1229                     vu = DC_COEFF(u);
1230                     if(COMPATIBLE_FRAME(u))
1231                         transform |= PU;
1232                     if(x){
1233                         ul= i-fragment_width-1;
1234                         vul = DC_COEFF(ul);
1235                         if(COMPATIBLE_FRAME(ul))
1236                             transform |= PUL;
1237                     }
1238                     if(x + 1 < fragment_width){
1239                         ur= i-fragment_width+1;
1240                         vur = DC_COEFF(ur);
1241                         if(COMPATIBLE_FRAME(ur))
1242                             transform |= PUR;
1243                     }
1244                 }
1245
1246                 if (transform == 0) {
1247
1248                     /* if there were no fragments to predict from, use last
1249                      * DC saved */
1250                     predicted_dc = last_dc[current_frame_type];
1251                 } else {
1252
1253                     /* apply the appropriate predictor transform */
1254                     predicted_dc =
1255                         (predictor_transform[transform][0] * vul) +
1256                         (predictor_transform[transform][1] * vu) +
1257                         (predictor_transform[transform][2] * vur) +
1258                         (predictor_transform[transform][3] * vl);
1259
1260                     predicted_dc /= 128;
1261
1262                     /* check for outranging on the [ul u l] and
1263                      * [ul u ur l] predictors */
1264                     if ((transform == 15) || (transform == 13)) {
1265                         if (FFABS(predicted_dc - vu) > 128)
1266                             predicted_dc = vu;
1267                         else if (FFABS(predicted_dc - vl) > 128)
1268                             predicted_dc = vl;
1269                         else if (FFABS(predicted_dc - vul) > 128)
1270                             predicted_dc = vul;
1271                     }
1272                 }
1273
1274                 /* at long last, apply the predictor */
1275                 DC_COEFF(i) += predicted_dc;
1276                 /* save the DC */
1277                 last_dc[current_frame_type] = DC_COEFF(i);
1278             }
1279         }
1280     }
1281 }
1282
1283 static void apply_loop_filter(Vp3DecodeContext *s, int plane, int ystart, int yend)
1284 {
1285     int x, y;
1286     int *bounding_values= s->bounding_values_array+127;
1287
1288     int width           = s->fragment_width[!!plane];
1289     int height          = s->fragment_height[!!plane];
1290     int fragment        = s->fragment_start        [plane] + ystart * width;
1291     int stride          = s->current_frame.f->linesize[plane];
1292     uint8_t *plane_data = s->current_frame.f->data    [plane];
1293     if (!s->flipped_image) stride = -stride;
1294     plane_data += s->data_offset[plane] + 8*ystart*stride;
1295
1296     for (y = ystart; y < yend; y++) {
1297
1298         for (x = 0; x < width; x++) {
1299             /* This code basically just deblocks on the edges of coded blocks.
1300              * However, it has to be much more complicated because of the
1301              * braindamaged deblock ordering used in VP3/Theora. Order matters
1302              * because some pixels get filtered twice. */
1303             if( s->all_fragments[fragment].coding_method != MODE_COPY )
1304             {
1305                 /* do not perform left edge filter for left columns frags */
1306                 if (x > 0) {
1307                     s->vp3dsp.h_loop_filter(
1308                         plane_data + 8*x,
1309                         stride, bounding_values);
1310                 }
1311
1312                 /* do not perform top edge filter for top row fragments */
1313                 if (y > 0) {
1314                     s->vp3dsp.v_loop_filter(
1315                         plane_data + 8*x,
1316                         stride, bounding_values);
1317                 }
1318
1319                 /* do not perform right edge filter for right column
1320                  * fragments or if right fragment neighbor is also coded
1321                  * in this frame (it will be filtered in next iteration) */
1322                 if ((x < width - 1) &&
1323                     (s->all_fragments[fragment + 1].coding_method == MODE_COPY)) {
1324                     s->vp3dsp.h_loop_filter(
1325                         plane_data + 8*x + 8,
1326                         stride, bounding_values);
1327                 }
1328
1329                 /* do not perform bottom edge filter for bottom row
1330                  * fragments or if bottom fragment neighbor is also coded
1331                  * in this frame (it will be filtered in the next row) */
1332                 if ((y < height - 1) &&
1333                     (s->all_fragments[fragment + width].coding_method == MODE_COPY)) {
1334                     s->vp3dsp.v_loop_filter(
1335                         plane_data + 8*x + 8*stride,
1336                         stride, bounding_values);
1337                 }
1338             }
1339
1340             fragment++;
1341         }
1342         plane_data += 8*stride;
1343     }
1344 }
1345
1346 /**
1347  * Pull DCT tokens from the 64 levels to decode and dequant the coefficients
1348  * for the next block in coding order
1349  */
1350 static inline int vp3_dequant(Vp3DecodeContext *s, Vp3Fragment *frag,
1351                               int plane, int inter, int16_t block[64])
1352 {
1353     int16_t *dequantizer = s->qmat[frag->qpi][inter][plane];
1354     uint8_t *perm = s->idct_scantable;
1355     int i = 0;
1356
1357     do {
1358         int token = *s->dct_tokens[plane][i];
1359         switch (token & 3) {
1360         case 0: // EOB
1361             if (--token < 4) // 0-3 are token types, so the EOB run must now be 0
1362                 s->dct_tokens[plane][i]++;
1363             else
1364                 *s->dct_tokens[plane][i] = token & ~3;
1365             goto end;
1366         case 1: // zero run
1367             s->dct_tokens[plane][i]++;
1368             i += (token >> 2) & 0x7f;
1369             if (i > 63) {
1370                 av_log(s->avctx, AV_LOG_ERROR, "Coefficient index overflow\n");
1371                 return i;
1372             }
1373             block[perm[i]] = (token >> 9) * dequantizer[perm[i]];
1374             i++;
1375             break;
1376         case 2: // coeff
1377             block[perm[i]] = (token >> 2) * dequantizer[perm[i]];
1378             s->dct_tokens[plane][i++]++;
1379             break;
1380         default: // shouldn't happen
1381             return i;
1382         }
1383     } while (i < 64);
1384     // return value is expected to be a valid level
1385     i--;
1386 end:
1387     // the actual DC+prediction is in the fragment structure
1388     block[0] = frag->dc * s->qmat[0][inter][plane][0];
1389     return i;
1390 }
1391
1392 /**
1393  * called when all pixels up to row y are complete
1394  */
1395 static void vp3_draw_horiz_band(Vp3DecodeContext *s, int y)
1396 {
1397     int h, cy, i;
1398     int offset[AV_NUM_DATA_POINTERS];
1399
1400     if (HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_FRAME) {
1401         int y_flipped = s->flipped_image ? s->avctx->height-y : y;
1402
1403         // At the end of the frame, report INT_MAX instead of the height of the frame.
1404         // This makes the other threads' ff_thread_await_progress() calls cheaper, because
1405         // they don't have to clip their values.
1406         ff_thread_report_progress(&s->current_frame, y_flipped==s->avctx->height ? INT_MAX : y_flipped-1, 0);
1407     }
1408
1409     if(s->avctx->draw_horiz_band==NULL)
1410         return;
1411
1412     h= y - s->last_slice_end;
1413     s->last_slice_end= y;
1414     y -= h;
1415
1416     if (!s->flipped_image) {
1417         y = s->avctx->height - y - h;
1418     }
1419
1420     cy = y >> s->chroma_y_shift;
1421     offset[0] = s->current_frame.f->linesize[0]*y;
1422     offset[1] = s->current_frame.f->linesize[1]*cy;
1423     offset[2] = s->current_frame.f->linesize[2]*cy;
1424     for (i = 3; i < AV_NUM_DATA_POINTERS; i++)
1425         offset[i] = 0;
1426
1427     emms_c();
1428     s->avctx->draw_horiz_band(s->avctx, s->current_frame.f, offset, y, 3, h);
1429 }
1430
1431 /**
1432  * Wait for the reference frame of the current fragment.
1433  * The progress value is in luma pixel rows.
1434  */
1435 static void await_reference_row(Vp3DecodeContext *s, Vp3Fragment *fragment, int motion_y, int y)
1436 {
1437     ThreadFrame *ref_frame;
1438     int ref_row;
1439     int border = motion_y&1;
1440
1441     if (fragment->coding_method == MODE_USING_GOLDEN ||
1442         fragment->coding_method == MODE_GOLDEN_MV)
1443         ref_frame = &s->golden_frame;
1444     else
1445         ref_frame = &s->last_frame;
1446
1447     ref_row = y + (motion_y>>1);
1448     ref_row = FFMAX(FFABS(ref_row), ref_row + 8 + border);
1449
1450     ff_thread_await_progress(ref_frame, ref_row, 0);
1451 }
1452
1453 /*
1454  * Perform the final rendering for a particular slice of data.
1455  * The slice number ranges from 0..(c_superblock_height - 1).
1456  */
1457 static void render_slice(Vp3DecodeContext *s, int slice)
1458 {
1459     int x, y, i, j, fragment;
1460     int16_t *block = s->block;
1461     int motion_x = 0xdeadbeef, motion_y = 0xdeadbeef;
1462     int motion_halfpel_index;
1463     uint8_t *motion_source;
1464     int plane, first_pixel;
1465
1466     if (slice >= s->c_superblock_height)
1467         return;
1468
1469     for (plane = 0; plane < 3; plane++) {
1470         uint8_t *output_plane = s->current_frame.f->data    [plane] + s->data_offset[plane];
1471         uint8_t *  last_plane = s->   last_frame.f->data    [plane] + s->data_offset[plane];
1472         uint8_t *golden_plane = s-> golden_frame.f->data    [plane] + s->data_offset[plane];
1473         int stride            = s->current_frame.f->linesize[plane];
1474         int plane_width       = s->width  >> (plane && s->chroma_x_shift);
1475         int plane_height      = s->height >> (plane && s->chroma_y_shift);
1476         int8_t (*motion_val)[2] = s->motion_val[!!plane];
1477
1478         int sb_x, sb_y        = slice << (!plane && s->chroma_y_shift);
1479         int slice_height      = sb_y + 1 + (!plane && s->chroma_y_shift);
1480         int slice_width       = plane ? s->c_superblock_width : s->y_superblock_width;
1481
1482         int fragment_width    = s->fragment_width[!!plane];
1483         int fragment_height   = s->fragment_height[!!plane];
1484         int fragment_start    = s->fragment_start[plane];
1485         int do_await          = !plane && HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_FRAME);
1486
1487         if (!s->flipped_image) stride = -stride;
1488         if (CONFIG_GRAY && plane && (s->avctx->flags & CODEC_FLAG_GRAY))
1489             continue;
1490
1491         /* for each superblock row in the slice (both of them)... */
1492         for (; sb_y < slice_height; sb_y++) {
1493
1494             /* for each superblock in a row... */
1495             for (sb_x = 0; sb_x < slice_width; sb_x++) {
1496
1497                 /* for each block in a superblock... */
1498                 for (j = 0; j < 16; j++) {
1499                     x = 4*sb_x + hilbert_offset[j][0];
1500                     y = 4*sb_y + hilbert_offset[j][1];
1501                     fragment = y*fragment_width + x;
1502
1503                     i = fragment_start + fragment;
1504
1505                     // bounds check
1506                     if (x >= fragment_width || y >= fragment_height)
1507                         continue;
1508
1509                 first_pixel = 8*y*stride + 8*x;
1510
1511                 if (do_await && s->all_fragments[i].coding_method != MODE_INTRA)
1512                     await_reference_row(s, &s->all_fragments[i], motion_val[fragment][1], (16*y) >> s->chroma_y_shift);
1513
1514                 /* transform if this block was coded */
1515                 if (s->all_fragments[i].coding_method != MODE_COPY) {
1516                     if ((s->all_fragments[i].coding_method == MODE_USING_GOLDEN) ||
1517                         (s->all_fragments[i].coding_method == MODE_GOLDEN_MV))
1518                         motion_source= golden_plane;
1519                     else
1520                         motion_source= last_plane;
1521
1522                     motion_source += first_pixel;
1523                     motion_halfpel_index = 0;
1524
1525                     /* sort out the motion vector if this fragment is coded
1526                      * using a motion vector method */
1527                     if ((s->all_fragments[i].coding_method > MODE_INTRA) &&
1528                         (s->all_fragments[i].coding_method != MODE_USING_GOLDEN)) {
1529                         int src_x, src_y;
1530                         motion_x = motion_val[fragment][0];
1531                         motion_y = motion_val[fragment][1];
1532
1533                         src_x= (motion_x>>1) + 8*x;
1534                         src_y= (motion_y>>1) + 8*y;
1535
1536                         motion_halfpel_index = motion_x & 0x01;
1537                         motion_source += (motion_x >> 1);
1538
1539                         motion_halfpel_index |= (motion_y & 0x01) << 1;
1540                         motion_source += ((motion_y >> 1) * stride);
1541
1542                         if(src_x<0 || src_y<0 || src_x + 9 >= plane_width || src_y + 9 >= plane_height){
1543                             uint8_t *temp= s->edge_emu_buffer;
1544                             if(stride<0) temp -= 8*stride;
1545
1546                             s->vdsp.emulated_edge_mc(temp, motion_source, stride, 9, 9, src_x, src_y, plane_width, plane_height);
1547                             motion_source= temp;
1548                         }
1549                     }
1550
1551
1552                     /* first, take care of copying a block from either the
1553                      * previous or the golden frame */
1554                     if (s->all_fragments[i].coding_method != MODE_INTRA) {
1555                         /* Note, it is possible to implement all MC cases with
1556                            put_no_rnd_pixels_l2 which would look more like the
1557                            VP3 source but this would be slower as
1558                            put_no_rnd_pixels_tab is better optimzed */
1559                         if(motion_halfpel_index != 3){
1560                             s->hdsp.put_no_rnd_pixels_tab[1][motion_halfpel_index](
1561                                 output_plane + first_pixel,
1562                                 motion_source, stride, 8);
1563                         }else{
1564                             int d= (motion_x ^ motion_y)>>31; // d is 0 if motion_x and _y have the same sign, else -1
1565                             s->vp3dsp.put_no_rnd_pixels_l2(
1566                                 output_plane + first_pixel,
1567                                 motion_source - d,
1568                                 motion_source + stride + 1 + d,
1569                                 stride, 8);
1570                         }
1571                     }
1572
1573                     /* invert DCT and place (or add) in final output */
1574
1575                     if (s->all_fragments[i].coding_method == MODE_INTRA) {
1576                         int index;
1577                         index = vp3_dequant(s, s->all_fragments + i, plane, 0, block);
1578                         if (index > 63)
1579                             continue;
1580                         s->vp3dsp.idct_put(
1581                             output_plane + first_pixel,
1582                             stride,
1583                             block);
1584                     } else {
1585                         int index = vp3_dequant(s, s->all_fragments + i, plane, 1, block);
1586                         if (index > 63)
1587                             continue;
1588                         if (index > 0) {
1589                         s->vp3dsp.idct_add(
1590                             output_plane + first_pixel,
1591                             stride,
1592                             block);
1593                         } else {
1594                             s->vp3dsp.idct_dc_add(output_plane + first_pixel, stride, block);
1595                         }
1596                     }
1597                 } else {
1598
1599                     /* copy directly from the previous frame */
1600                     s->hdsp.put_pixels_tab[1][0](
1601                         output_plane + first_pixel,
1602                         last_plane + first_pixel,
1603                         stride, 8);
1604
1605                 }
1606                 }
1607             }
1608
1609             // Filter up to the last row in the superblock row
1610             if (!s->skip_loop_filter)
1611                 apply_loop_filter(s, plane, 4*sb_y - !!sb_y, FFMIN(4*sb_y+3, fragment_height-1));
1612         }
1613     }
1614
1615      /* this looks like a good place for slice dispatch... */
1616      /* algorithm:
1617       *   if (slice == s->macroblock_height - 1)
1618       *     dispatch (both last slice & 2nd-to-last slice);
1619       *   else if (slice > 0)
1620       *     dispatch (slice - 1);
1621       */
1622
1623     vp3_draw_horiz_band(s, FFMIN((32 << s->chroma_y_shift) * (slice + 1) -16, s->height-16));
1624 }
1625
1626 /// Allocate tables for per-frame data in Vp3DecodeContext
1627 static av_cold int allocate_tables(AVCodecContext *avctx)
1628 {
1629     Vp3DecodeContext *s = avctx->priv_data;
1630     int y_fragment_count, c_fragment_count;
1631
1632     y_fragment_count = s->fragment_width[0] * s->fragment_height[0];
1633     c_fragment_count = s->fragment_width[1] * s->fragment_height[1];
1634
1635     s->superblock_coding = av_malloc(s->superblock_count);
1636     s->all_fragments = av_malloc(s->fragment_count * sizeof(Vp3Fragment));
1637     s->coded_fragment_list[0] = av_malloc(s->fragment_count * sizeof(int));
1638     s->dct_tokens_base = av_malloc(64*s->fragment_count * sizeof(*s->dct_tokens_base));
1639     s->motion_val[0] = av_malloc(y_fragment_count * sizeof(*s->motion_val[0]));
1640     s->motion_val[1] = av_malloc(c_fragment_count * sizeof(*s->motion_val[1]));
1641
1642     /* work out the block mapping tables */
1643     s->superblock_fragments = av_malloc(s->superblock_count * 16 * sizeof(int));
1644     s->macroblock_coding = av_malloc(s->macroblock_count + 1);
1645
1646     if (!s->superblock_coding || !s->all_fragments || !s->dct_tokens_base ||
1647         !s->coded_fragment_list[0] || !s->superblock_fragments || !s->macroblock_coding ||
1648         !s->motion_val[0] || !s->motion_val[1]) {
1649         vp3_decode_end(avctx);
1650         return -1;
1651     }
1652
1653     init_block_mapping(s);
1654
1655     return 0;
1656 }
1657
1658 static av_cold int init_frames(Vp3DecodeContext *s)
1659 {
1660     s->current_frame.f = av_frame_alloc();
1661     s->last_frame.f    = av_frame_alloc();
1662     s->golden_frame.f  = av_frame_alloc();
1663
1664     if (!s->current_frame.f || !s->last_frame.f || !s->golden_frame.f) {
1665         av_frame_free(&s->current_frame.f);
1666         av_frame_free(&s->last_frame.f);
1667         av_frame_free(&s->golden_frame.f);
1668         return AVERROR(ENOMEM);
1669     }
1670
1671     return 0;
1672 }
1673
1674 static av_cold int vp3_decode_init(AVCodecContext *avctx)
1675 {
1676     Vp3DecodeContext *s = avctx->priv_data;
1677     int i, inter, plane, ret;
1678     int c_width;
1679     int c_height;
1680     int y_fragment_count, c_fragment_count;
1681
1682     ret = init_frames(s);
1683     if (ret < 0)
1684         return ret;
1685
1686     avctx->internal->allocate_progress = 1;
1687
1688     if (avctx->codec_tag == MKTAG('V','P','3','0'))
1689         s->version = 0;
1690     else
1691         s->version = 1;
1692
1693     s->avctx = avctx;
1694     s->width = FFALIGN(avctx->width, 16);
1695     s->height = FFALIGN(avctx->height, 16);
1696     if (avctx->pix_fmt == AV_PIX_FMT_NONE)
1697         avctx->pix_fmt = AV_PIX_FMT_YUV420P;
1698     avctx->chroma_sample_location = AVCHROMA_LOC_CENTER;
1699     ff_hpeldsp_init(&s->hdsp, avctx->flags | CODEC_FLAG_BITEXACT);
1700     ff_videodsp_init(&s->vdsp, 8);
1701     ff_vp3dsp_init(&s->vp3dsp, avctx->flags);
1702
1703     for (i = 0; i < 64; i++) {
1704 #define T(x) (x >> 3) | ((x & 7) << 3)
1705         s->idct_permutation[i] = T(i);
1706         s->idct_scantable[i] = T(ff_zigzag_direct[i]);
1707 #undef T
1708     }
1709
1710     /* initialize to an impossible value which will force a recalculation
1711      * in the first frame decode */
1712     for (i = 0; i < 3; i++)
1713         s->qps[i] = -1;
1714
1715     av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift,
1716                                      &s->chroma_y_shift);
1717
1718     s->y_superblock_width = (s->width + 31) / 32;
1719     s->y_superblock_height = (s->height + 31) / 32;
1720     s->y_superblock_count = s->y_superblock_width * s->y_superblock_height;
1721
1722     /* work out the dimensions for the C planes */
1723     c_width = s->width >> s->chroma_x_shift;
1724     c_height = s->height >> s->chroma_y_shift;
1725     s->c_superblock_width = (c_width + 31) / 32;
1726     s->c_superblock_height = (c_height + 31) / 32;
1727     s->c_superblock_count = s->c_superblock_width * s->c_superblock_height;
1728
1729     s->superblock_count = s->y_superblock_count + (s->c_superblock_count * 2);
1730     s->u_superblock_start = s->y_superblock_count;
1731     s->v_superblock_start = s->u_superblock_start + s->c_superblock_count;
1732
1733     s->macroblock_width = (s->width + 15) / 16;
1734     s->macroblock_height = (s->height + 15) / 16;
1735     s->macroblock_count = s->macroblock_width * s->macroblock_height;
1736
1737     s->fragment_width[0] = s->width / FRAGMENT_PIXELS;
1738     s->fragment_height[0] = s->height / FRAGMENT_PIXELS;
1739     s->fragment_width[1]  = s->fragment_width[0]  >> s->chroma_x_shift;
1740     s->fragment_height[1] = s->fragment_height[0] >> s->chroma_y_shift;
1741
1742     /* fragment count covers all 8x8 blocks for all 3 planes */
1743     y_fragment_count     = s->fragment_width[0] * s->fragment_height[0];
1744     c_fragment_count     = s->fragment_width[1] * s->fragment_height[1];
1745     s->fragment_count    = y_fragment_count + 2*c_fragment_count;
1746     s->fragment_start[1] = y_fragment_count;
1747     s->fragment_start[2] = y_fragment_count + c_fragment_count;
1748
1749     if (!s->theora_tables)
1750     {
1751         for (i = 0; i < 64; i++) {
1752             s->coded_dc_scale_factor[i] = vp31_dc_scale_factor[i];
1753             s->coded_ac_scale_factor[i] = vp31_ac_scale_factor[i];
1754             s->base_matrix[0][i] = vp31_intra_y_dequant[i];
1755             s->base_matrix[1][i] = vp31_intra_c_dequant[i];
1756             s->base_matrix[2][i] = vp31_inter_dequant[i];
1757             s->filter_limit_values[i] = vp31_filter_limit_values[i];
1758         }
1759
1760         for(inter=0; inter<2; inter++){
1761             for(plane=0; plane<3; plane++){
1762                 s->qr_count[inter][plane]= 1;
1763                 s->qr_size [inter][plane][0]= 63;
1764                 s->qr_base [inter][plane][0]=
1765                 s->qr_base [inter][plane][1]= 2*inter + (!!plane)*!inter;
1766             }
1767         }
1768
1769         /* init VLC tables */
1770         for (i = 0; i < 16; i++) {
1771
1772             /* DC histograms */
1773             init_vlc(&s->dc_vlc[i], 11, 32,
1774                 &dc_bias[i][0][1], 4, 2,
1775                 &dc_bias[i][0][0], 4, 2, 0);
1776
1777             /* group 1 AC histograms */
1778             init_vlc(&s->ac_vlc_1[i], 11, 32,
1779                 &ac_bias_0[i][0][1], 4, 2,
1780                 &ac_bias_0[i][0][0], 4, 2, 0);
1781
1782             /* group 2 AC histograms */
1783             init_vlc(&s->ac_vlc_2[i], 11, 32,
1784                 &ac_bias_1[i][0][1], 4, 2,
1785                 &ac_bias_1[i][0][0], 4, 2, 0);
1786
1787             /* group 3 AC histograms */
1788             init_vlc(&s->ac_vlc_3[i], 11, 32,
1789                 &ac_bias_2[i][0][1], 4, 2,
1790                 &ac_bias_2[i][0][0], 4, 2, 0);
1791
1792             /* group 4 AC histograms */
1793             init_vlc(&s->ac_vlc_4[i], 11, 32,
1794                 &ac_bias_3[i][0][1], 4, 2,
1795                 &ac_bias_3[i][0][0], 4, 2, 0);
1796         }
1797     } else {
1798
1799         for (i = 0; i < 16; i++) {
1800             /* DC histograms */
1801             if (init_vlc(&s->dc_vlc[i], 11, 32,
1802                 &s->huffman_table[i][0][1], 8, 4,
1803                 &s->huffman_table[i][0][0], 8, 4, 0) < 0)
1804                 goto vlc_fail;
1805
1806             /* group 1 AC histograms */
1807             if (init_vlc(&s->ac_vlc_1[i], 11, 32,
1808                 &s->huffman_table[i+16][0][1], 8, 4,
1809                 &s->huffman_table[i+16][0][0], 8, 4, 0) < 0)
1810                 goto vlc_fail;
1811
1812             /* group 2 AC histograms */
1813             if (init_vlc(&s->ac_vlc_2[i], 11, 32,
1814                 &s->huffman_table[i+16*2][0][1], 8, 4,
1815                 &s->huffman_table[i+16*2][0][0], 8, 4, 0) < 0)
1816                 goto vlc_fail;
1817
1818             /* group 3 AC histograms */
1819             if (init_vlc(&s->ac_vlc_3[i], 11, 32,
1820                 &s->huffman_table[i+16*3][0][1], 8, 4,
1821                 &s->huffman_table[i+16*3][0][0], 8, 4, 0) < 0)
1822                 goto vlc_fail;
1823
1824             /* group 4 AC histograms */
1825             if (init_vlc(&s->ac_vlc_4[i], 11, 32,
1826                 &s->huffman_table[i+16*4][0][1], 8, 4,
1827                 &s->huffman_table[i+16*4][0][0], 8, 4, 0) < 0)
1828                 goto vlc_fail;
1829         }
1830     }
1831
1832     init_vlc(&s->superblock_run_length_vlc, 6, 34,
1833         &superblock_run_length_vlc_table[0][1], 4, 2,
1834         &superblock_run_length_vlc_table[0][0], 4, 2, 0);
1835
1836     init_vlc(&s->fragment_run_length_vlc, 5, 30,
1837         &fragment_run_length_vlc_table[0][1], 4, 2,
1838         &fragment_run_length_vlc_table[0][0], 4, 2, 0);
1839
1840     init_vlc(&s->mode_code_vlc, 3, 8,
1841         &mode_code_vlc_table[0][1], 2, 1,
1842         &mode_code_vlc_table[0][0], 2, 1, 0);
1843
1844     init_vlc(&s->motion_vector_vlc, 6, 63,
1845         &motion_vector_vlc_table[0][1], 2, 1,
1846         &motion_vector_vlc_table[0][0], 2, 1, 0);
1847
1848     return allocate_tables(avctx);
1849
1850 vlc_fail:
1851     av_log(avctx, AV_LOG_FATAL, "Invalid huffman table\n");
1852     return -1;
1853 }
1854
1855 /// Release and shuffle frames after decode finishes
1856 static int update_frames(AVCodecContext *avctx)
1857 {
1858     Vp3DecodeContext *s = avctx->priv_data;
1859     int ret = 0;
1860
1861
1862     /* shuffle frames (last = current) */
1863     ff_thread_release_buffer(avctx, &s->last_frame);
1864     ret = ff_thread_ref_frame(&s->last_frame, &s->current_frame);
1865     if (ret < 0)
1866         goto fail;
1867
1868     if (s->keyframe) {
1869         ff_thread_release_buffer(avctx, &s->golden_frame);
1870         ret = ff_thread_ref_frame(&s->golden_frame, &s->current_frame);
1871     }
1872
1873 fail:
1874     ff_thread_release_buffer(avctx, &s->current_frame);
1875     return ret;
1876 }
1877
1878 static int ref_frame(Vp3DecodeContext *s, ThreadFrame *dst, ThreadFrame *src)
1879 {
1880     ff_thread_release_buffer(s->avctx, dst);
1881     if (src->f->data[0])
1882         return ff_thread_ref_frame(dst, src);
1883     return 0;
1884 }
1885
1886 static int ref_frames(Vp3DecodeContext *dst, Vp3DecodeContext *src)
1887 {
1888     int ret;
1889     if ((ret = ref_frame(dst, &dst->current_frame, &src->current_frame)) < 0 ||
1890         (ret = ref_frame(dst, &dst->golden_frame,  &src->golden_frame)) < 0  ||
1891         (ret = ref_frame(dst, &dst->last_frame,    &src->last_frame)) < 0)
1892         return ret;
1893     return 0;
1894 }
1895
1896 static int vp3_update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1897 {
1898     Vp3DecodeContext *s = dst->priv_data, *s1 = src->priv_data;
1899     int qps_changed = 0, i, err;
1900
1901 #define copy_fields(to, from, start_field, end_field) memcpy(&to->start_field, &from->start_field, (char*)&to->end_field - (char*)&to->start_field)
1902
1903     if (!s1->current_frame.f->data[0]
1904         ||s->width != s1->width
1905         ||s->height!= s1->height) {
1906         if (s != s1)
1907             ref_frames(s, s1);
1908         return -1;
1909     }
1910
1911     if (s != s1) {
1912         // init tables if the first frame hasn't been decoded
1913         if (!s->current_frame.f->data[0]) {
1914             int y_fragment_count, c_fragment_count;
1915             s->avctx = dst;
1916             err = allocate_tables(dst);
1917             if (err)
1918                 return err;
1919             y_fragment_count = s->fragment_width[0] * s->fragment_height[0];
1920             c_fragment_count = s->fragment_width[1] * s->fragment_height[1];
1921             memcpy(s->motion_val[0], s1->motion_val[0], y_fragment_count * sizeof(*s->motion_val[0]));
1922             memcpy(s->motion_val[1], s1->motion_val[1], c_fragment_count * sizeof(*s->motion_val[1]));
1923         }
1924
1925         // copy previous frame data
1926         if ((err = ref_frames(s, s1)) < 0)
1927             return err;
1928
1929         s->keyframe = s1->keyframe;
1930
1931         // copy qscale data if necessary
1932         for (i = 0; i < 3; i++) {
1933             if (s->qps[i] != s1->qps[1]) {
1934                 qps_changed = 1;
1935                 memcpy(&s->qmat[i], &s1->qmat[i], sizeof(s->qmat[i]));
1936             }
1937         }
1938
1939         if (s->qps[0] != s1->qps[0])
1940             memcpy(&s->bounding_values_array, &s1->bounding_values_array, sizeof(s->bounding_values_array));
1941
1942         if (qps_changed)
1943             copy_fields(s, s1, qps, superblock_count);
1944 #undef copy_fields
1945     }
1946
1947     return update_frames(dst);
1948 }
1949
1950 static int vp3_decode_frame(AVCodecContext *avctx,
1951                             void *data, int *got_frame,
1952                             AVPacket *avpkt)
1953 {
1954     const uint8_t *buf = avpkt->data;
1955     int buf_size = avpkt->size;
1956     Vp3DecodeContext *s = avctx->priv_data;
1957     GetBitContext gb;
1958     int i, ret;
1959
1960     init_get_bits(&gb, buf, buf_size * 8);
1961
1962     if (s->theora && get_bits1(&gb))
1963     {
1964         av_log(avctx, AV_LOG_ERROR, "Header packet passed to frame decoder, skipping\n");
1965         return -1;
1966     }
1967
1968     s->keyframe = !get_bits1(&gb);
1969     if (!s->theora)
1970         skip_bits(&gb, 1);
1971     for (i = 0; i < 3; i++)
1972         s->last_qps[i] = s->qps[i];
1973
1974     s->nqps=0;
1975     do{
1976         s->qps[s->nqps++]= get_bits(&gb, 6);
1977     } while(s->theora >= 0x030200 && s->nqps<3 && get_bits1(&gb));
1978     for (i = s->nqps; i < 3; i++)
1979         s->qps[i] = -1;
1980
1981     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
1982         av_log(s->avctx, AV_LOG_INFO, " VP3 %sframe #%d: Q index = %d\n",
1983             s->keyframe?"key":"", avctx->frame_number+1, s->qps[0]);
1984
1985     s->skip_loop_filter = !s->filter_limit_values[s->qps[0]] ||
1986         avctx->skip_loop_filter >= (s->keyframe ? AVDISCARD_ALL : AVDISCARD_NONKEY);
1987
1988     if (s->qps[0] != s->last_qps[0])
1989         init_loop_filter(s);
1990
1991     for (i = 0; i < s->nqps; i++)
1992         // reinit all dequantizers if the first one changed, because
1993         // the DC of the first quantizer must be used for all matrices
1994         if (s->qps[i] != s->last_qps[i] || s->qps[0] != s->last_qps[0])
1995             init_dequantizer(s, i);
1996
1997     if (avctx->skip_frame >= AVDISCARD_NONKEY && !s->keyframe)
1998         return buf_size;
1999
2000     s->current_frame.f->pict_type = s->keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
2001     if (ff_thread_get_buffer(avctx, &s->current_frame, AV_GET_BUFFER_FLAG_REF) < 0) {
2002         av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
2003         goto error;
2004     }
2005
2006     if (!s->edge_emu_buffer)
2007         s->edge_emu_buffer = av_malloc(9*FFABS(s->current_frame.f->linesize[0]));
2008
2009     if (s->keyframe) {
2010         if (!s->theora)
2011         {
2012             skip_bits(&gb, 4); /* width code */
2013             skip_bits(&gb, 4); /* height code */
2014             if (s->version)
2015             {
2016                 s->version = get_bits(&gb, 5);
2017                 if (avctx->frame_number == 0)
2018                     av_log(s->avctx, AV_LOG_DEBUG, "VP version: %d\n", s->version);
2019             }
2020         }
2021         if (s->version || s->theora)
2022         {
2023                 if (get_bits1(&gb))
2024                     av_log(s->avctx, AV_LOG_ERROR, "Warning, unsupported keyframe coding type?!\n");
2025             skip_bits(&gb, 2); /* reserved? */
2026         }
2027     } else {
2028         if (!s->golden_frame.f->data[0]) {
2029             av_log(s->avctx, AV_LOG_WARNING, "vp3: first frame not a keyframe\n");
2030
2031             s->golden_frame.f->pict_type = AV_PICTURE_TYPE_I;
2032             if (ff_thread_get_buffer(avctx, &s->golden_frame, AV_GET_BUFFER_FLAG_REF) < 0) {
2033                 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
2034                 goto error;
2035             }
2036             ff_thread_release_buffer(avctx, &s->last_frame);
2037             if ((ret = ff_thread_ref_frame(&s->last_frame, &s->golden_frame)) < 0)
2038                 goto error;
2039             ff_thread_report_progress(&s->last_frame, INT_MAX, 0);
2040         }
2041     }
2042
2043     memset(s->all_fragments, 0, s->fragment_count * sizeof(Vp3Fragment));
2044     ff_thread_finish_setup(avctx);
2045
2046     if (unpack_superblocks(s, &gb)){
2047         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_superblocks\n");
2048         goto error;
2049     }
2050     if (unpack_modes(s, &gb)){
2051         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_modes\n");
2052         goto error;
2053     }
2054     if (unpack_vectors(s, &gb)){
2055         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_vectors\n");
2056         goto error;
2057     }
2058     if (unpack_block_qpis(s, &gb)){
2059         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_block_qpis\n");
2060         goto error;
2061     }
2062     if (unpack_dct_coeffs(s, &gb)){
2063         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_dct_coeffs\n");
2064         goto error;
2065     }
2066
2067     for (i = 0; i < 3; i++) {
2068         int height = s->height >> (i && s->chroma_y_shift);
2069         if (s->flipped_image)
2070             s->data_offset[i] = 0;
2071         else
2072             s->data_offset[i] = (height-1) * s->current_frame.f->linesize[i];
2073     }
2074
2075     s->last_slice_end = 0;
2076     for (i = 0; i < s->c_superblock_height; i++)
2077         render_slice(s, i);
2078
2079     // filter the last row
2080     for (i = 0; i < 3; i++) {
2081         int row = (s->height >> (3+(i && s->chroma_y_shift))) - 1;
2082         apply_loop_filter(s, i, row, row+1);
2083     }
2084     vp3_draw_horiz_band(s, s->avctx->height);
2085
2086     if ((ret = av_frame_ref(data, s->current_frame.f)) < 0)
2087         return ret;
2088     *got_frame = 1;
2089
2090     if (!HAVE_THREADS || !(s->avctx->active_thread_type&FF_THREAD_FRAME)) {
2091         ret = update_frames(avctx);
2092         if (ret < 0)
2093             return ret;
2094     }
2095
2096     return buf_size;
2097
2098 error:
2099     ff_thread_report_progress(&s->current_frame, INT_MAX, 0);
2100
2101     if (!HAVE_THREADS || !(s->avctx->active_thread_type&FF_THREAD_FRAME))
2102         av_frame_unref(s->current_frame.f);
2103
2104     return -1;
2105 }
2106
2107 static int read_huffman_tree(AVCodecContext *avctx, GetBitContext *gb)
2108 {
2109     Vp3DecodeContext *s = avctx->priv_data;
2110
2111     if (get_bits1(gb)) {
2112         int token;
2113         if (s->entries >= 32) { /* overflow */
2114             av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n");
2115             return -1;
2116         }
2117         token = get_bits(gb, 5);
2118         av_dlog(avctx, "hti %d hbits %x token %d entry : %d size %d\n",
2119                 s->hti, s->hbits, token, s->entries, s->huff_code_size);
2120         s->huffman_table[s->hti][token][0] = s->hbits;
2121         s->huffman_table[s->hti][token][1] = s->huff_code_size;
2122         s->entries++;
2123     }
2124     else {
2125         if (s->huff_code_size >= 32) {/* overflow */
2126             av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n");
2127             return -1;
2128         }
2129         s->huff_code_size++;
2130         s->hbits <<= 1;
2131         if (read_huffman_tree(avctx, gb))
2132             return -1;
2133         s->hbits |= 1;
2134         if (read_huffman_tree(avctx, gb))
2135             return -1;
2136         s->hbits >>= 1;
2137         s->huff_code_size--;
2138     }
2139     return 0;
2140 }
2141
2142 static int vp3_init_thread_copy(AVCodecContext *avctx)
2143 {
2144     Vp3DecodeContext *s = avctx->priv_data;
2145
2146     s->superblock_coding      = NULL;
2147     s->all_fragments          = NULL;
2148     s->coded_fragment_list[0] = NULL;
2149     s->dct_tokens_base        = NULL;
2150     s->superblock_fragments   = NULL;
2151     s->macroblock_coding      = NULL;
2152     s->motion_val[0]          = NULL;
2153     s->motion_val[1]          = NULL;
2154     s->edge_emu_buffer        = NULL;
2155
2156     return init_frames(s);
2157 }
2158
2159 #if CONFIG_THEORA_DECODER
2160 static const enum AVPixelFormat theora_pix_fmts[4] = {
2161     AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P
2162 };
2163
2164 static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb)
2165 {
2166     Vp3DecodeContext *s = avctx->priv_data;
2167     int visible_width, visible_height, colorspace;
2168     int offset_x = 0, offset_y = 0;
2169     AVRational fps, aspect;
2170
2171     s->theora = get_bits_long(gb, 24);
2172     av_log(avctx, AV_LOG_DEBUG, "Theora bitstream version %X\n", s->theora);
2173
2174     /* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */
2175     /* but previous versions have the image flipped relative to vp3 */
2176     if (s->theora < 0x030200)
2177     {
2178         s->flipped_image = 1;
2179         av_log(avctx, AV_LOG_DEBUG, "Old (<alpha3) Theora bitstream, flipped image\n");
2180     }
2181
2182     visible_width  = s->width  = get_bits(gb, 16) << 4;
2183     visible_height = s->height = get_bits(gb, 16) << 4;
2184
2185     if(av_image_check_size(s->width, s->height, 0, avctx)){
2186         av_log(avctx, AV_LOG_ERROR, "Invalid dimensions (%dx%d)\n", s->width, s->height);
2187         s->width= s->height= 0;
2188         return -1;
2189     }
2190
2191     if (s->theora >= 0x030200) {
2192         visible_width  = get_bits_long(gb, 24);
2193         visible_height = get_bits_long(gb, 24);
2194
2195         offset_x = get_bits(gb, 8); /* offset x */
2196         offset_y = get_bits(gb, 8); /* offset y, from bottom */
2197     }
2198
2199     fps.num = get_bits_long(gb, 32);
2200     fps.den = get_bits_long(gb, 32);
2201     if (fps.num && fps.den) {
2202         av_reduce(&avctx->time_base.num, &avctx->time_base.den,
2203                   fps.den, fps.num, 1<<30);
2204     }
2205
2206     aspect.num = get_bits_long(gb, 24);
2207     aspect.den = get_bits_long(gb, 24);
2208     if (aspect.num && aspect.den) {
2209         av_reduce(&avctx->sample_aspect_ratio.num,
2210                   &avctx->sample_aspect_ratio.den,
2211                   aspect.num, aspect.den, 1<<30);
2212     }
2213
2214     if (s->theora < 0x030200)
2215         skip_bits(gb, 5); /* keyframe frequency force */
2216     colorspace = get_bits(gb, 8);
2217     skip_bits(gb, 24); /* bitrate */
2218
2219     skip_bits(gb, 6); /* quality hint */
2220
2221     if (s->theora >= 0x030200)
2222     {
2223         skip_bits(gb, 5); /* keyframe frequency force */
2224         avctx->pix_fmt = theora_pix_fmts[get_bits(gb, 2)];
2225         skip_bits(gb, 3); /* reserved */
2226     }
2227
2228 //    align_get_bits(gb);
2229
2230     if (   visible_width  <= s->width  && visible_width  > s->width-16
2231         && visible_height <= s->height && visible_height > s->height-16
2232         && !offset_x && (offset_y == s->height - visible_height))
2233         avcodec_set_dimensions(avctx, visible_width, visible_height);
2234     else
2235         avcodec_set_dimensions(avctx, s->width, s->height);
2236
2237     if (colorspace == 1) {
2238         avctx->color_primaries = AVCOL_PRI_BT470M;
2239     } else if (colorspace == 2) {
2240         avctx->color_primaries = AVCOL_PRI_BT470BG;
2241     }
2242     if (colorspace == 1 || colorspace == 2) {
2243         avctx->colorspace = AVCOL_SPC_BT470BG;
2244         avctx->color_trc  = AVCOL_TRC_BT709;
2245     }
2246
2247     return 0;
2248 }
2249
2250 static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb)
2251 {
2252     Vp3DecodeContext *s = avctx->priv_data;
2253     int i, n, matrices, inter, plane;
2254
2255     if (s->theora >= 0x030200) {
2256         n = get_bits(gb, 3);
2257         /* loop filter limit values table */
2258         if (n)
2259             for (i = 0; i < 64; i++)
2260                 s->filter_limit_values[i] = get_bits(gb, n);
2261     }
2262
2263     if (s->theora >= 0x030200)
2264         n = get_bits(gb, 4) + 1;
2265     else
2266         n = 16;
2267     /* quality threshold table */
2268     for (i = 0; i < 64; i++)
2269         s->coded_ac_scale_factor[i] = get_bits(gb, n);
2270
2271     if (s->theora >= 0x030200)
2272         n = get_bits(gb, 4) + 1;
2273     else
2274         n = 16;
2275     /* dc scale factor table */
2276     for (i = 0; i < 64; i++)
2277         s->coded_dc_scale_factor[i] = get_bits(gb, n);
2278
2279     if (s->theora >= 0x030200)
2280         matrices = get_bits(gb, 9) + 1;
2281     else
2282         matrices = 3;
2283
2284     if(matrices > 384){
2285         av_log(avctx, AV_LOG_ERROR, "invalid number of base matrixes\n");
2286         return -1;
2287     }
2288
2289     for(n=0; n<matrices; n++){
2290         for (i = 0; i < 64; i++)
2291             s->base_matrix[n][i]= get_bits(gb, 8);
2292     }
2293
2294     for (inter = 0; inter <= 1; inter++) {
2295         for (plane = 0; plane <= 2; plane++) {
2296             int newqr= 1;
2297             if (inter || plane > 0)
2298                 newqr = get_bits1(gb);
2299             if (!newqr) {
2300                 int qtj, plj;
2301                 if(inter && get_bits1(gb)){
2302                     qtj = 0;
2303                     plj = plane;
2304                 }else{
2305                     qtj= (3*inter + plane - 1) / 3;
2306                     plj= (plane + 2) % 3;
2307                 }
2308                 s->qr_count[inter][plane]= s->qr_count[qtj][plj];
2309                 memcpy(s->qr_size[inter][plane], s->qr_size[qtj][plj], sizeof(s->qr_size[0][0]));
2310                 memcpy(s->qr_base[inter][plane], s->qr_base[qtj][plj], sizeof(s->qr_base[0][0]));
2311             } else {
2312                 int qri= 0;
2313                 int qi = 0;
2314
2315                 for(;;){
2316                     i= get_bits(gb, av_log2(matrices-1)+1);
2317                     if(i>= matrices){
2318                         av_log(avctx, AV_LOG_ERROR, "invalid base matrix index\n");
2319                         return -1;
2320                     }
2321                     s->qr_base[inter][plane][qri]= i;
2322                     if(qi >= 63)
2323                         break;
2324                     i = get_bits(gb, av_log2(63-qi)+1) + 1;
2325                     s->qr_size[inter][plane][qri++]= i;
2326                     qi += i;
2327                 }
2328
2329                 if (qi > 63) {
2330                     av_log(avctx, AV_LOG_ERROR, "invalid qi %d > 63\n", qi);
2331                     return -1;
2332                 }
2333                 s->qr_count[inter][plane]= qri;
2334             }
2335         }
2336     }
2337
2338     /* Huffman tables */
2339     for (s->hti = 0; s->hti < 80; s->hti++) {
2340         s->entries = 0;
2341         s->huff_code_size = 1;
2342         if (!get_bits1(gb)) {
2343             s->hbits = 0;
2344             if(read_huffman_tree(avctx, gb))
2345                 return -1;
2346             s->hbits = 1;
2347             if(read_huffman_tree(avctx, gb))
2348                 return -1;
2349         }
2350     }
2351
2352     s->theora_tables = 1;
2353
2354     return 0;
2355 }
2356
2357 static av_cold int theora_decode_init(AVCodecContext *avctx)
2358 {
2359     Vp3DecodeContext *s = avctx->priv_data;
2360     GetBitContext gb;
2361     int ptype;
2362     uint8_t *header_start[3];
2363     int header_len[3];
2364     int i;
2365
2366     s->theora = 1;
2367
2368     if (!avctx->extradata_size)
2369     {
2370         av_log(avctx, AV_LOG_ERROR, "Missing extradata!\n");
2371         return -1;
2372     }
2373
2374     if (avpriv_split_xiph_headers(avctx->extradata, avctx->extradata_size,
2375                               42, header_start, header_len) < 0) {
2376         av_log(avctx, AV_LOG_ERROR, "Corrupt extradata\n");
2377         return -1;
2378     }
2379
2380   for(i=0;i<3;i++) {
2381     if (header_len[i] <= 0)
2382         continue;
2383     init_get_bits(&gb, header_start[i], header_len[i] * 8);
2384
2385     ptype = get_bits(&gb, 8);
2386
2387      if (!(ptype & 0x80))
2388      {
2389         av_log(avctx, AV_LOG_ERROR, "Invalid extradata!\n");
2390 //        return -1;
2391      }
2392
2393     // FIXME: Check for this as well.
2394     skip_bits_long(&gb, 6*8); /* "theora" */
2395
2396     switch(ptype)
2397     {
2398         case 0x80:
2399             theora_decode_header(avctx, &gb);
2400                 break;
2401         case 0x81:
2402 // FIXME: is this needed? it breaks sometimes
2403 //            theora_decode_comments(avctx, gb);
2404             break;
2405         case 0x82:
2406             if (theora_decode_tables(avctx, &gb))
2407                 return -1;
2408             break;
2409         default:
2410             av_log(avctx, AV_LOG_ERROR, "Unknown Theora config packet: %d\n", ptype&~0x80);
2411             break;
2412     }
2413     if(ptype != 0x81 && 8*header_len[i] != get_bits_count(&gb))
2414         av_log(avctx, AV_LOG_WARNING, "%d bits left in packet %X\n", 8*header_len[i] - get_bits_count(&gb), ptype);
2415     if (s->theora < 0x030200)
2416         break;
2417   }
2418
2419     return vp3_decode_init(avctx);
2420 }
2421
2422 AVCodec ff_theora_decoder = {
2423     .name                  = "theora",
2424     .type                  = AVMEDIA_TYPE_VIDEO,
2425     .id                    = AV_CODEC_ID_THEORA,
2426     .priv_data_size        = sizeof(Vp3DecodeContext),
2427     .init                  = theora_decode_init,
2428     .close                 = vp3_decode_end,
2429     .decode                = vp3_decode_frame,
2430     .capabilities          = CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND |
2431                              CODEC_CAP_FRAME_THREADS,
2432     .flush                 = vp3_decode_flush,
2433     .long_name             = NULL_IF_CONFIG_SMALL("Theora"),
2434     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(vp3_init_thread_copy),
2435     .update_thread_context = ONLY_IF_THREADS_ENABLED(vp3_update_thread_context)
2436 };
2437 #endif
2438
2439 AVCodec ff_vp3_decoder = {
2440     .name                  = "vp3",
2441     .type                  = AVMEDIA_TYPE_VIDEO,
2442     .id                    = AV_CODEC_ID_VP3,
2443     .priv_data_size        = sizeof(Vp3DecodeContext),
2444     .init                  = vp3_decode_init,
2445     .close                 = vp3_decode_end,
2446     .decode                = vp3_decode_frame,
2447     .capabilities          = CODEC_CAP_DR1 | CODEC_CAP_DRAW_HORIZ_BAND |
2448                              CODEC_CAP_FRAME_THREADS,
2449     .flush                 = vp3_decode_flush,
2450     .long_name             = NULL_IF_CONFIG_SMALL("On2 VP3"),
2451     .init_thread_copy      = ONLY_IF_THREADS_ENABLED(vp3_init_thread_copy),
2452     .update_thread_context = ONLY_IF_THREADS_ENABLED(vp3_update_thread_context),
2453 };