]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavcodec/vp3.c
simplify
[frescor/ffmpeg.git] / libavcodec / vp3.c
1 /*
2  * Copyright (C) 2003-2004 the ffmpeg project
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  */
19
20 /**
21  * @file vp3.c
22  * On2 VP3 Video Decoder
23  *
24  * VP3 Video Decoder by Mike Melanson (mike at multimedia.cx)
25  * For more information about the VP3 coding process, visit:
26  *   http://multimedia.cx/
27  *
28  * Theora decoder by Alex Beregszaszi
29  */
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35
36 #include "common.h"
37 #include "avcodec.h"
38 #include "dsputil.h"
39 #include "mpegvideo.h"
40
41 #include "vp3data.h"
42
43 #define FRAGMENT_PIXELS 8
44
45 /*
46  * Debugging Variables
47  *
48  * Define one or more of the following compile-time variables to 1 to obtain
49  * elaborate information about certain aspects of the decoding process.
50  *
51  * KEYFRAMES_ONLY: set this to 1 to only see keyframes (VP3 slideshow mode)
52  * DEBUG_VP3: high-level decoding flow
53  * DEBUG_INIT: initialization parameters
54  * DEBUG_DEQUANTIZERS: display how the dequanization tables are built
55  * DEBUG_BLOCK_CODING: unpacking the superblock/macroblock/fragment coding
56  * DEBUG_MODES: unpacking the coding modes for individual fragments
57  * DEBUG_VECTORS: display the motion vectors
58  * DEBUG_TOKEN: display exhaustive information about each DCT token
59  * DEBUG_VLC: display the VLCs as they are extracted from the stream
60  * DEBUG_DC_PRED: display the process of reversing DC prediction
61  * DEBUG_IDCT: show every detail of the IDCT process
62  */
63
64 #define KEYFRAMES_ONLY 0
65
66 #define DEBUG_VP3 0
67 #define DEBUG_INIT 0
68 #define DEBUG_DEQUANTIZERS 0
69 #define DEBUG_BLOCK_CODING 0
70 #define DEBUG_MODES 0
71 #define DEBUG_VECTORS 0
72 #define DEBUG_TOKEN 0
73 #define DEBUG_VLC 0
74 #define DEBUG_DC_PRED 0
75 #define DEBUG_IDCT 0
76
77 #if DEBUG_VP3
78 #define debug_vp3(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
79 #else
80 static inline void debug_vp3(const char *format, ...) { }
81 #endif
82
83 #if DEBUG_INIT
84 #define debug_init(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
85 #else
86 static inline void debug_init(const char *format, ...) { }
87 #endif
88
89 #if DEBUG_DEQUANTIZERS
90 #define debug_dequantizers(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
91 #else
92 static inline void debug_dequantizers(const char *format, ...) { }
93 #endif
94
95 #if DEBUG_BLOCK_CODING
96 #define debug_block_coding(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
97 #else
98 static inline void debug_block_coding(const char *format, ...) { }
99 #endif
100
101 #if DEBUG_MODES
102 #define debug_modes(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
103 #else
104 static inline void debug_modes(const char *format, ...) { }
105 #endif
106
107 #if DEBUG_VECTORS
108 #define debug_vectors(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
109 #else
110 static inline void debug_vectors(const char *format, ...) { }
111 #endif
112
113 #if DEBUG_TOKEN
114 #define debug_token(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
115 #else
116 static inline void debug_token(const char *format, ...) { }
117 #endif
118
119 #if DEBUG_VLC
120 #define debug_vlc(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
121 #else
122 static inline void debug_vlc(const char *format, ...) { }
123 #endif
124
125 #if DEBUG_DC_PRED
126 #define debug_dc_pred(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
127 #else
128 static inline void debug_dc_pred(const char *format, ...) { }
129 #endif
130
131 #if DEBUG_IDCT
132 #define debug_idct(args...) av_log(NULL, AV_LOG_DEBUG, ## args)
133 #else
134 static inline void debug_idct(const char *format, ...) { }
135 #endif
136
137 typedef struct Coeff {
138     struct Coeff *next;
139     DCTELEM coeff;
140     uint8_t index;
141 } Coeff;
142
143 //FIXME split things out into their own arrays
144 typedef struct Vp3Fragment {
145     Coeff *next_coeff;
146     /* address of first pixel taking into account which plane the fragment
147      * lives on as well as the plane stride */
148     int first_pixel;
149     /* this is the macroblock that the fragment belongs to */
150     uint16_t macroblock;
151     uint8_t coding_method;
152     uint8_t coeff_count;
153     int8_t motion_x;
154     int8_t motion_y;
155 } Vp3Fragment;
156
157 #define SB_NOT_CODED        0
158 #define SB_PARTIALLY_CODED  1
159 #define SB_FULLY_CODED      2
160
161 #define MODE_INTER_NO_MV      0
162 #define MODE_INTRA            1
163 #define MODE_INTER_PLUS_MV    2
164 #define MODE_INTER_LAST_MV    3
165 #define MODE_INTER_PRIOR_LAST 4
166 #define MODE_USING_GOLDEN     5
167 #define MODE_GOLDEN_MV        6
168 #define MODE_INTER_FOURMV     7
169 #define CODING_MODE_COUNT     8
170
171 /* special internal mode */
172 #define MODE_COPY             8
173
174 /* There are 6 preset schemes, plus a free-form scheme */
175 static int ModeAlphabet[7][CODING_MODE_COUNT] =
176 {
177     /* this is the custom scheme */
178     { 0, 0, 0, 0, 0, 0, 0, 0 },
179
180     /* scheme 1: Last motion vector dominates */
181     {    MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
182          MODE_INTER_PLUS_MV,    MODE_INTER_NO_MV,
183          MODE_INTRA,            MODE_USING_GOLDEN,
184          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
185
186     /* scheme 2 */
187     {    MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
188          MODE_INTER_NO_MV,      MODE_INTER_PLUS_MV,
189          MODE_INTRA,            MODE_USING_GOLDEN,
190          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
191
192     /* scheme 3 */
193     {    MODE_INTER_LAST_MV,    MODE_INTER_PLUS_MV,
194          MODE_INTER_PRIOR_LAST, MODE_INTER_NO_MV,
195          MODE_INTRA,            MODE_USING_GOLDEN,
196          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
197
198     /* scheme 4 */
199     {    MODE_INTER_LAST_MV,    MODE_INTER_PLUS_MV,
200          MODE_INTER_NO_MV,      MODE_INTER_PRIOR_LAST,
201          MODE_INTRA,            MODE_USING_GOLDEN,
202          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
203
204     /* scheme 5: No motion vector dominates */
205     {    MODE_INTER_NO_MV,      MODE_INTER_LAST_MV,
206          MODE_INTER_PRIOR_LAST, MODE_INTER_PLUS_MV,
207          MODE_INTRA,            MODE_USING_GOLDEN,
208          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
209
210     /* scheme 6 */
211     {    MODE_INTER_NO_MV,      MODE_USING_GOLDEN,
212          MODE_INTER_LAST_MV,    MODE_INTER_PRIOR_LAST,
213          MODE_INTER_PLUS_MV,    MODE_INTRA,
214          MODE_GOLDEN_MV,        MODE_INTER_FOURMV },
215
216 };
217
218 #define MIN_DEQUANT_VAL 2
219
220 typedef struct Vp3DecodeContext {
221     AVCodecContext *avctx;
222     int theora, theora_tables;
223     int version;
224     int width, height;
225     AVFrame golden_frame;
226     AVFrame last_frame;
227     AVFrame current_frame;
228     int keyframe;
229     DSPContext dsp;
230     int flipped_image;
231
232     int qis[3];
233     int nqis;
234     int quality_index;
235     int last_quality_index;
236
237     int superblock_count;
238     int superblock_width;
239     int superblock_height;
240     int y_superblock_width;
241     int y_superblock_height;
242     int c_superblock_width;
243     int c_superblock_height;
244     int u_superblock_start;
245     int v_superblock_start;
246     unsigned char *superblock_coding;
247
248     int macroblock_count;
249     int macroblock_width;
250     int macroblock_height;
251
252     int fragment_count;
253     int fragment_width;
254     int fragment_height;
255
256     Vp3Fragment *all_fragments;
257     Coeff *coeffs;
258     Coeff *next_coeff;
259     int fragment_start[3];
260
261     ScanTable scantable;
262
263     /* tables */
264     uint16_t coded_dc_scale_factor[64];
265     uint32_t coded_ac_scale_factor[64];
266     uint8_t base_matrix[384][64];
267     uint8_t qr_count[2][3];
268     uint8_t qr_size [2][3][64];
269     uint16_t qr_base[2][3][64];
270
271     /* this is a list of indices into the all_fragments array indicating
272      * which of the fragments are coded */
273     int *coded_fragment_list;
274     int coded_fragment_list_index;
275     int pixel_addresses_inited;
276
277     VLC dc_vlc[16];
278     VLC ac_vlc_1[16];
279     VLC ac_vlc_2[16];
280     VLC ac_vlc_3[16];
281     VLC ac_vlc_4[16];
282
283     VLC superblock_run_length_vlc;
284     VLC fragment_run_length_vlc;
285     VLC mode_code_vlc;
286     VLC motion_vector_vlc;
287
288     /* these arrays need to be on 16-byte boundaries since SSE2 operations
289      * index into them */
290     DECLARE_ALIGNED_16(int16_t, qmat[2][4][64]);        //<qmat[is_inter][plane]
291
292     /* This table contains superblock_count * 16 entries. Each set of 16
293      * numbers corresponds to the fragment indices 0..15 of the superblock.
294      * An entry will be -1 to indicate that no entry corresponds to that
295      * index. */
296     int *superblock_fragments;
297
298     /* This table contains superblock_count * 4 entries. Each set of 4
299      * numbers corresponds to the macroblock indices 0..3 of the superblock.
300      * An entry will be -1 to indicate that no entry corresponds to that
301      * index. */
302     int *superblock_macroblocks;
303
304     /* This table contains macroblock_count * 6 entries. Each set of 6
305      * numbers corresponds to the fragment indices 0..5 which comprise
306      * the macroblock (4 Y fragments and 2 C fragments). */
307     int *macroblock_fragments;
308     /* This is an array that indicates how a particular macroblock
309      * is coded. */
310     unsigned char *macroblock_coding;
311
312     int first_coded_y_fragment;
313     int first_coded_c_fragment;
314     int last_coded_y_fragment;
315     int last_coded_c_fragment;
316
317     uint8_t edge_emu_buffer[9*2048]; //FIXME dynamic alloc
318     uint8_t qscale_table[2048]; //FIXME dynamic alloc (width+15)/16
319
320     /* Huffman decode */
321     int hti;
322     unsigned int hbits;
323     int entries;
324     int huff_code_size;
325     uint16_t huffman_table[80][32][2];
326
327     uint32_t filter_limit_values[64];
328     int bounding_values_array[256];
329 } Vp3DecodeContext;
330
331 static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb);
332
333 /************************************************************************
334  * VP3 specific functions
335  ************************************************************************/
336
337 /*
338  * This function sets up all of the various blocks mappings:
339  * superblocks <-> fragments, macroblocks <-> fragments,
340  * superblocks <-> macroblocks
341  *
342  * Returns 0 is successful; returns 1 if *anything* went wrong.
343  */
344 static int init_block_mapping(Vp3DecodeContext *s)
345 {
346     int i, j;
347     signed int hilbert_walk_y[16];
348     signed int hilbert_walk_c[16];
349     signed int hilbert_walk_mb[4];
350
351     int current_fragment = 0;
352     int current_width = 0;
353     int current_height = 0;
354     int right_edge = 0;
355     int bottom_edge = 0;
356     int superblock_row_inc = 0;
357     int *hilbert = NULL;
358     int mapping_index = 0;
359
360     int current_macroblock;
361     int c_fragment;
362
363     signed char travel_width[16] = {
364          1,  1,  0, -1,
365          0,  0,  1,  0,
366          1,  0,  1,  0,
367          0, -1,  0,  1
368     };
369
370     signed char travel_height[16] = {
371          0,  0,  1,  0,
372          1,  1,  0, -1,
373          0,  1,  0, -1,
374         -1,  0, -1,  0
375     };
376
377     signed char travel_width_mb[4] = {
378          1,  0,  1,  0
379     };
380
381     signed char travel_height_mb[4] = {
382          0,  1,  0, -1
383     };
384
385     debug_vp3("  vp3: initialize block mapping tables\n");
386
387     /* figure out hilbert pattern per these frame dimensions */
388     hilbert_walk_y[0]  = 1;
389     hilbert_walk_y[1]  = 1;
390     hilbert_walk_y[2]  = s->fragment_width;
391     hilbert_walk_y[3]  = -1;
392     hilbert_walk_y[4]  = s->fragment_width;
393     hilbert_walk_y[5]  = s->fragment_width;
394     hilbert_walk_y[6]  = 1;
395     hilbert_walk_y[7]  = -s->fragment_width;
396     hilbert_walk_y[8]  = 1;
397     hilbert_walk_y[9]  = s->fragment_width;
398     hilbert_walk_y[10]  = 1;
399     hilbert_walk_y[11] = -s->fragment_width;
400     hilbert_walk_y[12] = -s->fragment_width;
401     hilbert_walk_y[13] = -1;
402     hilbert_walk_y[14] = -s->fragment_width;
403     hilbert_walk_y[15] = 1;
404
405     hilbert_walk_c[0]  = 1;
406     hilbert_walk_c[1]  = 1;
407     hilbert_walk_c[2]  = s->fragment_width / 2;
408     hilbert_walk_c[3]  = -1;
409     hilbert_walk_c[4]  = s->fragment_width / 2;
410     hilbert_walk_c[5]  = s->fragment_width / 2;
411     hilbert_walk_c[6]  = 1;
412     hilbert_walk_c[7]  = -s->fragment_width / 2;
413     hilbert_walk_c[8]  = 1;
414     hilbert_walk_c[9]  = s->fragment_width / 2;
415     hilbert_walk_c[10]  = 1;
416     hilbert_walk_c[11] = -s->fragment_width / 2;
417     hilbert_walk_c[12] = -s->fragment_width / 2;
418     hilbert_walk_c[13] = -1;
419     hilbert_walk_c[14] = -s->fragment_width / 2;
420     hilbert_walk_c[15] = 1;
421
422     hilbert_walk_mb[0] = 1;
423     hilbert_walk_mb[1] = s->macroblock_width;
424     hilbert_walk_mb[2] = 1;
425     hilbert_walk_mb[3] = -s->macroblock_width;
426
427     /* iterate through each superblock (all planes) and map the fragments */
428     for (i = 0; i < s->superblock_count; i++) {
429         debug_init("    superblock %d (u starts @ %d, v starts @ %d)\n",
430             i, s->u_superblock_start, s->v_superblock_start);
431
432         /* time to re-assign the limits? */
433         if (i == 0) {
434
435             /* start of Y superblocks */
436             right_edge = s->fragment_width;
437             bottom_edge = s->fragment_height;
438             current_width = -1;
439             current_height = 0;
440             superblock_row_inc = 3 * s->fragment_width -
441                 (s->y_superblock_width * 4 - s->fragment_width);
442             hilbert = hilbert_walk_y;
443
444             /* the first operation for this variable is to advance by 1 */
445             current_fragment = -1;
446
447         } else if (i == s->u_superblock_start) {
448
449             /* start of U superblocks */
450             right_edge = s->fragment_width / 2;
451             bottom_edge = s->fragment_height / 2;
452             current_width = -1;
453             current_height = 0;
454             superblock_row_inc = 3 * (s->fragment_width / 2) -
455                 (s->c_superblock_width * 4 - s->fragment_width / 2);
456             hilbert = hilbert_walk_c;
457
458             /* the first operation for this variable is to advance by 1 */
459             current_fragment = s->fragment_start[1] - 1;
460
461         } else if (i == s->v_superblock_start) {
462
463             /* start of V superblocks */
464             right_edge = s->fragment_width / 2;
465             bottom_edge = s->fragment_height / 2;
466             current_width = -1;
467             current_height = 0;
468             superblock_row_inc = 3 * (s->fragment_width / 2) -
469                 (s->c_superblock_width * 4 - s->fragment_width / 2);
470             hilbert = hilbert_walk_c;
471
472             /* the first operation for this variable is to advance by 1 */
473             current_fragment = s->fragment_start[2] - 1;
474
475         }
476
477         if (current_width >= right_edge - 1) {
478             /* reset width and move to next superblock row */
479             current_width = -1;
480             current_height += 4;
481
482             /* fragment is now at the start of a new superblock row */
483             current_fragment += superblock_row_inc;
484         }
485
486         /* iterate through all 16 fragments in a superblock */
487         for (j = 0; j < 16; j++) {
488             current_fragment += hilbert[j];
489             current_width += travel_width[j];
490             current_height += travel_height[j];
491
492             /* check if the fragment is in bounds */
493             if ((current_width < right_edge) &&
494                 (current_height < bottom_edge)) {
495                 s->superblock_fragments[mapping_index] = current_fragment;
496                 debug_init("    mapping fragment %d to superblock %d, position %d (%d/%d x %d/%d)\n",
497                     s->superblock_fragments[mapping_index], i, j,
498                     current_width, right_edge, current_height, bottom_edge);
499             } else {
500                 s->superblock_fragments[mapping_index] = -1;
501                 debug_init("    superblock %d, position %d has no fragment (%d/%d x %d/%d)\n",
502                     i, j,
503                     current_width, right_edge, current_height, bottom_edge);
504             }
505
506             mapping_index++;
507         }
508     }
509
510     /* initialize the superblock <-> macroblock mapping; iterate through
511      * all of the Y plane superblocks to build this mapping */
512     right_edge = s->macroblock_width;
513     bottom_edge = s->macroblock_height;
514     current_width = -1;
515     current_height = 0;
516     superblock_row_inc = s->macroblock_width -
517         (s->y_superblock_width * 2 - s->macroblock_width);;
518     hilbert = hilbert_walk_mb;
519     mapping_index = 0;
520     current_macroblock = -1;
521     for (i = 0; i < s->u_superblock_start; i++) {
522
523         if (current_width >= right_edge - 1) {
524             /* reset width and move to next superblock row */
525             current_width = -1;
526             current_height += 2;
527
528             /* macroblock is now at the start of a new superblock row */
529             current_macroblock += superblock_row_inc;
530         }
531
532         /* iterate through each potential macroblock in the superblock */
533         for (j = 0; j < 4; j++) {
534             current_macroblock += hilbert_walk_mb[j];
535             current_width += travel_width_mb[j];
536             current_height += travel_height_mb[j];
537
538             /* check if the macroblock is in bounds */
539             if ((current_width < right_edge) &&
540                 (current_height < bottom_edge)) {
541                 s->superblock_macroblocks[mapping_index] = current_macroblock;
542                 debug_init("    mapping macroblock %d to superblock %d, position %d (%d/%d x %d/%d)\n",
543                     s->superblock_macroblocks[mapping_index], i, j,
544                     current_width, right_edge, current_height, bottom_edge);
545             } else {
546                 s->superblock_macroblocks[mapping_index] = -1;
547                 debug_init("    superblock %d, position %d has no macroblock (%d/%d x %d/%d)\n",
548                     i, j,
549                     current_width, right_edge, current_height, bottom_edge);
550             }
551
552             mapping_index++;
553         }
554     }
555
556     /* initialize the macroblock <-> fragment mapping */
557     current_fragment = 0;
558     current_macroblock = 0;
559     mapping_index = 0;
560     for (i = 0; i < s->fragment_height; i += 2) {
561
562         for (j = 0; j < s->fragment_width; j += 2) {
563
564             debug_init("    macroblock %d contains fragments: ", current_macroblock);
565             s->all_fragments[current_fragment].macroblock = current_macroblock;
566             s->macroblock_fragments[mapping_index++] = current_fragment;
567             debug_init("%d ", current_fragment);
568
569             if (j + 1 < s->fragment_width) {
570                 s->all_fragments[current_fragment + 1].macroblock = current_macroblock;
571                 s->macroblock_fragments[mapping_index++] = current_fragment + 1;
572                 debug_init("%d ", current_fragment + 1);
573             } else
574                 s->macroblock_fragments[mapping_index++] = -1;
575
576             if (i + 1 < s->fragment_height) {
577                 s->all_fragments[current_fragment + s->fragment_width].macroblock =
578                     current_macroblock;
579                 s->macroblock_fragments[mapping_index++] =
580                     current_fragment + s->fragment_width;
581                 debug_init("%d ", current_fragment + s->fragment_width);
582             } else
583                 s->macroblock_fragments[mapping_index++] = -1;
584
585             if ((j + 1 < s->fragment_width) && (i + 1 < s->fragment_height)) {
586                 s->all_fragments[current_fragment + s->fragment_width + 1].macroblock =
587                     current_macroblock;
588                 s->macroblock_fragments[mapping_index++] =
589                     current_fragment + s->fragment_width + 1;
590                 debug_init("%d ", current_fragment + s->fragment_width + 1);
591             } else
592                 s->macroblock_fragments[mapping_index++] = -1;
593
594             /* C planes */
595             c_fragment = s->fragment_start[1] +
596                 (i * s->fragment_width / 4) + (j / 2);
597             s->all_fragments[c_fragment].macroblock = s->macroblock_count;
598             s->macroblock_fragments[mapping_index++] = c_fragment;
599             debug_init("%d ", c_fragment);
600
601             c_fragment = s->fragment_start[2] +
602                 (i * s->fragment_width / 4) + (j / 2);
603             s->all_fragments[c_fragment].macroblock = s->macroblock_count;
604             s->macroblock_fragments[mapping_index++] = c_fragment;
605             debug_init("%d ", c_fragment);
606
607             debug_init("\n");
608
609             if (j + 2 <= s->fragment_width)
610                 current_fragment += 2;
611             else
612                 current_fragment++;
613             current_macroblock++;
614         }
615
616         current_fragment += s->fragment_width;
617     }
618
619     return 0;  /* successful path out */
620 }
621
622 /*
623  * This function wipes out all of the fragment data.
624  */
625 static void init_frame(Vp3DecodeContext *s, GetBitContext *gb)
626 {
627     int i;
628
629     /* zero out all of the fragment information */
630     s->coded_fragment_list_index = 0;
631     for (i = 0; i < s->fragment_count; i++) {
632         s->all_fragments[i].coeff_count = 0;
633         s->all_fragments[i].motion_x = 127;
634         s->all_fragments[i].motion_y = 127;
635         s->all_fragments[i].next_coeff= NULL;
636         s->coeffs[i].index=
637         s->coeffs[i].coeff=0;
638         s->coeffs[i].next= NULL;
639     }
640 }
641
642 /*
643  * This function sets up the dequantization tables used for a particular
644  * frame.
645  */
646 static void init_dequantizer(Vp3DecodeContext *s)
647 {
648     int ac_scale_factor = s->coded_ac_scale_factor[s->quality_index];
649     int dc_scale_factor = s->coded_dc_scale_factor[s->quality_index];
650     int i, j, plane, inter, qri, bmi, bmj, qistart;
651
652     debug_vp3("  vp3: initializing dequantization tables\n");
653
654     for(inter=0; inter<2; inter++){
655         for(plane=0; plane<3; plane++){
656             int sum=0;
657             for(qri=0; qri<s->qr_count[inter][plane]; qri++){
658                 sum+= s->qr_size[inter][plane][qri];
659                 if(s->quality_index <= sum)
660                     break;
661             }
662             qistart= sum - s->qr_size[inter][plane][qri];
663             bmi= s->qr_base[inter][plane][qri  ];
664             bmj= s->qr_base[inter][plane][qri+1];
665             for(i=0; i<64; i++){
666                 int coeff= (  2*(sum    -s->quality_index)*s->base_matrix[bmi][i]
667                             - 2*(qistart-s->quality_index)*s->base_matrix[bmj][i]
668                             + s->qr_size[inter][plane][qri])
669                            / (2*s->qr_size[inter][plane][qri]);
670
671                 int qmin= 8<<(inter + !i);
672                 int qscale= i ? ac_scale_factor : dc_scale_factor;
673
674                 s->qmat[inter][plane][i]= clip((qscale * coeff)/100 * 4, qmin, 4096);
675             }
676         }
677     }
678
679     memset(s->qscale_table, (FFMAX(s->qmat[0][0][1], s->qmat[0][1][1])+8)/16, 512); //FIXME finetune
680 }
681
682 /*
683  * This function initializes the loop filter boundary limits if the frame's
684  * quality index is different from the previous frame's.
685  */
686 static void init_loop_filter(Vp3DecodeContext *s)
687 {
688     int *bounding_values= s->bounding_values_array+127;
689     int filter_limit;
690     int x;
691
692     filter_limit = s->filter_limit_values[s->quality_index];
693
694     /* set up the bounding values */
695     memset(s->bounding_values_array, 0, 256 * sizeof(int));
696     for (x = 0; x < filter_limit; x++) {
697         bounding_values[-x - filter_limit] = -filter_limit + x;
698         bounding_values[-x] = -x;
699         bounding_values[x] = x;
700         bounding_values[x + filter_limit] = filter_limit - x;
701     }
702 }
703
704 /*
705  * This function unpacks all of the superblock/macroblock/fragment coding
706  * information from the bitstream.
707  */
708 static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
709 {
710     int bit = 0;
711     int current_superblock = 0;
712     int current_run = 0;
713     int decode_fully_flags = 0;
714     int decode_partial_blocks = 0;
715     int first_c_fragment_seen;
716
717     int i, j;
718     int current_fragment;
719
720     debug_vp3("  vp3: unpacking superblock coding\n");
721
722     if (s->keyframe) {
723
724         debug_vp3("    keyframe-- all superblocks are fully coded\n");
725         memset(s->superblock_coding, SB_FULLY_CODED, s->superblock_count);
726
727     } else {
728
729         /* unpack the list of partially-coded superblocks */
730         bit = get_bits(gb, 1);
731         /* toggle the bit because as soon as the first run length is
732          * fetched the bit will be toggled again */
733         bit ^= 1;
734         while (current_superblock < s->superblock_count) {
735             if (current_run-- == 0) {
736                 bit ^= 1;
737                 current_run = get_vlc2(gb,
738                     s->superblock_run_length_vlc.table, 6, 2);
739                 if (current_run == 33)
740                     current_run += get_bits(gb, 12);
741                 debug_block_coding("      setting superblocks %d..%d to %s\n",
742                     current_superblock,
743                     current_superblock + current_run - 1,
744                     (bit) ? "partially coded" : "not coded");
745
746                 /* if any of the superblocks are not partially coded, flag
747                  * a boolean to decode the list of fully-coded superblocks */
748                 if (bit == 0) {
749                     decode_fully_flags = 1;
750                 } else {
751
752                     /* make a note of the fact that there are partially coded
753                      * superblocks */
754                     decode_partial_blocks = 1;
755                 }
756             }
757             s->superblock_coding[current_superblock++] = bit;
758         }
759
760         /* unpack the list of fully coded superblocks if any of the blocks were
761          * not marked as partially coded in the previous step */
762         if (decode_fully_flags) {
763
764             current_superblock = 0;
765             current_run = 0;
766             bit = get_bits(gb, 1);
767             /* toggle the bit because as soon as the first run length is
768              * fetched the bit will be toggled again */
769             bit ^= 1;
770             while (current_superblock < s->superblock_count) {
771
772                 /* skip any superblocks already marked as partially coded */
773                 if (s->superblock_coding[current_superblock] == SB_NOT_CODED) {
774
775                     if (current_run-- == 0) {
776                         bit ^= 1;
777                         current_run = get_vlc2(gb,
778                             s->superblock_run_length_vlc.table, 6, 2);
779                         if (current_run == 33)
780                             current_run += get_bits(gb, 12);
781                     }
782
783                     debug_block_coding("      setting superblock %d to %s\n",
784                         current_superblock,
785                         (bit) ? "fully coded" : "not coded");
786                     s->superblock_coding[current_superblock] = 2*bit;
787                 }
788                 current_superblock++;
789             }
790         }
791
792         /* if there were partial blocks, initialize bitstream for
793          * unpacking fragment codings */
794         if (decode_partial_blocks) {
795
796             current_run = 0;
797             bit = get_bits(gb, 1);
798             /* toggle the bit because as soon as the first run length is
799              * fetched the bit will be toggled again */
800             bit ^= 1;
801         }
802     }
803
804     /* figure out which fragments are coded; iterate through each
805      * superblock (all planes) */
806     s->coded_fragment_list_index = 0;
807     s->next_coeff= s->coeffs + s->fragment_count;
808     s->first_coded_y_fragment = s->first_coded_c_fragment = 0;
809     s->last_coded_y_fragment = s->last_coded_c_fragment = -1;
810     first_c_fragment_seen = 0;
811     memset(s->macroblock_coding, MODE_COPY, s->macroblock_count);
812     for (i = 0; i < s->superblock_count; i++) {
813
814         /* iterate through all 16 fragments in a superblock */
815         for (j = 0; j < 16; j++) {
816
817             /* if the fragment is in bounds, check its coding status */
818             current_fragment = s->superblock_fragments[i * 16 + j];
819             if (current_fragment >= s->fragment_count) {
820                 av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_superblocks(): bad fragment number (%d >= %d)\n",
821                     current_fragment, s->fragment_count);
822                 return 1;
823             }
824             if (current_fragment != -1) {
825                 if (s->superblock_coding[i] == SB_NOT_CODED) {
826
827                     /* copy all the fragments from the prior frame */
828                     s->all_fragments[current_fragment].coding_method =
829                         MODE_COPY;
830
831                 } else if (s->superblock_coding[i] == SB_PARTIALLY_CODED) {
832
833                     /* fragment may or may not be coded; this is the case
834                      * that cares about the fragment coding runs */
835                     if (current_run-- == 0) {
836                         bit ^= 1;
837                         current_run = get_vlc2(gb,
838                             s->fragment_run_length_vlc.table, 5, 2);
839                     }
840
841                     if (bit) {
842                         /* default mode; actual mode will be decoded in
843                          * the next phase */
844                         s->all_fragments[current_fragment].coding_method =
845                             MODE_INTER_NO_MV;
846                         s->all_fragments[current_fragment].next_coeff= s->coeffs + current_fragment;
847                         s->coded_fragment_list[s->coded_fragment_list_index] =
848                             current_fragment;
849                         if ((current_fragment >= s->fragment_start[1]) &&
850                             (s->last_coded_y_fragment == -1) &&
851                             (!first_c_fragment_seen)) {
852                             s->first_coded_c_fragment = s->coded_fragment_list_index;
853                             s->last_coded_y_fragment = s->first_coded_c_fragment - 1;
854                             first_c_fragment_seen = 1;
855                         }
856                         s->coded_fragment_list_index++;
857                         s->macroblock_coding[s->all_fragments[current_fragment].macroblock] = MODE_INTER_NO_MV;
858                         debug_block_coding("      superblock %d is partially coded, fragment %d is coded\n",
859                             i, current_fragment);
860                     } else {
861                         /* not coded; copy this fragment from the prior frame */
862                         s->all_fragments[current_fragment].coding_method =
863                             MODE_COPY;
864                         debug_block_coding("      superblock %d is partially coded, fragment %d is not coded\n",
865                             i, current_fragment);
866                     }
867
868                 } else {
869
870                     /* fragments are fully coded in this superblock; actual
871                      * coding will be determined in next step */
872                     s->all_fragments[current_fragment].coding_method =
873                         MODE_INTER_NO_MV;
874                     s->all_fragments[current_fragment].next_coeff= s->coeffs + current_fragment;
875                     s->coded_fragment_list[s->coded_fragment_list_index] =
876                         current_fragment;
877                     if ((current_fragment >= s->fragment_start[1]) &&
878                         (s->last_coded_y_fragment == -1) &&
879                         (!first_c_fragment_seen)) {
880                         s->first_coded_c_fragment = s->coded_fragment_list_index;
881                         s->last_coded_y_fragment = s->first_coded_c_fragment - 1;
882                         first_c_fragment_seen = 1;
883                     }
884                     s->coded_fragment_list_index++;
885                     s->macroblock_coding[s->all_fragments[current_fragment].macroblock] = MODE_INTER_NO_MV;
886                     debug_block_coding("      superblock %d is fully coded, fragment %d is coded\n",
887                         i, current_fragment);
888                 }
889             }
890         }
891     }
892
893     if (!first_c_fragment_seen)
894         /* only Y fragments coded in this frame */
895         s->last_coded_y_fragment = s->coded_fragment_list_index - 1;
896     else
897         /* end the list of coded C fragments */
898         s->last_coded_c_fragment = s->coded_fragment_list_index - 1;
899
900     debug_block_coding("    %d total coded fragments, y: %d -> %d, c: %d -> %d\n",
901         s->coded_fragment_list_index,
902         s->first_coded_y_fragment,
903         s->last_coded_y_fragment,
904         s->first_coded_c_fragment,
905         s->last_coded_c_fragment);
906
907     return 0;
908 }
909
910 /*
911  * This function unpacks all the coding mode data for individual macroblocks
912  * from the bitstream.
913  */
914 static int unpack_modes(Vp3DecodeContext *s, GetBitContext *gb)
915 {
916     int i, j, k;
917     int scheme;
918     int current_macroblock;
919     int current_fragment;
920     int coding_mode;
921
922     debug_vp3("  vp3: unpacking encoding modes\n");
923
924     if (s->keyframe) {
925         debug_vp3("    keyframe-- all blocks are coded as INTRA\n");
926
927         for (i = 0; i < s->fragment_count; i++)
928             s->all_fragments[i].coding_method = MODE_INTRA;
929
930     } else {
931
932         /* fetch the mode coding scheme for this frame */
933         scheme = get_bits(gb, 3);
934         debug_modes("    using mode alphabet %d\n", scheme);
935
936         /* is it a custom coding scheme? */
937         if (scheme == 0) {
938             debug_modes("    custom mode alphabet ahead:\n");
939             for (i = 0; i < 8; i++)
940                 ModeAlphabet[scheme][get_bits(gb, 3)] = i;
941         }
942
943         for (i = 0; i < 8; i++)
944             debug_modes("      mode[%d][%d] = %d\n", scheme, i,
945                 ModeAlphabet[scheme][i]);
946
947         /* iterate through all of the macroblocks that contain 1 or more
948          * coded fragments */
949         for (i = 0; i < s->u_superblock_start; i++) {
950
951             for (j = 0; j < 4; j++) {
952                 current_macroblock = s->superblock_macroblocks[i * 4 + j];
953                 if ((current_macroblock == -1) ||
954                     (s->macroblock_coding[current_macroblock] == MODE_COPY))
955                     continue;
956                 if (current_macroblock >= s->macroblock_count) {
957                     av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_modes(): bad macroblock number (%d >= %d)\n",
958                         current_macroblock, s->macroblock_count);
959                     return 1;
960                 }
961
962                 /* mode 7 means get 3 bits for each coding mode */
963                 if (scheme == 7)
964                     coding_mode = get_bits(gb, 3);
965                 else
966                     coding_mode = ModeAlphabet[scheme]
967                         [get_vlc2(gb, s->mode_code_vlc.table, 3, 3)];
968
969                 s->macroblock_coding[current_macroblock] = coding_mode;
970                 for (k = 0; k < 6; k++) {
971                     current_fragment =
972                         s->macroblock_fragments[current_macroblock * 6 + k];
973                     if (current_fragment == -1)
974                         continue;
975                     if (current_fragment >= s->fragment_count) {
976                         av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_modes(): bad fragment number (%d >= %d)\n",
977                             current_fragment, s->fragment_count);
978                         return 1;
979                     }
980                     if (s->all_fragments[current_fragment].coding_method !=
981                         MODE_COPY)
982                         s->all_fragments[current_fragment].coding_method =
983                             coding_mode;
984                 }
985
986                 debug_modes("    coding method for macroblock starting @ fragment %d = %d\n",
987                     s->macroblock_fragments[current_macroblock * 6], coding_mode);
988             }
989         }
990     }
991
992     return 0;
993 }
994
995 /*
996  * This function unpacks all the motion vectors for the individual
997  * macroblocks from the bitstream.
998  */
999 static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb)
1000 {
1001     int i, j, k;
1002     int coding_mode;
1003     int motion_x[6];
1004     int motion_y[6];
1005     int last_motion_x = 0;
1006     int last_motion_y = 0;
1007     int prior_last_motion_x = 0;
1008     int prior_last_motion_y = 0;
1009     int current_macroblock;
1010     int current_fragment;
1011
1012     debug_vp3("  vp3: unpacking motion vectors\n");
1013     if (s->keyframe) {
1014
1015         debug_vp3("    keyframe-- there are no motion vectors\n");
1016
1017     } else {
1018
1019         memset(motion_x, 0, 6 * sizeof(int));
1020         memset(motion_y, 0, 6 * sizeof(int));
1021
1022         /* coding mode 0 is the VLC scheme; 1 is the fixed code scheme */
1023         coding_mode = get_bits(gb, 1);
1024         debug_vectors("    using %s scheme for unpacking motion vectors\n",
1025             (coding_mode == 0) ? "VLC" : "fixed-length");
1026
1027         /* iterate through all of the macroblocks that contain 1 or more
1028          * coded fragments */
1029         for (i = 0; i < s->u_superblock_start; i++) {
1030
1031             for (j = 0; j < 4; j++) {
1032                 current_macroblock = s->superblock_macroblocks[i * 4 + j];
1033                 if ((current_macroblock == -1) ||
1034                     (s->macroblock_coding[current_macroblock] == MODE_COPY))
1035                     continue;
1036                 if (current_macroblock >= s->macroblock_count) {
1037                     av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_vectors(): bad macroblock number (%d >= %d)\n",
1038                         current_macroblock, s->macroblock_count);
1039                     return 1;
1040                 }
1041
1042                 current_fragment = s->macroblock_fragments[current_macroblock * 6];
1043                 if (current_fragment >= s->fragment_count) {
1044                     av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_vectors(): bad fragment number (%d >= %d\n",
1045                         current_fragment, s->fragment_count);
1046                     return 1;
1047                 }
1048                 switch (s->macroblock_coding[current_macroblock]) {
1049
1050                 case MODE_INTER_PLUS_MV:
1051                 case MODE_GOLDEN_MV:
1052                     /* all 6 fragments use the same motion vector */
1053                     if (coding_mode == 0) {
1054                         motion_x[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
1055                         motion_y[0] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
1056                     } else {
1057                         motion_x[0] = fixed_motion_vector_table[get_bits(gb, 6)];
1058                         motion_y[0] = fixed_motion_vector_table[get_bits(gb, 6)];
1059                     }
1060
1061                     for (k = 1; k < 6; k++) {
1062                         motion_x[k] = motion_x[0];
1063                         motion_y[k] = motion_y[0];
1064                     }
1065
1066                     /* vector maintenance, only on MODE_INTER_PLUS_MV */
1067                     if (s->macroblock_coding[current_macroblock] ==
1068                         MODE_INTER_PLUS_MV) {
1069                         prior_last_motion_x = last_motion_x;
1070                         prior_last_motion_y = last_motion_y;
1071                         last_motion_x = motion_x[0];
1072                         last_motion_y = motion_y[0];
1073                     }
1074                     break;
1075
1076                 case MODE_INTER_FOURMV:
1077                     /* fetch 4 vectors from the bitstream, one for each
1078                      * Y fragment, then average for the C fragment vectors */
1079                     motion_x[4] = motion_y[4] = 0;
1080                     for (k = 0; k < 4; k++) {
1081                         if (coding_mode == 0) {
1082                             motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
1083                             motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
1084                         } else {
1085                             motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)];
1086                             motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)];
1087                         }
1088                         motion_x[4] += motion_x[k];
1089                         motion_y[4] += motion_y[k];
1090                     }
1091
1092                     motion_x[5]=
1093                     motion_x[4]= RSHIFT(motion_x[4], 2);
1094                     motion_y[5]=
1095                     motion_y[4]= RSHIFT(motion_y[4], 2);
1096
1097                     /* vector maintenance; vector[3] is treated as the
1098                      * last vector in this case */
1099                     prior_last_motion_x = last_motion_x;
1100                     prior_last_motion_y = last_motion_y;
1101                     last_motion_x = motion_x[3];
1102                     last_motion_y = motion_y[3];
1103                     break;
1104
1105                 case MODE_INTER_LAST_MV:
1106                     /* all 6 fragments use the last motion vector */
1107                     motion_x[0] = last_motion_x;
1108                     motion_y[0] = last_motion_y;
1109                     for (k = 1; k < 6; k++) {
1110                         motion_x[k] = motion_x[0];
1111                         motion_y[k] = motion_y[0];
1112                     }
1113
1114                     /* no vector maintenance (last vector remains the
1115                      * last vector) */
1116                     break;
1117
1118                 case MODE_INTER_PRIOR_LAST:
1119                     /* all 6 fragments use the motion vector prior to the
1120                      * last motion vector */
1121                     motion_x[0] = prior_last_motion_x;
1122                     motion_y[0] = prior_last_motion_y;
1123                     for (k = 1; k < 6; k++) {
1124                         motion_x[k] = motion_x[0];
1125                         motion_y[k] = motion_y[0];
1126                     }
1127
1128                     /* vector maintenance */
1129                     prior_last_motion_x = last_motion_x;
1130                     prior_last_motion_y = last_motion_y;
1131                     last_motion_x = motion_x[0];
1132                     last_motion_y = motion_y[0];
1133                     break;
1134
1135                 default:
1136                     /* covers intra, inter without MV, golden without MV */
1137                     memset(motion_x, 0, 6 * sizeof(int));
1138                     memset(motion_y, 0, 6 * sizeof(int));
1139
1140                     /* no vector maintenance */
1141                     break;
1142                 }
1143
1144                 /* assign the motion vectors to the correct fragments */
1145                 debug_vectors("    vectors for macroblock starting @ fragment %d (coding method %d):\n",
1146                     current_fragment,
1147                     s->macroblock_coding[current_macroblock]);
1148                 for (k = 0; k < 6; k++) {
1149                     current_fragment =
1150                         s->macroblock_fragments[current_macroblock * 6 + k];
1151                     if (current_fragment == -1)
1152                         continue;
1153                     if (current_fragment >= s->fragment_count) {
1154                         av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_vectors(): bad fragment number (%d >= %d)\n",
1155                             current_fragment, s->fragment_count);
1156                         return 1;
1157                     }
1158                     s->all_fragments[current_fragment].motion_x = motion_x[k];
1159                     s->all_fragments[current_fragment].motion_y = motion_y[k];
1160                     debug_vectors("    vector %d: fragment %d = (%d, %d)\n",
1161                         k, current_fragment, motion_x[k], motion_y[k]);
1162                 }
1163             }
1164         }
1165     }
1166
1167     return 0;
1168 }
1169
1170 /*
1171  * This function is called by unpack_dct_coeffs() to extract the VLCs from
1172  * the bitstream. The VLCs encode tokens which are used to unpack DCT
1173  * data. This function unpacks all the VLCs for either the Y plane or both
1174  * C planes, and is called for DC coefficients or different AC coefficient
1175  * levels (since different coefficient types require different VLC tables.
1176  *
1177  * This function returns a residual eob run. E.g, if a particular token gave
1178  * instructions to EOB the next 5 fragments and there were only 2 fragments
1179  * left in the current fragment range, 3 would be returned so that it could
1180  * be passed into the next call to this same function.
1181  */
1182 static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
1183                         VLC *table, int coeff_index,
1184                         int first_fragment, int last_fragment,
1185                         int eob_run)
1186 {
1187     int i;
1188     int token;
1189     int zero_run = 0;
1190     DCTELEM coeff = 0;
1191     Vp3Fragment *fragment;
1192     uint8_t *perm= s->scantable.permutated;
1193     int bits_to_get;
1194
1195     if ((first_fragment >= s->fragment_count) ||
1196         (last_fragment >= s->fragment_count)) {
1197
1198         av_log(s->avctx, AV_LOG_ERROR, "  vp3:unpack_vlcs(): bad fragment number (%d -> %d ?)\n",
1199             first_fragment, last_fragment);
1200         return 0;
1201     }
1202
1203     for (i = first_fragment; i <= last_fragment; i++) {
1204
1205         fragment = &s->all_fragments[s->coded_fragment_list[i]];
1206         if (fragment->coeff_count > coeff_index)
1207             continue;
1208
1209         if (!eob_run) {
1210             /* decode a VLC into a token */
1211             token = get_vlc2(gb, table->table, 5, 3);
1212             debug_vlc(" token = %2d, ", token);
1213             /* use the token to get a zero run, a coefficient, and an eob run */
1214             if (token <= 6) {
1215                 eob_run = eob_run_base[token];
1216                 if (eob_run_get_bits[token])
1217                     eob_run += get_bits(gb, eob_run_get_bits[token]);
1218                 coeff = zero_run = 0;
1219             } else {
1220                 bits_to_get = coeff_get_bits[token];
1221                 if (!bits_to_get)
1222                     coeff = coeff_tables[token][0];
1223                 else
1224                     coeff = coeff_tables[token][get_bits(gb, bits_to_get)];
1225
1226                 zero_run = zero_run_base[token];
1227                 if (zero_run_get_bits[token])
1228                     zero_run += get_bits(gb, zero_run_get_bits[token]);
1229             }
1230         }
1231
1232         if (!eob_run) {
1233             fragment->coeff_count += zero_run;
1234             if (fragment->coeff_count < 64){
1235                 fragment->next_coeff->coeff= coeff;
1236                 fragment->next_coeff->index= perm[fragment->coeff_count++]; //FIXME perm here already?
1237                 fragment->next_coeff->next= s->next_coeff;
1238                 s->next_coeff->next=NULL;
1239                 fragment->next_coeff= s->next_coeff++;
1240             }
1241             debug_vlc(" fragment %d coeff = %d\n",
1242                 s->coded_fragment_list[i], fragment->next_coeff[coeff_index]);
1243         } else {
1244             fragment->coeff_count |= 128;
1245             debug_vlc(" fragment %d eob with %d coefficients\n",
1246                 s->coded_fragment_list[i], fragment->coeff_count&127);
1247             eob_run--;
1248         }
1249     }
1250
1251     return eob_run;
1252 }
1253
1254 /*
1255  * This function unpacks all of the DCT coefficient data from the
1256  * bitstream.
1257  */
1258 static int unpack_dct_coeffs(Vp3DecodeContext *s, GetBitContext *gb)
1259 {
1260     int i;
1261     int dc_y_table;
1262     int dc_c_table;
1263     int ac_y_table;
1264     int ac_c_table;
1265     int residual_eob_run = 0;
1266
1267     /* fetch the DC table indices */
1268     dc_y_table = get_bits(gb, 4);
1269     dc_c_table = get_bits(gb, 4);
1270
1271     /* unpack the Y plane DC coefficients */
1272     debug_vp3("  vp3: unpacking Y plane DC coefficients using table %d\n",
1273         dc_y_table);
1274     residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_y_table], 0,
1275         s->first_coded_y_fragment, s->last_coded_y_fragment, residual_eob_run);
1276
1277     /* unpack the C plane DC coefficients */
1278     debug_vp3("  vp3: unpacking C plane DC coefficients using table %d\n",
1279         dc_c_table);
1280     residual_eob_run = unpack_vlcs(s, gb, &s->dc_vlc[dc_c_table], 0,
1281         s->first_coded_c_fragment, s->last_coded_c_fragment, residual_eob_run);
1282
1283     /* fetch the AC table indices */
1284     ac_y_table = get_bits(gb, 4);
1285     ac_c_table = get_bits(gb, 4);
1286
1287     /* unpack the group 1 AC coefficients (coeffs 1-5) */
1288     for (i = 1; i <= 5; i++) {
1289
1290         debug_vp3("  vp3: unpacking level %d Y plane AC coefficients using table %d\n",
1291             i, ac_y_table);
1292         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_1[ac_y_table], i,
1293             s->first_coded_y_fragment, s->last_coded_y_fragment, residual_eob_run);
1294
1295         debug_vp3("  vp3: unpacking level %d C plane AC coefficients using table %d\n",
1296             i, ac_c_table);
1297         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_1[ac_c_table], i,
1298             s->first_coded_c_fragment, s->last_coded_c_fragment, residual_eob_run);
1299     }
1300
1301     /* unpack the group 2 AC coefficients (coeffs 6-14) */
1302     for (i = 6; i <= 14; i++) {
1303
1304         debug_vp3("  vp3: unpacking level %d Y plane AC coefficients using table %d\n",
1305             i, ac_y_table);
1306         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_2[ac_y_table], i,
1307             s->first_coded_y_fragment, s->last_coded_y_fragment, residual_eob_run);
1308
1309         debug_vp3("  vp3: unpacking level %d C plane AC coefficients using table %d\n",
1310             i, ac_c_table);
1311         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_2[ac_c_table], i,
1312             s->first_coded_c_fragment, s->last_coded_c_fragment, residual_eob_run);
1313     }
1314
1315     /* unpack the group 3 AC coefficients (coeffs 15-27) */
1316     for (i = 15; i <= 27; i++) {
1317
1318         debug_vp3("  vp3: unpacking level %d Y plane AC coefficients using table %d\n",
1319             i, ac_y_table);
1320         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_3[ac_y_table], i,
1321             s->first_coded_y_fragment, s->last_coded_y_fragment, residual_eob_run);
1322
1323         debug_vp3("  vp3: unpacking level %d C plane AC coefficients using table %d\n",
1324             i, ac_c_table);
1325         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_3[ac_c_table], i,
1326             s->first_coded_c_fragment, s->last_coded_c_fragment, residual_eob_run);
1327     }
1328
1329     /* unpack the group 4 AC coefficients (coeffs 28-63) */
1330     for (i = 28; i <= 63; i++) {
1331
1332         debug_vp3("  vp3: unpacking level %d Y plane AC coefficients using table %d\n",
1333             i, ac_y_table);
1334         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_4[ac_y_table], i,
1335             s->first_coded_y_fragment, s->last_coded_y_fragment, residual_eob_run);
1336
1337         debug_vp3("  vp3: unpacking level %d C plane AC coefficients using table %d\n",
1338             i, ac_c_table);
1339         residual_eob_run = unpack_vlcs(s, gb, &s->ac_vlc_4[ac_c_table], i,
1340             s->first_coded_c_fragment, s->last_coded_c_fragment, residual_eob_run);
1341     }
1342
1343     return 0;
1344 }
1345
1346 /*
1347  * This function reverses the DC prediction for each coded fragment in
1348  * the frame. Much of this function is adapted directly from the original
1349  * VP3 source code.
1350  */
1351 #define COMPATIBLE_FRAME(x) \
1352   (compatible_frame[s->all_fragments[x].coding_method] == current_frame_type)
1353 #define FRAME_CODED(x) (s->all_fragments[x].coding_method != MODE_COPY)
1354 #define DC_COEFF(u) (s->coeffs[u].index ? 0 : s->coeffs[u].coeff) //FIXME do somethin to simplify this
1355 static inline int iabs (int x) { return ((x < 0) ? -x : x); }
1356
1357 static void reverse_dc_prediction(Vp3DecodeContext *s,
1358                                   int first_fragment,
1359                                   int fragment_width,
1360                                   int fragment_height)
1361 {
1362
1363 #define PUL 8
1364 #define PU 4
1365 #define PUR 2
1366 #define PL 1
1367
1368     int x, y;
1369     int i = first_fragment;
1370
1371     /*
1372      * Fragment prediction groups:
1373      *
1374      * 32222222226
1375      * 10000000004
1376      * 10000000004
1377      * 10000000004
1378      * 10000000004
1379      *
1380      * Note: Groups 5 and 7 do not exist as it would mean that the
1381      * fragment's x coordinate is both 0 and (width - 1) at the same time.
1382      */
1383     int predictor_group;
1384     short predicted_dc;
1385
1386     /* validity flags for the left, up-left, up, and up-right fragments */
1387     int fl, ful, fu, fur;
1388
1389     /* DC values for the left, up-left, up, and up-right fragments */
1390     int vl, vul, vu, vur;
1391
1392     /* indices for the left, up-left, up, and up-right fragments */
1393     int l, ul, u, ur;
1394
1395     /*
1396      * The 6 fields mean:
1397      *   0: up-left multiplier
1398      *   1: up multiplier
1399      *   2: up-right multiplier
1400      *   3: left multiplier
1401      *   4: mask
1402      *   5: right bit shift divisor (e.g., 7 means >>=7, a.k.a. div by 128)
1403      */
1404     int predictor_transform[16][6] = {
1405         {  0,  0,  0,  0,   0,  0 },
1406         {  0,  0,  0,  1,   0,  0 },        // PL
1407         {  0,  0,  1,  0,   0,  0 },        // PUR
1408         {  0,  0, 53, 75, 127,  7 },        // PUR|PL
1409         {  0,  1,  0,  0,   0,  0 },        // PU
1410         {  0,  1,  0,  1,   1,  1 },        // PU|PL
1411         {  0,  1,  0,  0,   0,  0 },        // PU|PUR
1412         {  0,  0, 53, 75, 127,  7 },        // PU|PUR|PL
1413         {  1,  0,  0,  0,   0,  0 },        // PUL
1414         {  0,  0,  0,  1,   0,  0 },        // PUL|PL
1415         {  1,  0,  1,  0,   1,  1 },        // PUL|PUR
1416         {  0,  0, 53, 75, 127,  7 },        // PUL|PUR|PL
1417         {  0,  1,  0,  0,   0,  0 },        // PUL|PU
1418         {-26, 29,  0, 29,  31,  5 },        // PUL|PU|PL
1419         {  3, 10,  3,  0,  15,  4 },        // PUL|PU|PUR
1420         {-26, 29,  0, 29,  31,  5 }         // PUL|PU|PUR|PL
1421     };
1422
1423     /* This table shows which types of blocks can use other blocks for
1424      * prediction. For example, INTRA is the only mode in this table to
1425      * have a frame number of 0. That means INTRA blocks can only predict
1426      * from other INTRA blocks. There are 2 golden frame coding types;
1427      * blocks encoding in these modes can only predict from other blocks
1428      * that were encoded with these 1 of these 2 modes. */
1429     unsigned char compatible_frame[8] = {
1430         1,    /* MODE_INTER_NO_MV */
1431         0,    /* MODE_INTRA */
1432         1,    /* MODE_INTER_PLUS_MV */
1433         1,    /* MODE_INTER_LAST_MV */
1434         1,    /* MODE_INTER_PRIOR_MV */
1435         2,    /* MODE_USING_GOLDEN */
1436         2,    /* MODE_GOLDEN_MV */
1437         1     /* MODE_INTER_FOUR_MV */
1438     };
1439     int current_frame_type;
1440
1441     /* there is a last DC predictor for each of the 3 frame types */
1442     short last_dc[3];
1443
1444     int transform = 0;
1445
1446     debug_vp3("  vp3: reversing DC prediction\n");
1447
1448     vul = vu = vur = vl = 0;
1449     last_dc[0] = last_dc[1] = last_dc[2] = 0;
1450
1451     /* for each fragment row... */
1452     for (y = 0; y < fragment_height; y++) {
1453
1454         /* for each fragment in a row... */
1455         for (x = 0; x < fragment_width; x++, i++) {
1456
1457             /* reverse prediction if this block was coded */
1458             if (s->all_fragments[i].coding_method != MODE_COPY) {
1459
1460                 current_frame_type =
1461                     compatible_frame[s->all_fragments[i].coding_method];
1462                 predictor_group = (x == 0) + ((y == 0) << 1) +
1463                     ((x + 1 == fragment_width) << 2);
1464                 debug_dc_pred(" frag %d: group %d, orig DC = %d, ",
1465                     i, predictor_group, DC_COEFF(i));
1466
1467                 switch (predictor_group) {
1468
1469                 case 0:
1470                     /* main body of fragments; consider all 4 possible
1471                      * fragments for prediction */
1472
1473                     /* calculate the indices of the predicting fragments */
1474                     ul = i - fragment_width - 1;
1475                     u = i - fragment_width;
1476                     ur = i - fragment_width + 1;
1477                     l = i - 1;
1478
1479                     /* fetch the DC values for the predicting fragments */
1480                     vul = DC_COEFF(ul);
1481                     vu = DC_COEFF(u);
1482                     vur = DC_COEFF(ur);
1483                     vl = DC_COEFF(l);
1484
1485                     /* figure out which fragments are valid */
1486                     ful = FRAME_CODED(ul) && COMPATIBLE_FRAME(ul);
1487                     fu = FRAME_CODED(u) && COMPATIBLE_FRAME(u);
1488                     fur = FRAME_CODED(ur) && COMPATIBLE_FRAME(ur);
1489                     fl = FRAME_CODED(l) && COMPATIBLE_FRAME(l);
1490
1491                     /* decide which predictor transform to use */
1492                     transform = (fl*PL) | (fu*PU) | (ful*PUL) | (fur*PUR);
1493
1494                     break;
1495
1496                 case 1:
1497                     /* left column of fragments, not including top corner;
1498                      * only consider up and up-right fragments */
1499
1500                     /* calculate the indices of the predicting fragments */
1501                     u = i - fragment_width;
1502                     ur = i - fragment_width + 1;
1503
1504                     /* fetch the DC values for the predicting fragments */
1505                     vu = DC_COEFF(u);
1506                     vur = DC_COEFF(ur);
1507
1508                     /* figure out which fragments are valid */
1509                     fur = FRAME_CODED(ur) && COMPATIBLE_FRAME(ur);
1510                     fu = FRAME_CODED(u) && COMPATIBLE_FRAME(u);
1511
1512                     /* decide which predictor transform to use */
1513                     transform = (fu*PU) | (fur*PUR);
1514
1515                     break;
1516
1517                 case 2:
1518                 case 6:
1519                     /* top row of fragments, not including top-left frag;
1520                      * only consider the left fragment for prediction */
1521
1522                     /* calculate the indices of the predicting fragments */
1523                     l = i - 1;
1524
1525                     /* fetch the DC values for the predicting fragments */
1526                     vl = DC_COEFF(l);
1527
1528                     /* figure out which fragments are valid */
1529                     fl = FRAME_CODED(l) && COMPATIBLE_FRAME(l);
1530
1531                     /* decide which predictor transform to use */
1532                     transform = (fl*PL);
1533
1534                     break;
1535
1536                 case 3:
1537                     /* top-left fragment */
1538
1539                     /* nothing to predict from in this case */
1540                     transform = 0;
1541
1542                     break;
1543
1544                 case 4:
1545                     /* right column of fragments, not including top corner;
1546                      * consider up-left, up, and left fragments for
1547                      * prediction */
1548
1549                     /* calculate the indices of the predicting fragments */
1550                     ul = i - fragment_width - 1;
1551                     u = i - fragment_width;
1552                     l = i - 1;
1553
1554                     /* fetch the DC values for the predicting fragments */
1555                     vul = DC_COEFF(ul);
1556                     vu = DC_COEFF(u);
1557                     vl = DC_COEFF(l);
1558
1559                     /* figure out which fragments are valid */
1560                     ful = FRAME_CODED(ul) && COMPATIBLE_FRAME(ul);
1561                     fu = FRAME_CODED(u) && COMPATIBLE_FRAME(u);
1562                     fl = FRAME_CODED(l) && COMPATIBLE_FRAME(l);
1563
1564                     /* decide which predictor transform to use */
1565                     transform = (fl*PL) | (fu*PU) | (ful*PUL);
1566
1567                     break;
1568
1569                 }
1570
1571                 debug_dc_pred("transform = %d, ", transform);
1572
1573                 if (transform == 0) {
1574
1575                     /* if there were no fragments to predict from, use last
1576                      * DC saved */
1577                     predicted_dc = last_dc[current_frame_type];
1578                     debug_dc_pred("from last DC (%d) = %d\n",
1579                         current_frame_type, DC_COEFF(i));
1580
1581                 } else {
1582
1583                     /* apply the appropriate predictor transform */
1584                     predicted_dc =
1585                         (predictor_transform[transform][0] * vul) +
1586                         (predictor_transform[transform][1] * vu) +
1587                         (predictor_transform[transform][2] * vur) +
1588                         (predictor_transform[transform][3] * vl);
1589
1590                     /* if there is a shift value in the transform, add
1591                      * the sign bit before the shift */
1592                     if (predictor_transform[transform][5] != 0) {
1593                         predicted_dc += ((predicted_dc >> 15) &
1594                             predictor_transform[transform][4]);
1595                         predicted_dc >>= predictor_transform[transform][5];
1596                     }
1597
1598                     /* check for outranging on the [ul u l] and
1599                      * [ul u ur l] predictors */
1600                     if ((transform == 13) || (transform == 15)) {
1601                         if (iabs(predicted_dc - vu) > 128)
1602                             predicted_dc = vu;
1603                         else if (iabs(predicted_dc - vl) > 128)
1604                             predicted_dc = vl;
1605                         else if (iabs(predicted_dc - vul) > 128)
1606                             predicted_dc = vul;
1607                     }
1608
1609                     debug_dc_pred("from pred DC = %d\n",
1610                     DC_COEFF(i));
1611                 }
1612
1613                 /* at long last, apply the predictor */
1614                 if(s->coeffs[i].index){
1615                     *s->next_coeff= s->coeffs[i];
1616                     s->coeffs[i].index=0;
1617                     s->coeffs[i].coeff=0;
1618                     s->coeffs[i].next= s->next_coeff++;
1619                 }
1620                 s->coeffs[i].coeff += predicted_dc;
1621                 /* save the DC */
1622                 last_dc[current_frame_type] = DC_COEFF(i);
1623                 if(DC_COEFF(i) && !(s->all_fragments[i].coeff_count&127)){
1624                     s->all_fragments[i].coeff_count= 129;
1625 //                    s->all_fragments[i].next_coeff= s->next_coeff;
1626                     s->coeffs[i].next= s->next_coeff;
1627                     (s->next_coeff++)->next=NULL;
1628                 }
1629             }
1630         }
1631     }
1632 }
1633
1634
1635 static void horizontal_filter(unsigned char *first_pixel, int stride,
1636     int *bounding_values);
1637 static void vertical_filter(unsigned char *first_pixel, int stride,
1638     int *bounding_values);
1639
1640 /*
1641  * Perform the final rendering for a particular slice of data.
1642  * The slice number ranges from 0..(macroblock_height - 1).
1643  */
1644 static void render_slice(Vp3DecodeContext *s, int slice)
1645 {
1646     int x;
1647     int m, n;
1648     int16_t *dequantizer;
1649     DECLARE_ALIGNED_16(DCTELEM, block[64]);
1650     int motion_x = 0xdeadbeef, motion_y = 0xdeadbeef;
1651     int motion_halfpel_index;
1652     uint8_t *motion_source;
1653     int plane;
1654     int current_macroblock_entry = slice * s->macroblock_width * 6;
1655
1656     if (slice >= s->macroblock_height)
1657         return;
1658
1659     for (plane = 0; plane < 3; plane++) {
1660         uint8_t *output_plane = s->current_frame.data    [plane];
1661         uint8_t *  last_plane = s->   last_frame.data    [plane];
1662         uint8_t *golden_plane = s-> golden_frame.data    [plane];
1663         int stride            = s->current_frame.linesize[plane];
1664         int plane_width       = s->width  >> !!plane;
1665         int plane_height      = s->height >> !!plane;
1666         int y =        slice *  FRAGMENT_PIXELS << !plane ;
1667         int slice_height = y + (FRAGMENT_PIXELS << !plane);
1668         int i = s->macroblock_fragments[current_macroblock_entry + plane + 3*!!plane];
1669
1670         if (!s->flipped_image) stride = -stride;
1671
1672
1673         if(ABS(stride) > 2048)
1674             return; //various tables are fixed size
1675
1676         /* for each fragment row in the slice (both of them)... */
1677         for (; y < slice_height; y += 8) {
1678
1679             /* for each fragment in a row... */
1680             for (x = 0; x < plane_width; x += 8, i++) {
1681
1682                 if ((i < 0) || (i >= s->fragment_count)) {
1683                     av_log(s->avctx, AV_LOG_ERROR, "  vp3:render_slice(): bad fragment number (%d)\n", i);
1684                     return;
1685                 }
1686
1687                 /* transform if this block was coded */
1688                 if ((s->all_fragments[i].coding_method != MODE_COPY) &&
1689                     !((s->avctx->flags & CODEC_FLAG_GRAY) && plane)) {
1690
1691                     if ((s->all_fragments[i].coding_method == MODE_USING_GOLDEN) ||
1692                         (s->all_fragments[i].coding_method == MODE_GOLDEN_MV))
1693                         motion_source= golden_plane;
1694                     else
1695                         motion_source= last_plane;
1696
1697                     motion_source += s->all_fragments[i].first_pixel;
1698                     motion_halfpel_index = 0;
1699
1700                     /* sort out the motion vector if this fragment is coded
1701                      * using a motion vector method */
1702                     if ((s->all_fragments[i].coding_method > MODE_INTRA) &&
1703                         (s->all_fragments[i].coding_method != MODE_USING_GOLDEN)) {
1704                         int src_x, src_y;
1705                         motion_x = s->all_fragments[i].motion_x;
1706                         motion_y = s->all_fragments[i].motion_y;
1707                         if(plane){
1708                             motion_x= (motion_x>>1) | (motion_x&1);
1709                             motion_y= (motion_y>>1) | (motion_y&1);
1710                         }
1711
1712                         src_x= (motion_x>>1) + x;
1713                         src_y= (motion_y>>1) + y;
1714                         if ((motion_x == 127) || (motion_y == 127))
1715                             av_log(s->avctx, AV_LOG_ERROR, " help! got invalid motion vector! (%X, %X)\n", motion_x, motion_y);
1716
1717                         motion_halfpel_index = motion_x & 0x01;
1718                         motion_source += (motion_x >> 1);
1719
1720                         motion_halfpel_index |= (motion_y & 0x01) << 1;
1721                         motion_source += ((motion_y >> 1) * stride);
1722
1723                         if(src_x<0 || src_y<0 || src_x + 9 >= plane_width || src_y + 9 >= plane_height){
1724                             uint8_t *temp= s->edge_emu_buffer;
1725                             if(stride<0) temp -= 9*stride;
1726                             else temp += 9*stride;
1727
1728                             ff_emulated_edge_mc(temp, motion_source, stride, 9, 9, src_x, src_y, plane_width, plane_height);
1729                             motion_source= temp;
1730                         }
1731                     }
1732
1733
1734                     /* first, take care of copying a block from either the
1735                      * previous or the golden frame */
1736                     if (s->all_fragments[i].coding_method != MODE_INTRA) {
1737                         /* Note, it is possible to implement all MC cases with
1738                            put_no_rnd_pixels_l2 which would look more like the
1739                            VP3 source but this would be slower as
1740                            put_no_rnd_pixels_tab is better optimzed */
1741                         if(motion_halfpel_index != 3){
1742                             s->dsp.put_no_rnd_pixels_tab[1][motion_halfpel_index](
1743                                 output_plane + s->all_fragments[i].first_pixel,
1744                                 motion_source, stride, 8);
1745                         }else{
1746                             int d= (motion_x ^ motion_y)>>31; // d is 0 if motion_x and _y have the same sign, else -1
1747                             s->dsp.put_no_rnd_pixels_l2[1](
1748                                 output_plane + s->all_fragments[i].first_pixel,
1749                                 motion_source - d,
1750                                 motion_source + stride + 1 + d,
1751                                 stride, 8);
1752                         }
1753                         dequantizer = s->qmat[1][plane];
1754                     }else{
1755                         dequantizer = s->qmat[0][plane];
1756                     }
1757
1758                     /* dequantize the DCT coefficients */
1759                     debug_idct("fragment %d, coding mode %d, DC = %d, dequant = %d:\n",
1760                         i, s->all_fragments[i].coding_method,
1761                         DC_COEFF(i), dequantizer[0]);
1762
1763                     if(s->avctx->idct_algo==FF_IDCT_VP3){
1764                         Coeff *coeff= s->coeffs + i;
1765                         memset(block, 0, sizeof(block));
1766                         while(coeff->next){
1767                             block[coeff->index]= coeff->coeff * dequantizer[coeff->index];
1768                             coeff= coeff->next;
1769                         }
1770                     }else{
1771                         Coeff *coeff= s->coeffs + i;
1772                         memset(block, 0, sizeof(block));
1773                         while(coeff->next){
1774                             block[coeff->index]= (coeff->coeff * dequantizer[coeff->index] + 2)>>2;
1775                             coeff= coeff->next;
1776                         }
1777                     }
1778
1779                     /* invert DCT and place (or add) in final output */
1780
1781                     if (s->all_fragments[i].coding_method == MODE_INTRA) {
1782                         if(s->avctx->idct_algo!=FF_IDCT_VP3)
1783                             block[0] += 128<<3;
1784                         s->dsp.idct_put(
1785                             output_plane + s->all_fragments[i].first_pixel,
1786                             stride,
1787                             block);
1788                     } else {
1789                         s->dsp.idct_add(
1790                             output_plane + s->all_fragments[i].first_pixel,
1791                             stride,
1792                             block);
1793                     }
1794
1795                     debug_idct("block after idct_%s():\n",
1796                         (s->all_fragments[i].coding_method == MODE_INTRA)?
1797                         "put" : "add");
1798                     for (m = 0; m < 8; m++) {
1799                         for (n = 0; n < 8; n++) {
1800                             debug_idct(" %3d", *(output_plane +
1801                                 s->all_fragments[i].first_pixel + (m * stride + n)));
1802                         }
1803                         debug_idct("\n");
1804                     }
1805                     debug_idct("\n");
1806
1807                 } else {
1808
1809                     /* copy directly from the previous frame */
1810                     s->dsp.put_pixels_tab[1][0](
1811                         output_plane + s->all_fragments[i].first_pixel,
1812                         last_plane + s->all_fragments[i].first_pixel,
1813                         stride, 8);
1814
1815                 }
1816 #if 0
1817                 /* perform the left edge filter if:
1818                  *   - the fragment is not on the left column
1819                  *   - the fragment is coded in this frame
1820                  *   - the fragment is not coded in this frame but the left
1821                  *     fragment is coded in this frame (this is done instead
1822                  *     of a right edge filter when rendering the left fragment
1823                  *     since this fragment is not available yet) */
1824                 if ((x > 0) &&
1825                     ((s->all_fragments[i].coding_method != MODE_COPY) ||
1826                      ((s->all_fragments[i].coding_method == MODE_COPY) &&
1827                       (s->all_fragments[i - 1].coding_method != MODE_COPY)) )) {
1828                     horizontal_filter(
1829                         output_plane + s->all_fragments[i].first_pixel + 7*stride,
1830                         -stride, s->bounding_values_array + 127);
1831                 }
1832
1833                 /* perform the top edge filter if:
1834                  *   - the fragment is not on the top row
1835                  *   - the fragment is coded in this frame
1836                  *   - the fragment is not coded in this frame but the above
1837                  *     fragment is coded in this frame (this is done instead
1838                  *     of a bottom edge filter when rendering the above
1839                  *     fragment since this fragment is not available yet) */
1840                 if ((y > 0) &&
1841                     ((s->all_fragments[i].coding_method != MODE_COPY) ||
1842                      ((s->all_fragments[i].coding_method == MODE_COPY) &&
1843                       (s->all_fragments[i - fragment_width].coding_method != MODE_COPY)) )) {
1844                     vertical_filter(
1845                         output_plane + s->all_fragments[i].first_pixel - stride,
1846                         -stride, s->bounding_values_array + 127);
1847                 }
1848 #endif
1849             }
1850         }
1851     }
1852
1853      /* this looks like a good place for slice dispatch... */
1854      /* algorithm:
1855       *   if (slice == s->macroblock_height - 1)
1856       *     dispatch (both last slice & 2nd-to-last slice);
1857       *   else if (slice > 0)
1858       *     dispatch (slice - 1);
1859       */
1860
1861     emms_c();
1862 }
1863
1864 static void horizontal_filter(unsigned char *first_pixel, int stride,
1865     int *bounding_values)
1866 {
1867     unsigned char *end;
1868     int filter_value;
1869
1870     for (end= first_pixel + 8*stride; first_pixel != end; first_pixel += stride) {
1871         filter_value =
1872             (first_pixel[-2] - first_pixel[ 1])
1873          +3*(first_pixel[ 0] - first_pixel[-1]);
1874         filter_value = bounding_values[(filter_value + 4) >> 3];
1875         first_pixel[-1] = clip_uint8(first_pixel[-1] + filter_value);
1876         first_pixel[ 0] = clip_uint8(first_pixel[ 0] - filter_value);
1877     }
1878 }
1879
1880 static void vertical_filter(unsigned char *first_pixel, int stride,
1881     int *bounding_values)
1882 {
1883     unsigned char *end;
1884     int filter_value;
1885     const int nstride= -stride;
1886
1887     for (end= first_pixel + 8; first_pixel < end; first_pixel++) {
1888         filter_value =
1889             (first_pixel[2 * nstride] - first_pixel[ stride])
1890          +3*(first_pixel[0          ] - first_pixel[nstride]);
1891         filter_value = bounding_values[(filter_value + 4) >> 3];
1892         first_pixel[nstride] = clip_uint8(first_pixel[nstride] + filter_value);
1893         first_pixel[0] = clip_uint8(first_pixel[0] - filter_value);
1894     }
1895 }
1896
1897 static void apply_loop_filter(Vp3DecodeContext *s)
1898 {
1899     int plane;
1900     int x, y;
1901     int *bounding_values= s->bounding_values_array+127;
1902
1903 #if 0
1904     int bounding_values_array[256];
1905     int filter_limit;
1906
1907     /* find the right loop limit value */
1908     for (x = 63; x >= 0; x--) {
1909         if (vp31_ac_scale_factor[x] >= s->quality_index)
1910             break;
1911     }
1912     filter_limit = vp31_filter_limit_values[s->quality_index];
1913
1914     /* set up the bounding values */
1915     memset(bounding_values_array, 0, 256 * sizeof(int));
1916     for (x = 0; x < filter_limit; x++) {
1917         bounding_values[-x - filter_limit] = -filter_limit + x;
1918         bounding_values[-x] = -x;
1919         bounding_values[x] = x;
1920         bounding_values[x + filter_limit] = filter_limit - x;
1921     }
1922 #endif
1923
1924     for (plane = 0; plane < 3; plane++) {
1925         int width           = s->fragment_width  >> !!plane;
1926         int height          = s->fragment_height >> !!plane;
1927         int fragment        = s->fragment_start        [plane];
1928         int stride          = s->current_frame.linesize[plane];
1929         uint8_t *plane_data = s->current_frame.data    [plane];
1930         if (!s->flipped_image) stride = -stride;
1931
1932         for (y = 0; y < height; y++) {
1933
1934             for (x = 0; x < width; x++) {
1935 START_TIMER
1936                 /* do not perform left edge filter for left columns frags */
1937                 if ((x > 0) &&
1938                     (s->all_fragments[fragment].coding_method != MODE_COPY)) {
1939                     horizontal_filter(
1940                         plane_data + s->all_fragments[fragment].first_pixel,
1941                         stride, bounding_values);
1942                 }
1943
1944                 /* do not perform top edge filter for top row fragments */
1945                 if ((y > 0) &&
1946                     (s->all_fragments[fragment].coding_method != MODE_COPY)) {
1947                     vertical_filter(
1948                         plane_data + s->all_fragments[fragment].first_pixel,
1949                         stride, bounding_values);
1950                 }
1951
1952                 /* do not perform right edge filter for right column
1953                  * fragments or if right fragment neighbor is also coded
1954                  * in this frame (it will be filtered in next iteration) */
1955                 if ((x < width - 1) &&
1956                     (s->all_fragments[fragment].coding_method != MODE_COPY) &&
1957                     (s->all_fragments[fragment + 1].coding_method == MODE_COPY)) {
1958                     horizontal_filter(
1959                         plane_data + s->all_fragments[fragment + 1].first_pixel,
1960                         stride, bounding_values);
1961                 }
1962
1963                 /* do not perform bottom edge filter for bottom row
1964                  * fragments or if bottom fragment neighbor is also coded
1965                  * in this frame (it will be filtered in the next row) */
1966                 if ((y < height - 1) &&
1967                     (s->all_fragments[fragment].coding_method != MODE_COPY) &&
1968                     (s->all_fragments[fragment + width].coding_method == MODE_COPY)) {
1969                     vertical_filter(
1970                         plane_data + s->all_fragments[fragment + width].first_pixel,
1971                         stride, bounding_values);
1972                 }
1973
1974                 fragment++;
1975 STOP_TIMER("loop filter")
1976             }
1977         }
1978     }
1979 }
1980
1981 /*
1982  * This function computes the first pixel addresses for each fragment.
1983  * This function needs to be invoked after the first frame is allocated
1984  * so that it has access to the plane strides.
1985  */
1986 static void vp3_calculate_pixel_addresses(Vp3DecodeContext *s)
1987 {
1988
1989     int i, x, y;
1990
1991     /* figure out the first pixel addresses for each of the fragments */
1992     /* Y plane */
1993     i = 0;
1994     for (y = s->fragment_height; y > 0; y--) {
1995         for (x = 0; x < s->fragment_width; x++) {
1996             s->all_fragments[i++].first_pixel =
1997                 s->golden_frame.linesize[0] * y * FRAGMENT_PIXELS -
1998                     s->golden_frame.linesize[0] +
1999                     x * FRAGMENT_PIXELS;
2000             debug_init("  fragment %d, first pixel @ %d\n",
2001                 i-1, s->all_fragments[i-1].first_pixel);
2002         }
2003     }
2004
2005     /* U plane */
2006     i = s->fragment_start[1];
2007     for (y = s->fragment_height / 2; y > 0; y--) {
2008         for (x = 0; x < s->fragment_width / 2; x++) {
2009             s->all_fragments[i++].first_pixel =
2010                 s->golden_frame.linesize[1] * y * FRAGMENT_PIXELS -
2011                     s->golden_frame.linesize[1] +
2012                     x * FRAGMENT_PIXELS;
2013             debug_init("  fragment %d, first pixel @ %d\n",
2014                 i-1, s->all_fragments[i-1].first_pixel);
2015         }
2016     }
2017
2018     /* V plane */
2019     i = s->fragment_start[2];
2020     for (y = s->fragment_height / 2; y > 0; y--) {
2021         for (x = 0; x < s->fragment_width / 2; x++) {
2022             s->all_fragments[i++].first_pixel =
2023                 s->golden_frame.linesize[2] * y * FRAGMENT_PIXELS -
2024                     s->golden_frame.linesize[2] +
2025                     x * FRAGMENT_PIXELS;
2026             debug_init("  fragment %d, first pixel @ %d\n",
2027                 i-1, s->all_fragments[i-1].first_pixel);
2028         }
2029     }
2030 }
2031
2032 /* FIXME: this should be merged with the above! */
2033 static void theora_calculate_pixel_addresses(Vp3DecodeContext *s)
2034 {
2035
2036     int i, x, y;
2037
2038     /* figure out the first pixel addresses for each of the fragments */
2039     /* Y plane */
2040     i = 0;
2041     for (y = 1; y <= s->fragment_height; y++) {
2042         for (x = 0; x < s->fragment_width; x++) {
2043             s->all_fragments[i++].first_pixel =
2044                 s->golden_frame.linesize[0] * y * FRAGMENT_PIXELS -
2045                     s->golden_frame.linesize[0] +
2046                     x * FRAGMENT_PIXELS;
2047             debug_init("  fragment %d, first pixel @ %d\n",
2048                 i-1, s->all_fragments[i-1].first_pixel);
2049         }
2050     }
2051
2052     /* U plane */
2053     i = s->fragment_start[1];
2054     for (y = 1; y <= s->fragment_height / 2; y++) {
2055         for (x = 0; x < s->fragment_width / 2; x++) {
2056             s->all_fragments[i++].first_pixel =
2057                 s->golden_frame.linesize[1] * y * FRAGMENT_PIXELS -
2058                     s->golden_frame.linesize[1] +
2059                     x * FRAGMENT_PIXELS;
2060             debug_init("  fragment %d, first pixel @ %d\n",
2061                 i-1, s->all_fragments[i-1].first_pixel);
2062         }
2063     }
2064
2065     /* V plane */
2066     i = s->fragment_start[2];
2067     for (y = 1; y <= s->fragment_height / 2; y++) {
2068         for (x = 0; x < s->fragment_width / 2; x++) {
2069             s->all_fragments[i++].first_pixel =
2070                 s->golden_frame.linesize[2] * y * FRAGMENT_PIXELS -
2071                     s->golden_frame.linesize[2] +
2072                     x * FRAGMENT_PIXELS;
2073             debug_init("  fragment %d, first pixel @ %d\n",
2074                 i-1, s->all_fragments[i-1].first_pixel);
2075         }
2076     }
2077 }
2078
2079 /*
2080  * This is the ffmpeg/libavcodec API init function.
2081  */
2082 static int vp3_decode_init(AVCodecContext *avctx)
2083 {
2084     Vp3DecodeContext *s = avctx->priv_data;
2085     int i, inter, plane;
2086     int c_width;
2087     int c_height;
2088     int y_superblock_count;
2089     int c_superblock_count;
2090
2091     if (avctx->codec_tag == MKTAG('V','P','3','0'))
2092         s->version = 0;
2093     else
2094         s->version = 1;
2095
2096     s->avctx = avctx;
2097     s->width = (avctx->width + 15) & 0xFFFFFFF0;
2098     s->height = (avctx->height + 15) & 0xFFFFFFF0;
2099     avctx->pix_fmt = PIX_FMT_YUV420P;
2100     avctx->has_b_frames = 0;
2101     if(avctx->idct_algo==FF_IDCT_AUTO)
2102         avctx->idct_algo=FF_IDCT_VP3;
2103     dsputil_init(&s->dsp, avctx);
2104
2105     ff_init_scantable(s->dsp.idct_permutation, &s->scantable, ff_zigzag_direct);
2106
2107     /* initialize to an impossible value which will force a recalculation
2108      * in the first frame decode */
2109     s->quality_index = -1;
2110
2111     s->y_superblock_width = (s->width + 31) / 32;
2112     s->y_superblock_height = (s->height + 31) / 32;
2113     y_superblock_count = s->y_superblock_width * s->y_superblock_height;
2114
2115     /* work out the dimensions for the C planes */
2116     c_width = s->width / 2;
2117     c_height = s->height / 2;
2118     s->c_superblock_width = (c_width + 31) / 32;
2119     s->c_superblock_height = (c_height + 31) / 32;
2120     c_superblock_count = s->c_superblock_width * s->c_superblock_height;
2121
2122     s->superblock_count = y_superblock_count + (c_superblock_count * 2);
2123     s->u_superblock_start = y_superblock_count;
2124     s->v_superblock_start = s->u_superblock_start + c_superblock_count;
2125     s->superblock_coding = av_malloc(s->superblock_count);
2126
2127     s->macroblock_width = (s->width + 15) / 16;
2128     s->macroblock_height = (s->height + 15) / 16;
2129     s->macroblock_count = s->macroblock_width * s->macroblock_height;
2130
2131     s->fragment_width = s->width / FRAGMENT_PIXELS;
2132     s->fragment_height = s->height / FRAGMENT_PIXELS;
2133
2134     /* fragment count covers all 8x8 blocks for all 3 planes */
2135     s->fragment_count = s->fragment_width * s->fragment_height * 3 / 2;
2136     s->fragment_start[1] = s->fragment_width * s->fragment_height;
2137     s->fragment_start[2] = s->fragment_width * s->fragment_height * 5 / 4;
2138
2139     debug_init("  Y plane: %d x %d\n", s->width, s->height);
2140     debug_init("  C plane: %d x %d\n", c_width, c_height);
2141     debug_init("  Y superblocks: %d x %d, %d total\n",
2142         s->y_superblock_width, s->y_superblock_height, y_superblock_count);
2143     debug_init("  C superblocks: %d x %d, %d total\n",
2144         s->c_superblock_width, s->c_superblock_height, c_superblock_count);
2145     debug_init("  total superblocks = %d, U starts @ %d, V starts @ %d\n",
2146         s->superblock_count, s->u_superblock_start, s->v_superblock_start);
2147     debug_init("  macroblocks: %d x %d, %d total\n",
2148         s->macroblock_width, s->macroblock_height, s->macroblock_count);
2149     debug_init("  %d fragments, %d x %d, u starts @ %d, v starts @ %d\n",
2150         s->fragment_count,
2151         s->fragment_width,
2152         s->fragment_height,
2153         s->fragment_start[1],
2154         s->fragment_start[2]);
2155
2156     s->all_fragments = av_malloc(s->fragment_count * sizeof(Vp3Fragment));
2157     s->coeffs = av_malloc(s->fragment_count * sizeof(Coeff) * 65);
2158     s->coded_fragment_list = av_malloc(s->fragment_count * sizeof(int));
2159     s->pixel_addresses_inited = 0;
2160
2161     if (!s->theora_tables)
2162     {
2163         for (i = 0; i < 64; i++)
2164             s->coded_dc_scale_factor[i] = vp31_dc_scale_factor[i];
2165         for (i = 0; i < 64; i++)
2166             s->coded_ac_scale_factor[i] = vp31_ac_scale_factor[i];
2167         for (i = 0; i < 64; i++)
2168             s->base_matrix[0][i] = vp31_intra_y_dequant[i];
2169         for (i = 0; i < 64; i++)
2170             s->base_matrix[1][i] = vp31_intra_c_dequant[i];
2171         for (i = 0; i < 64; i++)
2172             s->base_matrix[2][i] = vp31_inter_dequant[i];
2173         for (i = 0; i < 64; i++)
2174             s->filter_limit_values[i] = vp31_filter_limit_values[i];
2175
2176         for(inter=0; inter<2; inter++){
2177             for(plane=0; plane<3; plane++){
2178                 s->qr_count[inter][plane]= 1;
2179                 s->qr_size [inter][plane][0]= 63;
2180                 s->qr_base [inter][plane][0]=
2181                 s->qr_base [inter][plane][1]= 2*inter + (!!plane)*!inter;
2182             }
2183         }
2184
2185         /* init VLC tables */
2186         for (i = 0; i < 16; i++) {
2187
2188             /* DC histograms */
2189             init_vlc(&s->dc_vlc[i], 5, 32,
2190                 &dc_bias[i][0][1], 4, 2,
2191                 &dc_bias[i][0][0], 4, 2, 0);
2192
2193             /* group 1 AC histograms */
2194             init_vlc(&s->ac_vlc_1[i], 5, 32,
2195                 &ac_bias_0[i][0][1], 4, 2,
2196                 &ac_bias_0[i][0][0], 4, 2, 0);
2197
2198             /* group 2 AC histograms */
2199             init_vlc(&s->ac_vlc_2[i], 5, 32,
2200                 &ac_bias_1[i][0][1], 4, 2,
2201                 &ac_bias_1[i][0][0], 4, 2, 0);
2202
2203             /* group 3 AC histograms */
2204             init_vlc(&s->ac_vlc_3[i], 5, 32,
2205                 &ac_bias_2[i][0][1], 4, 2,
2206                 &ac_bias_2[i][0][0], 4, 2, 0);
2207
2208             /* group 4 AC histograms */
2209             init_vlc(&s->ac_vlc_4[i], 5, 32,
2210                 &ac_bias_3[i][0][1], 4, 2,
2211                 &ac_bias_3[i][0][0], 4, 2, 0);
2212         }
2213     } else {
2214         for (i = 0; i < 16; i++) {
2215
2216             /* DC histograms */
2217             init_vlc(&s->dc_vlc[i], 5, 32,
2218                 &s->huffman_table[i][0][1], 4, 2,
2219                 &s->huffman_table[i][0][0], 4, 2, 0);
2220
2221             /* group 1 AC histograms */
2222             init_vlc(&s->ac_vlc_1[i], 5, 32,
2223                 &s->huffman_table[i+16][0][1], 4, 2,
2224                 &s->huffman_table[i+16][0][0], 4, 2, 0);
2225
2226             /* group 2 AC histograms */
2227             init_vlc(&s->ac_vlc_2[i], 5, 32,
2228                 &s->huffman_table[i+16*2][0][1], 4, 2,
2229                 &s->huffman_table[i+16*2][0][0], 4, 2, 0);
2230
2231             /* group 3 AC histograms */
2232             init_vlc(&s->ac_vlc_3[i], 5, 32,
2233                 &s->huffman_table[i+16*3][0][1], 4, 2,
2234                 &s->huffman_table[i+16*3][0][0], 4, 2, 0);
2235
2236             /* group 4 AC histograms */
2237             init_vlc(&s->ac_vlc_4[i], 5, 32,
2238                 &s->huffman_table[i+16*4][0][1], 4, 2,
2239                 &s->huffman_table[i+16*4][0][0], 4, 2, 0);
2240         }
2241     }
2242
2243     init_vlc(&s->superblock_run_length_vlc, 6, 34,
2244         &superblock_run_length_vlc_table[0][1], 4, 2,
2245         &superblock_run_length_vlc_table[0][0], 4, 2, 0);
2246
2247     init_vlc(&s->fragment_run_length_vlc, 5, 30,
2248         &fragment_run_length_vlc_table[0][1], 4, 2,
2249         &fragment_run_length_vlc_table[0][0], 4, 2, 0);
2250
2251     init_vlc(&s->mode_code_vlc, 3, 8,
2252         &mode_code_vlc_table[0][1], 2, 1,
2253         &mode_code_vlc_table[0][0], 2, 1, 0);
2254
2255     init_vlc(&s->motion_vector_vlc, 6, 63,
2256         &motion_vector_vlc_table[0][1], 2, 1,
2257         &motion_vector_vlc_table[0][0], 2, 1, 0);
2258
2259     /* work out the block mapping tables */
2260     s->superblock_fragments = av_malloc(s->superblock_count * 16 * sizeof(int));
2261     s->superblock_macroblocks = av_malloc(s->superblock_count * 4 * sizeof(int));
2262     s->macroblock_fragments = av_malloc(s->macroblock_count * 6 * sizeof(int));
2263     s->macroblock_coding = av_malloc(s->macroblock_count + 1);
2264     init_block_mapping(s);
2265
2266     for (i = 0; i < 3; i++) {
2267         s->current_frame.data[i] = NULL;
2268         s->last_frame.data[i] = NULL;
2269         s->golden_frame.data[i] = NULL;
2270     }
2271
2272     return 0;
2273 }
2274
2275 /*
2276  * This is the ffmpeg/libavcodec API frame decode function.
2277  */
2278 static int vp3_decode_frame(AVCodecContext *avctx,
2279                             void *data, int *data_size,
2280                             uint8_t *buf, int buf_size)
2281 {
2282     Vp3DecodeContext *s = avctx->priv_data;
2283     GetBitContext gb;
2284     static int counter = 0;
2285     int i;
2286
2287     init_get_bits(&gb, buf, buf_size * 8);
2288
2289     if (s->theora && get_bits1(&gb))
2290     {
2291 #if 1
2292         av_log(avctx, AV_LOG_ERROR, "Header packet passed to frame decoder, skipping\n");
2293         return -1;
2294 #else
2295         int ptype = get_bits(&gb, 7);
2296
2297         skip_bits(&gb, 6*8); /* "theora" */
2298
2299         switch(ptype)
2300         {
2301             case 1:
2302                 theora_decode_comments(avctx, &gb);
2303                 break;
2304             case 2:
2305                 theora_decode_tables(avctx, &gb);
2306                     init_dequantizer(s);
2307                 break;
2308             default:
2309                 av_log(avctx, AV_LOG_ERROR, "Unknown Theora config packet: %d\n", ptype);
2310         }
2311         return buf_size;
2312 #endif
2313     }
2314
2315     s->keyframe = !get_bits1(&gb);
2316     if (!s->theora)
2317         skip_bits(&gb, 1);
2318     s->last_quality_index = s->quality_index;
2319
2320     s->nqis=0;
2321     do{
2322         s->qis[s->nqis++]= get_bits(&gb, 6);
2323     } while(s->theora >= 0x030200 && s->nqis<3 && get_bits1(&gb));
2324
2325     s->quality_index= s->qis[0];
2326
2327     if (s->avctx->debug & FF_DEBUG_PICT_INFO)
2328         av_log(s->avctx, AV_LOG_INFO, " VP3 %sframe #%d: Q index = %d\n",
2329             s->keyframe?"key":"", counter, s->quality_index);
2330     counter++;
2331
2332     if (s->quality_index != s->last_quality_index) {
2333         init_dequantizer(s);
2334         init_loop_filter(s);
2335     }
2336
2337     if (s->keyframe) {
2338         if (!s->theora)
2339         {
2340             skip_bits(&gb, 4); /* width code */
2341             skip_bits(&gb, 4); /* height code */
2342             if (s->version)
2343             {
2344                 s->version = get_bits(&gb, 5);
2345                 if (counter == 1)
2346                     av_log(s->avctx, AV_LOG_DEBUG, "VP version: %d\n", s->version);
2347             }
2348         }
2349         if (s->version || s->theora)
2350         {
2351                 if (get_bits1(&gb))
2352                     av_log(s->avctx, AV_LOG_ERROR, "Warning, unsupported keyframe coding type?!\n");
2353             skip_bits(&gb, 2); /* reserved? */
2354         }
2355
2356         if (s->last_frame.data[0] == s->golden_frame.data[0]) {
2357             if (s->golden_frame.data[0])
2358                 avctx->release_buffer(avctx, &s->golden_frame);
2359             s->last_frame= s->golden_frame; /* ensure that we catch any access to this released frame */
2360         } else {
2361             if (s->golden_frame.data[0])
2362                 avctx->release_buffer(avctx, &s->golden_frame);
2363             if (s->last_frame.data[0])
2364                 avctx->release_buffer(avctx, &s->last_frame);
2365         }
2366
2367         s->golden_frame.reference = 3;
2368         if(avctx->get_buffer(avctx, &s->golden_frame) < 0) {
2369             av_log(s->avctx, AV_LOG_ERROR, "vp3: get_buffer() failed\n");
2370             return -1;
2371         }
2372
2373         /* golden frame is also the current frame */
2374         s->current_frame= s->golden_frame;
2375
2376         /* time to figure out pixel addresses? */
2377         if (!s->pixel_addresses_inited)
2378         {
2379             if (!s->flipped_image)
2380                 vp3_calculate_pixel_addresses(s);
2381             else
2382                 theora_calculate_pixel_addresses(s);
2383         }
2384     } else {
2385         /* allocate a new current frame */
2386         s->current_frame.reference = 3;
2387         if(avctx->get_buffer(avctx, &s->current_frame) < 0) {
2388             av_log(s->avctx, AV_LOG_ERROR, "vp3: get_buffer() failed\n");
2389             return -1;
2390         }
2391     }
2392
2393     s->current_frame.qscale_table= s->qscale_table; //FIXME allocate individual tables per AVFrame
2394     s->current_frame.qstride= 0;
2395
2396     {START_TIMER
2397     init_frame(s, &gb);
2398     STOP_TIMER("init_frame")}
2399
2400 #if KEYFRAMES_ONLY
2401 if (!s->keyframe) {
2402
2403     memcpy(s->current_frame.data[0], s->golden_frame.data[0],
2404         s->current_frame.linesize[0] * s->height);
2405     memcpy(s->current_frame.data[1], s->golden_frame.data[1],
2406         s->current_frame.linesize[1] * s->height / 2);
2407     memcpy(s->current_frame.data[2], s->golden_frame.data[2],
2408         s->current_frame.linesize[2] * s->height / 2);
2409
2410 } else {
2411 #endif
2412
2413     {START_TIMER
2414     if (unpack_superblocks(s, &gb)){
2415         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_superblocks\n");
2416         return -1;
2417     }
2418     STOP_TIMER("unpack_superblocks")}
2419     {START_TIMER
2420     if (unpack_modes(s, &gb)){
2421         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_modes\n");
2422         return -1;
2423     }
2424     STOP_TIMER("unpack_modes")}
2425     {START_TIMER
2426     if (unpack_vectors(s, &gb)){
2427         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_vectors\n");
2428         return -1;
2429     }
2430     STOP_TIMER("unpack_vectors")}
2431     {START_TIMER
2432     if (unpack_dct_coeffs(s, &gb)){
2433         av_log(s->avctx, AV_LOG_ERROR, "error in unpack_dct_coeffs\n");
2434         return -1;
2435     }
2436     STOP_TIMER("unpack_dct_coeffs")}
2437     {START_TIMER
2438
2439     reverse_dc_prediction(s, 0, s->fragment_width, s->fragment_height);
2440     if ((avctx->flags & CODEC_FLAG_GRAY) == 0) {
2441         reverse_dc_prediction(s, s->fragment_start[1],
2442             s->fragment_width / 2, s->fragment_height / 2);
2443         reverse_dc_prediction(s, s->fragment_start[2],
2444             s->fragment_width / 2, s->fragment_height / 2);
2445     }
2446     STOP_TIMER("reverse_dc_prediction")}
2447     {START_TIMER
2448
2449     for (i = 0; i < s->macroblock_height; i++)
2450         render_slice(s, i);
2451     STOP_TIMER("render_fragments")}
2452
2453     {START_TIMER
2454     apply_loop_filter(s);
2455     STOP_TIMER("apply_loop_filter")}
2456 #if KEYFRAMES_ONLY
2457 }
2458 #endif
2459
2460     *data_size=sizeof(AVFrame);
2461     *(AVFrame*)data= s->current_frame;
2462
2463     /* release the last frame, if it is allocated and if it is not the
2464      * golden frame */
2465     if ((s->last_frame.data[0]) &&
2466         (s->last_frame.data[0] != s->golden_frame.data[0]))
2467         avctx->release_buffer(avctx, &s->last_frame);
2468
2469     /* shuffle frames (last = current) */
2470     s->last_frame= s->current_frame;
2471     s->current_frame.data[0]= NULL; /* ensure that we catch any access to this released frame */
2472
2473     return buf_size;
2474 }
2475
2476 /*
2477  * This is the ffmpeg/libavcodec API module cleanup function.
2478  */
2479 static int vp3_decode_end(AVCodecContext *avctx)
2480 {
2481     Vp3DecodeContext *s = avctx->priv_data;
2482
2483     av_free(s->all_fragments);
2484     av_free(s->coeffs);
2485     av_free(s->coded_fragment_list);
2486     av_free(s->superblock_fragments);
2487     av_free(s->superblock_macroblocks);
2488     av_free(s->macroblock_fragments);
2489     av_free(s->macroblock_coding);
2490
2491     /* release all frames */
2492     if (s->golden_frame.data[0] && s->golden_frame.data[0] != s->last_frame.data[0])
2493         avctx->release_buffer(avctx, &s->golden_frame);
2494     if (s->last_frame.data[0])
2495         avctx->release_buffer(avctx, &s->last_frame);
2496     /* no need to release the current_frame since it will always be pointing
2497      * to the same frame as either the golden or last frame */
2498
2499     return 0;
2500 }
2501
2502 static int read_huffman_tree(AVCodecContext *avctx, GetBitContext *gb)
2503 {
2504     Vp3DecodeContext *s = avctx->priv_data;
2505
2506     if (get_bits(gb, 1)) {
2507         int token;
2508         if (s->entries >= 32) { /* overflow */
2509             av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n");
2510             return -1;
2511         }
2512         token = get_bits(gb, 5);
2513         //av_log(avctx, AV_LOG_DEBUG, "hti %d hbits %x token %d entry : %d size %d\n", s->hti, s->hbits, token, s->entries, s->huff_code_size);
2514         s->huffman_table[s->hti][token][0] = s->hbits;
2515         s->huffman_table[s->hti][token][1] = s->huff_code_size;
2516         s->entries++;
2517     }
2518     else {
2519         if (s->huff_code_size >= 32) {/* overflow */
2520             av_log(avctx, AV_LOG_ERROR, "huffman tree overflow\n");
2521             return -1;
2522         }
2523         s->huff_code_size++;
2524         s->hbits <<= 1;
2525         read_huffman_tree(avctx, gb);
2526         s->hbits |= 1;
2527         read_huffman_tree(avctx, gb);
2528         s->hbits >>= 1;
2529         s->huff_code_size--;
2530     }
2531     return 0;
2532 }
2533
2534 static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb)
2535 {
2536     Vp3DecodeContext *s = avctx->priv_data;
2537
2538     s->theora = get_bits_long(gb, 24);
2539     av_log(avctx, AV_LOG_INFO, "Theora bitstream version %X\n", s->theora);
2540
2541     /* 3.2.0 aka alpha3 has the same frame orientation as original vp3 */
2542     /* but previous versions have the image flipped relative to vp3 */
2543     if (s->theora < 0x030200)
2544     {
2545         s->flipped_image = 1;
2546         av_log(avctx, AV_LOG_DEBUG, "Old (<alpha3) Theora bitstream, flipped image\n");
2547     }
2548
2549     s->width = get_bits(gb, 16) << 4;
2550     s->height = get_bits(gb, 16) << 4;
2551
2552     if(avcodec_check_dimensions(avctx, s->width, s->height)){
2553         av_log(avctx, AV_LOG_ERROR, "Invalid dimensions (%dx%d)\n", s->width, s->height);
2554         s->width= s->height= 0;
2555         return -1;
2556     }
2557
2558     if (s->theora >= 0x030400)
2559     {
2560         skip_bits(gb, 32); /* total number of superblocks in a frame */
2561         // fixme, the next field is 36bits long
2562         skip_bits(gb, 32); /* total number of blocks in a frame */
2563         skip_bits(gb, 4); /* total number of blocks in a frame */
2564         skip_bits(gb, 32); /* total number of macroblocks in a frame */
2565
2566         skip_bits(gb, 24); /* frame width */
2567         skip_bits(gb, 24); /* frame height */
2568     }
2569     else
2570     {
2571         skip_bits(gb, 24); /* frame width */
2572         skip_bits(gb, 24); /* frame height */
2573     }
2574
2575   if (s->theora >= 0x030200) {
2576     skip_bits(gb, 8); /* offset x */
2577     skip_bits(gb, 8); /* offset y */
2578   }
2579
2580     skip_bits(gb, 32); /* fps numerator */
2581     skip_bits(gb, 32); /* fps denumerator */
2582     skip_bits(gb, 24); /* aspect numerator */
2583     skip_bits(gb, 24); /* aspect denumerator */
2584
2585     if (s->theora < 0x030200)
2586         skip_bits(gb, 5); /* keyframe frequency force */
2587     skip_bits(gb, 8); /* colorspace */
2588     if (s->theora >= 0x030400)
2589         skip_bits(gb, 2); /* pixel format: 420,res,422,444 */
2590     skip_bits(gb, 24); /* bitrate */
2591
2592     skip_bits(gb, 6); /* quality hint */
2593
2594     if (s->theora >= 0x030200)
2595     {
2596         skip_bits(gb, 5); /* keyframe frequency force */
2597
2598         if (s->theora < 0x030400)
2599             skip_bits(gb, 5); /* spare bits */
2600     }
2601
2602 //    align_get_bits(gb);
2603
2604     avctx->width = s->width;
2605     avctx->height = s->height;
2606
2607     return 0;
2608 }
2609
2610 static int theora_decode_tables(AVCodecContext *avctx, GetBitContext *gb)
2611 {
2612     Vp3DecodeContext *s = avctx->priv_data;
2613     int i, n, matrices, inter, plane;
2614
2615     if (s->theora >= 0x030200) {
2616         n = get_bits(gb, 3);
2617         /* loop filter limit values table */
2618         for (i = 0; i < 64; i++)
2619             s->filter_limit_values[i] = get_bits(gb, n);
2620     }
2621
2622     if (s->theora >= 0x030200)
2623         n = get_bits(gb, 4) + 1;
2624     else
2625         n = 16;
2626     /* quality threshold table */
2627     for (i = 0; i < 64; i++)
2628         s->coded_ac_scale_factor[i] = get_bits(gb, n);
2629
2630     if (s->theora >= 0x030200)
2631         n = get_bits(gb, 4) + 1;
2632     else
2633         n = 16;
2634     /* dc scale factor table */
2635     for (i = 0; i < 64; i++)
2636         s->coded_dc_scale_factor[i] = get_bits(gb, n);
2637
2638     if (s->theora >= 0x030200)
2639         matrices = get_bits(gb, 9) + 1;
2640     else
2641         matrices = 3;
2642
2643     if(matrices > 384){
2644         av_log(avctx, AV_LOG_ERROR, "invalid number of base matrixes\n");
2645         return -1;
2646     }
2647
2648     for(n=0; n<matrices; n++){
2649         for (i = 0; i < 64; i++)
2650             s->base_matrix[n][i]= get_bits(gb, 8);
2651     }
2652
2653     for (inter = 0; inter <= 1; inter++) {
2654         for (plane = 0; plane <= 2; plane++) {
2655             int newqr= 1;
2656             if (inter || plane > 0)
2657                 newqr = get_bits(gb, 1);
2658             if (!newqr) {
2659                 int qtj, plj;
2660                 if(inter && get_bits(gb, 1)){
2661                     qtj = 0;
2662                     plj = plane;
2663                 }else{
2664                     qtj= (3*inter + plane - 1) / 3;
2665                     plj= (plane + 2) % 3;
2666                 }
2667                 s->qr_count[inter][plane]= s->qr_count[qtj][plj];
2668                 memcpy(s->qr_size[inter][plane], s->qr_size[qtj][plj], sizeof(s->qr_size[0][0]));
2669                 memcpy(s->qr_base[inter][plane], s->qr_base[qtj][plj], sizeof(s->qr_base[0][0]));
2670             } else {
2671                 int qri= 0;
2672                 int qi = 0;
2673
2674                 for(;;){
2675                     i= get_bits(gb, av_log2(matrices-1)+1);
2676                     if(i>= matrices){
2677                         av_log(avctx, AV_LOG_ERROR, "invalid base matrix index\n");
2678                         return -1;
2679                     }
2680                     s->qr_base[inter][plane][qri]= i;
2681                     if(qi >= 63)
2682                         break;
2683                     i = get_bits(gb, av_log2(63-qi)+1) + 1;
2684                     s->qr_size[inter][plane][qri++]= i;
2685                     qi += i;
2686                 }
2687
2688                 if (qi > 63) {
2689                     av_log(avctx, AV_LOG_ERROR, "invalid qi %d > 63\n", qi);
2690                     return -1;
2691                 }
2692                 s->qr_count[inter][plane]= qri;
2693             }
2694         }
2695     }
2696
2697     /* Huffman tables */
2698     for (s->hti = 0; s->hti < 80; s->hti++) {
2699         s->entries = 0;
2700         s->huff_code_size = 1;
2701         if (!get_bits(gb, 1)) {
2702             s->hbits = 0;
2703             read_huffman_tree(avctx, gb);
2704             s->hbits = 1;
2705             read_huffman_tree(avctx, gb);
2706         }
2707     }
2708
2709     s->theora_tables = 1;
2710
2711     return 0;
2712 }
2713
2714 static int theora_decode_init(AVCodecContext *avctx)
2715 {
2716     Vp3DecodeContext *s = avctx->priv_data;
2717     GetBitContext gb;
2718     int ptype;
2719     uint8_t *p= avctx->extradata;
2720     int op_bytes, i;
2721
2722     s->theora = 1;
2723
2724     if (!avctx->extradata_size)
2725     {
2726         av_log(avctx, AV_LOG_ERROR, "Missing extradata!\n");
2727         return -1;
2728     }
2729
2730   for(i=0;i<3;i++) {
2731     op_bytes = *(p++)<<8;
2732     op_bytes += *(p++);
2733
2734     init_get_bits(&gb, p, op_bytes);
2735     p += op_bytes;
2736
2737     ptype = get_bits(&gb, 8);
2738     debug_vp3("Theora headerpacket type: %x\n", ptype);
2739
2740      if (!(ptype & 0x80))
2741      {
2742         av_log(avctx, AV_LOG_ERROR, "Invalid extradata!\n");
2743 //        return -1;
2744      }
2745
2746     // FIXME: check for this aswell
2747     skip_bits(&gb, 6*8); /* "theora" */
2748
2749     switch(ptype)
2750     {
2751         case 0x80:
2752             theora_decode_header(avctx, &gb);
2753                 break;
2754         case 0x81:
2755 // FIXME: is this needed? it breaks sometimes
2756 //            theora_decode_comments(avctx, gb);
2757             break;
2758         case 0x82:
2759             theora_decode_tables(avctx, &gb);
2760             break;
2761         default:
2762             av_log(avctx, AV_LOG_ERROR, "Unknown Theora config packet: %d\n", ptype&~0x80);
2763             break;
2764     }
2765     if(8*op_bytes != get_bits_count(&gb))
2766         av_log(avctx, AV_LOG_ERROR, "%d bits left in packet %X\n", 8*op_bytes - get_bits_count(&gb), ptype);
2767     if (s->theora < 0x030200)
2768         break;
2769   }
2770
2771     vp3_decode_init(avctx);
2772     return 0;
2773 }
2774
2775 AVCodec vp3_decoder = {
2776     "vp3",
2777     CODEC_TYPE_VIDEO,
2778     CODEC_ID_VP3,
2779     sizeof(Vp3DecodeContext),
2780     vp3_decode_init,
2781     NULL,
2782     vp3_decode_end,
2783     vp3_decode_frame,
2784     0,
2785     NULL
2786 };
2787
2788 #ifndef CONFIG_LIBTHEORA
2789 AVCodec theora_decoder = {
2790     "theora",
2791     CODEC_TYPE_VIDEO,
2792     CODEC_ID_THEORA,
2793     sizeof(Vp3DecodeContext),
2794     theora_decode_init,
2795     NULL,
2796     vp3_decode_end,
2797     vp3_decode_frame,
2798     0,
2799     NULL
2800 };
2801 #endif