]> git.sesse.net Git - ffmpeg/blob - libavcodec/vp6.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / vp6.c
1 /*
2  * Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * VP6 compatible video decoder
24  *
25  * The VP6F decoder accepts an optional 1 byte extradata. It is composed of:
26  *  - upper 4 bits: difference between encoded width and visible width
27  *  - lower 4 bits: difference between encoded height and visible height
28  */
29
30 #include <stdlib.h>
31
32 #include "avcodec.h"
33 #include "dsputil.h"
34 #include "get_bits.h"
35 #include "huffman.h"
36
37 #include "vp56.h"
38 #include "vp56data.h"
39 #include "vp6data.h"
40
41 #define VP6_MAX_HUFF_SIZE 12
42
43 static void vp6_parse_coeff(VP56Context *s);
44 static void vp6_parse_coeff_huffman(VP56Context *s);
45
46 static int vp6_parse_header(VP56Context *s, const uint8_t *buf, int buf_size,
47                             int *golden_frame)
48 {
49     VP56RangeCoder *c = &s->c;
50     int parse_filter_info = 0;
51     int coeff_offset = 0;
52     int vrt_shift = 0;
53     int sub_version;
54     int rows, cols;
55     int res = 1;
56     int separated_coeff = buf[0] & 1;
57
58     s->framep[VP56_FRAME_CURRENT]->key_frame = !(buf[0] & 0x80);
59     ff_vp56_init_dequant(s, (buf[0] >> 1) & 0x3F);
60
61     if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
62         sub_version = buf[1] >> 3;
63         if (sub_version > 8)
64             return 0;
65         s->filter_header = buf[1] & 0x06;
66         if (buf[1] & 1) {
67             av_log(s->avctx, AV_LOG_ERROR, "interlacing not supported\n");
68             return 0;
69         }
70         if (separated_coeff || !s->filter_header) {
71             coeff_offset = AV_RB16(buf+2) - 2;
72             buf += 2;
73             buf_size -= 2;
74         }
75
76         rows = buf[2];  /* number of stored macroblock rows */
77         cols = buf[3];  /* number of stored macroblock cols */
78         /* buf[4] is number of displayed macroblock rows */
79         /* buf[5] is number of displayed macroblock cols */
80
81         if (!s->macroblocks || /* first frame */
82             16*cols != s->avctx->coded_width ||
83             16*rows != s->avctx->coded_height) {
84             avcodec_set_dimensions(s->avctx, 16*cols, 16*rows);
85             if (s->avctx->extradata_size == 1) {
86                 s->avctx->width  -= s->avctx->extradata[0] >> 4;
87                 s->avctx->height -= s->avctx->extradata[0] & 0x0F;
88             }
89             res = 2;
90         }
91
92         ff_vp56_init_range_decoder(c, buf+6, buf_size-6);
93         vp56_rac_gets(c, 2);
94
95         parse_filter_info = s->filter_header;
96         if (sub_version < 8)
97             vrt_shift = 5;
98         s->sub_version = sub_version;
99     } else {
100         if (!s->sub_version)
101             return 0;
102
103         if (separated_coeff || !s->filter_header) {
104             coeff_offset = AV_RB16(buf+1) - 2;
105             buf += 2;
106             buf_size -= 2;
107         }
108         ff_vp56_init_range_decoder(c, buf+1, buf_size-1);
109
110         *golden_frame = vp56_rac_get(c);
111         if (s->filter_header) {
112             s->deblock_filtering = vp56_rac_get(c);
113             if (s->deblock_filtering)
114                 vp56_rac_get(c);
115             if (s->sub_version > 7)
116                 parse_filter_info = vp56_rac_get(c);
117         }
118     }
119
120     if (parse_filter_info) {
121         if (vp56_rac_get(c)) {
122             s->filter_mode = 2;
123             s->sample_variance_threshold = vp56_rac_gets(c, 5) << vrt_shift;
124             s->max_vector_length = 2 << vp56_rac_gets(c, 3);
125         } else if (vp56_rac_get(c)) {
126             s->filter_mode = 1;
127         } else {
128             s->filter_mode = 0;
129         }
130         if (s->sub_version > 7)
131             s->filter_selection = vp56_rac_gets(c, 4);
132         else
133             s->filter_selection = 16;
134     }
135
136     s->use_huffman = vp56_rac_get(c);
137
138     s->parse_coeff = vp6_parse_coeff;
139     if (coeff_offset) {
140         buf      += coeff_offset;
141         buf_size -= coeff_offset;
142         if (buf_size < 0) {
143             if (s->framep[VP56_FRAME_CURRENT]->key_frame)
144                 avcodec_set_dimensions(s->avctx, 0, 0);
145             return 0;
146         }
147         if (s->use_huffman) {
148             s->parse_coeff = vp6_parse_coeff_huffman;
149             init_get_bits(&s->gb, buf, buf_size<<3);
150         } else {
151             ff_vp56_init_range_decoder(&s->cc, buf, buf_size);
152             s->ccp = &s->cc;
153         }
154     } else {
155         s->ccp = &s->c;
156     }
157
158     return res;
159 }
160
161 static void vp6_coeff_order_table_init(VP56Context *s)
162 {
163     int i, pos, idx = 1;
164
165     s->modelp->coeff_index_to_pos[0] = 0;
166     for (i=0; i<16; i++)
167         for (pos=1; pos<64; pos++)
168             if (s->modelp->coeff_reorder[pos] == i)
169                 s->modelp->coeff_index_to_pos[idx++] = pos;
170 }
171
172 static void vp6_default_models_init(VP56Context *s)
173 {
174     VP56Model *model = s->modelp;
175
176     model->vector_dct[0] = 0xA2;
177     model->vector_dct[1] = 0xA4;
178     model->vector_sig[0] = 0x80;
179     model->vector_sig[1] = 0x80;
180
181     memcpy(model->mb_types_stats, vp56_def_mb_types_stats, sizeof(model->mb_types_stats));
182     memcpy(model->vector_fdv, vp6_def_fdv_vector_model, sizeof(model->vector_fdv));
183     memcpy(model->vector_pdv, vp6_def_pdv_vector_model, sizeof(model->vector_pdv));
184     memcpy(model->coeff_runv, vp6_def_runv_coeff_model, sizeof(model->coeff_runv));
185     memcpy(model->coeff_reorder, vp6_def_coeff_reorder, sizeof(model->coeff_reorder));
186
187     vp6_coeff_order_table_init(s);
188 }
189
190 static void vp6_parse_vector_models(VP56Context *s)
191 {
192     VP56RangeCoder *c = &s->c;
193     VP56Model *model = s->modelp;
194     int comp, node;
195
196     for (comp=0; comp<2; comp++) {
197         if (vp56_rac_get_prob(c, vp6_sig_dct_pct[comp][0]))
198             model->vector_dct[comp] = vp56_rac_gets_nn(c, 7);
199         if (vp56_rac_get_prob(c, vp6_sig_dct_pct[comp][1]))
200             model->vector_sig[comp] = vp56_rac_gets_nn(c, 7);
201     }
202
203     for (comp=0; comp<2; comp++)
204         for (node=0; node<7; node++)
205             if (vp56_rac_get_prob(c, vp6_pdv_pct[comp][node]))
206                 model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
207
208     for (comp=0; comp<2; comp++)
209         for (node=0; node<8; node++)
210             if (vp56_rac_get_prob(c, vp6_fdv_pct[comp][node]))
211                 model->vector_fdv[comp][node] = vp56_rac_gets_nn(c, 7);
212 }
213
214 /* nodes must ascend by count, but with descending symbol order */
215 static int vp6_huff_cmp(const void *va, const void *vb)
216 {
217     const Node *a = va, *b = vb;
218     return (a->count - b->count)*16 + (b->sym - a->sym);
219 }
220
221 static int vp6_build_huff_tree(VP56Context *s, uint8_t coeff_model[],
222                                const uint8_t *map, unsigned size, VLC *vlc)
223 {
224     Node nodes[2*VP6_MAX_HUFF_SIZE], *tmp = &nodes[size];
225     int a, b, i;
226
227     /* first compute probabilities from model */
228     tmp[0].count = 256;
229     for (i=0; i<size-1; i++) {
230         a = tmp[i].count *        coeff_model[i]  >> 8;
231         b = tmp[i].count * (255 - coeff_model[i]) >> 8;
232         nodes[map[2*i  ]].count = a + !a;
233         nodes[map[2*i+1]].count = b + !b;
234     }
235
236     free_vlc(vlc);
237     /* then build the huffman tree according to probabilities */
238     return ff_huff_build_tree(s->avctx, vlc, size, nodes, vp6_huff_cmp,
239                               FF_HUFFMAN_FLAG_HNODE_FIRST);
240 }
241
242 static int vp6_parse_coeff_models(VP56Context *s)
243 {
244     VP56RangeCoder *c = &s->c;
245     VP56Model *model = s->modelp;
246     int def_prob[11];
247     int node, cg, ctx, pos;
248     int ct;    /* code type */
249     int pt;    /* plane type (0 for Y, 1 for U or V) */
250
251     memset(def_prob, 0x80, sizeof(def_prob));
252
253     for (pt=0; pt<2; pt++)
254         for (node=0; node<11; node++)
255             if (vp56_rac_get_prob(c, vp6_dccv_pct[pt][node])) {
256                 def_prob[node] = vp56_rac_gets_nn(c, 7);
257                 model->coeff_dccv[pt][node] = def_prob[node];
258             } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
259                 model->coeff_dccv[pt][node] = def_prob[node];
260             }
261
262     if (vp56_rac_get(c)) {
263         for (pos=1; pos<64; pos++)
264             if (vp56_rac_get_prob(c, vp6_coeff_reorder_pct[pos]))
265                 model->coeff_reorder[pos] = vp56_rac_gets(c, 4);
266         vp6_coeff_order_table_init(s);
267     }
268
269     for (cg=0; cg<2; cg++)
270         for (node=0; node<14; node++)
271             if (vp56_rac_get_prob(c, vp6_runv_pct[cg][node]))
272                 model->coeff_runv[cg][node] = vp56_rac_gets_nn(c, 7);
273
274     for (ct=0; ct<3; ct++)
275         for (pt=0; pt<2; pt++)
276             for (cg=0; cg<6; cg++)
277                 for (node=0; node<11; node++)
278                     if (vp56_rac_get_prob(c, vp6_ract_pct[ct][pt][cg][node])) {
279                         def_prob[node] = vp56_rac_gets_nn(c, 7);
280                         model->coeff_ract[pt][ct][cg][node] = def_prob[node];
281                     } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
282                         model->coeff_ract[pt][ct][cg][node] = def_prob[node];
283                     }
284
285     if (s->use_huffman) {
286         for (pt=0; pt<2; pt++) {
287             if (vp6_build_huff_tree(s, model->coeff_dccv[pt],
288                                     vp6_huff_coeff_map, 12, &s->dccv_vlc[pt]))
289                 return -1;
290             if (vp6_build_huff_tree(s, model->coeff_runv[pt],
291                                     vp6_huff_run_map, 9, &s->runv_vlc[pt]))
292                 return -1;
293             for (ct=0; ct<3; ct++)
294                 for (cg = 0; cg < 6; cg++)
295                     if (vp6_build_huff_tree(s, model->coeff_ract[pt][ct][cg],
296                                             vp6_huff_coeff_map, 12,
297                                             &s->ract_vlc[pt][ct][cg]))
298                         return -1;
299         }
300         memset(s->nb_null, 0, sizeof(s->nb_null));
301     } else {
302     /* coeff_dcct is a linear combination of coeff_dccv */
303     for (pt=0; pt<2; pt++)
304         for (ctx=0; ctx<3; ctx++)
305             for (node=0; node<5; node++)
306                 model->coeff_dcct[pt][ctx][node] = av_clip(((model->coeff_dccv[pt][node] * vp6_dccv_lc[ctx][node][0] + 128) >> 8) + vp6_dccv_lc[ctx][node][1], 1, 255);
307     }
308     return 0;
309 }
310
311 static void vp6_parse_vector_adjustment(VP56Context *s, VP56mv *vect)
312 {
313     VP56RangeCoder *c = &s->c;
314     VP56Model *model = s->modelp;
315     int comp;
316
317     *vect = (VP56mv) {0,0};
318     if (s->vector_candidate_pos < 2)
319         *vect = s->vector_candidate[0];
320
321     for (comp=0; comp<2; comp++) {
322         int i, delta = 0;
323
324         if (vp56_rac_get_prob(c, model->vector_dct[comp])) {
325             static const uint8_t prob_order[] = {0, 1, 2, 7, 6, 5, 4};
326             for (i=0; i<sizeof(prob_order); i++) {
327                 int j = prob_order[i];
328                 delta |= vp56_rac_get_prob(c, model->vector_fdv[comp][j])<<j;
329             }
330             if (delta & 0xF0)
331                 delta |= vp56_rac_get_prob(c, model->vector_fdv[comp][3])<<3;
332             else
333                 delta |= 8;
334         } else {
335             delta = vp56_rac_get_tree(c, vp56_pva_tree,
336                                       model->vector_pdv[comp]);
337         }
338
339         if (delta && vp56_rac_get_prob(c, model->vector_sig[comp]))
340             delta = -delta;
341
342         if (!comp)
343             vect->x += delta;
344         else
345             vect->y += delta;
346     }
347 }
348
349 /**
350  * Read number of consecutive blocks with null DC or AC.
351  * This value is < 74.
352  */
353 static unsigned vp6_get_nb_null(VP56Context *s)
354 {
355     unsigned val = get_bits(&s->gb, 2);
356     if (val == 2)
357         val += get_bits(&s->gb, 2);
358     else if (val == 3) {
359         val = get_bits1(&s->gb) << 2;
360         val = 6+val + get_bits(&s->gb, 2+val);
361     }
362     return val;
363 }
364
365 static void vp6_parse_coeff_huffman(VP56Context *s)
366 {
367     VP56Model *model = s->modelp;
368     uint8_t *permute = s->scantable.permutated;
369     VLC *vlc_coeff;
370     int coeff, sign, coeff_idx;
371     int b, cg, idx;
372     int pt = 0;    /* plane type (0 for Y, 1 for U or V) */
373
374     for (b=0; b<6; b++) {
375         int ct = 0;    /* code type */
376         if (b > 3) pt = 1;
377         vlc_coeff = &s->dccv_vlc[pt];
378
379         for (coeff_idx=0; coeff_idx<64; ) {
380             int run = 1;
381             if (coeff_idx<2 && s->nb_null[coeff_idx][pt]) {
382                 s->nb_null[coeff_idx][pt]--;
383                 if (coeff_idx)
384                     break;
385             } else {
386                 if (get_bits_count(&s->gb) >= s->gb.size_in_bits)
387                     return;
388                 coeff = get_vlc2(&s->gb, vlc_coeff->table, 9, 3);
389                 if (coeff == 0) {
390                     if (coeff_idx) {
391                         int pt = (coeff_idx >= 6);
392                         run += get_vlc2(&s->gb, s->runv_vlc[pt].table, 9, 3);
393                         if (run >= 9)
394                             run += get_bits(&s->gb, 6);
395                     } else
396                         s->nb_null[0][pt] = vp6_get_nb_null(s);
397                     ct = 0;
398                 } else if (coeff == 11) {  /* end of block */
399                     if (coeff_idx == 1)    /* first AC coeff ? */
400                         s->nb_null[1][pt] = vp6_get_nb_null(s);
401                     break;
402                 } else {
403                     int coeff2 = vp56_coeff_bias[coeff];
404                     if (coeff > 4)
405                         coeff2 += get_bits(&s->gb, coeff <= 9 ? coeff - 4 : 11);
406                     ct = 1 + (coeff2 > 1);
407                     sign = get_bits1(&s->gb);
408                     coeff2 = (coeff2 ^ -sign) + sign;
409                     if (coeff_idx)
410                         coeff2 *= s->dequant_ac;
411                     idx = model->coeff_index_to_pos[coeff_idx];
412                     s->block_coeff[b][permute[idx]] = coeff2;
413                 }
414             }
415             coeff_idx+=run;
416             cg = FFMIN(vp6_coeff_groups[coeff_idx], 3);
417             vlc_coeff = &s->ract_vlc[pt][ct][cg];
418         }
419     }
420 }
421
422 static void vp6_parse_coeff(VP56Context *s)
423 {
424     VP56RangeCoder *c = s->ccp;
425     VP56Model *model = s->modelp;
426     uint8_t *permute = s->scantable.permutated;
427     uint8_t *model1, *model2, *model3;
428     int coeff, sign, coeff_idx;
429     int b, i, cg, idx, ctx;
430     int pt = 0;    /* plane type (0 for Y, 1 for U or V) */
431
432     for (b=0; b<6; b++) {
433         int ct = 1;    /* code type */
434         int run = 1;
435
436         if (b > 3) pt = 1;
437
438         ctx = s->left_block[vp56_b6to4[b]].not_null_dc
439               + s->above_blocks[s->above_block_idx[b]].not_null_dc;
440         model1 = model->coeff_dccv[pt];
441         model2 = model->coeff_dcct[pt][ctx];
442
443         for (coeff_idx=0; coeff_idx<64; ) {
444             if ((coeff_idx>1 && ct==0) || vp56_rac_get_prob(c, model2[0])) {
445                 /* parse a coeff */
446                 if (vp56_rac_get_prob(c, model2[2])) {
447                     if (vp56_rac_get_prob(c, model2[3])) {
448                         idx = vp56_rac_get_tree(c, vp56_pc_tree, model1);
449                         coeff = vp56_coeff_bias[idx+5];
450                         for (i=vp56_coeff_bit_length[idx]; i>=0; i--)
451                             coeff += vp56_rac_get_prob(c, vp56_coeff_parse_table[idx][i]) << i;
452                     } else {
453                         if (vp56_rac_get_prob(c, model2[4]))
454                             coeff = 3 + vp56_rac_get_prob(c, model1[5]);
455                         else
456                             coeff = 2;
457                     }
458                     ct = 2;
459                 } else {
460                     ct = 1;
461                     coeff = 1;
462                 }
463                 sign = vp56_rac_get(c);
464                 coeff = (coeff ^ -sign) + sign;
465                 if (coeff_idx)
466                     coeff *= s->dequant_ac;
467                 idx = model->coeff_index_to_pos[coeff_idx];
468                 s->block_coeff[b][permute[idx]] = coeff;
469                 run = 1;
470             } else {
471                 /* parse a run */
472                 ct = 0;
473                 if (coeff_idx > 0) {
474                     if (!vp56_rac_get_prob(c, model2[1]))
475                         break;
476
477                     model3 = model->coeff_runv[coeff_idx >= 6];
478                     run = vp56_rac_get_tree(c, vp6_pcr_tree, model3);
479                     if (!run)
480                         for (run=9, i=0; i<6; i++)
481                             run += vp56_rac_get_prob(c, model3[i+8]) << i;
482                 }
483             }
484
485             cg = vp6_coeff_groups[coeff_idx+=run];
486             model1 = model2 = model->coeff_ract[pt][ct][cg];
487         }
488
489         s->left_block[vp56_b6to4[b]].not_null_dc =
490         s->above_blocks[s->above_block_idx[b]].not_null_dc = !!s->block_coeff[b][0];
491     }
492 }
493
494 static int vp6_block_variance(uint8_t *src, int stride)
495 {
496     int sum = 0, square_sum = 0;
497     int y, x;
498
499     for (y=0; y<8; y+=2) {
500         for (x=0; x<8; x+=2) {
501             sum += src[x];
502             square_sum += src[x]*src[x];
503         }
504         src += 2*stride;
505     }
506     return (16*square_sum - sum*sum) >> 8;
507 }
508
509 static void vp6_filter_hv4(uint8_t *dst, uint8_t *src, int stride,
510                            int delta, const int16_t *weights)
511 {
512     int x, y;
513
514     for (y=0; y<8; y++) {
515         for (x=0; x<8; x++) {
516             dst[x] = av_clip_uint8((  src[x-delta  ] * weights[0]
517                                  + src[x        ] * weights[1]
518                                  + src[x+delta  ] * weights[2]
519                                  + src[x+2*delta] * weights[3] + 64) >> 7);
520         }
521         src += stride;
522         dst += stride;
523     }
524 }
525
526 static void vp6_filter_diag2(VP56Context *s, uint8_t *dst, uint8_t *src,
527                              int stride, int h_weight, int v_weight)
528 {
529     uint8_t *tmp = s->edge_emu_buffer+16;
530     s->dsp.put_h264_chroma_pixels_tab[0](tmp, src, stride, 9, h_weight, 0);
531     s->dsp.put_h264_chroma_pixels_tab[0](dst, tmp, stride, 8, 0, v_weight);
532 }
533
534 static void vp6_filter(VP56Context *s, uint8_t *dst, uint8_t *src,
535                        int offset1, int offset2, int stride,
536                        VP56mv mv, int mask, int select, int luma)
537 {
538     int filter4 = 0;
539     int x8 = mv.x & mask;
540     int y8 = mv.y & mask;
541
542     if (luma) {
543         x8 *= 2;
544         y8 *= 2;
545         filter4 = s->filter_mode;
546         if (filter4 == 2) {
547             if (s->max_vector_length &&
548                 (FFABS(mv.x) > s->max_vector_length ||
549                  FFABS(mv.y) > s->max_vector_length)) {
550                 filter4 = 0;
551             } else if (s->sample_variance_threshold
552                        && (vp6_block_variance(src+offset1, stride)
553                            < s->sample_variance_threshold)) {
554                 filter4 = 0;
555             }
556         }
557     }
558
559     if ((y8 && (offset2-offset1)*s->flip<0) || (!y8 && offset1 > offset2)) {
560         offset1 = offset2;
561     }
562
563     if (filter4) {
564         if (!y8) {                      /* left or right combine */
565             vp6_filter_hv4(dst, src+offset1, stride, 1,
566                            vp6_block_copy_filter[select][x8]);
567         } else if (!x8) {               /* above or below combine */
568             vp6_filter_hv4(dst, src+offset1, stride, stride,
569                            vp6_block_copy_filter[select][y8]);
570         } else {
571             s->vp56dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride,
572                              vp6_block_copy_filter[select][x8],
573                              vp6_block_copy_filter[select][y8]);
574         }
575     } else {
576         if (!x8 || !y8) {
577             s->dsp.put_h264_chroma_pixels_tab[0](dst, src+offset1, stride, 8, x8, y8);
578         } else {
579             vp6_filter_diag2(s, dst, src+offset1 + ((mv.x^mv.y)>>31), stride, x8, y8);
580         }
581     }
582 }
583
584 static av_cold int vp6_decode_init(AVCodecContext *avctx)
585 {
586     VP56Context *s = avctx->priv_data;
587
588     ff_vp56_init(avctx, avctx->codec->id == CODEC_ID_VP6,
589                         avctx->codec->id == CODEC_ID_VP6A);
590     s->vp56_coord_div = vp6_coord_div;
591     s->parse_vector_adjustment = vp6_parse_vector_adjustment;
592     s->filter = vp6_filter;
593     s->default_models_init = vp6_default_models_init;
594     s->parse_vector_models = vp6_parse_vector_models;
595     s->parse_coeff_models = vp6_parse_coeff_models;
596     s->parse_header = vp6_parse_header;
597
598     return 0;
599 }
600
601 static av_cold int vp6_decode_free(AVCodecContext *avctx)
602 {
603     VP56Context *s = avctx->priv_data;
604     int pt, ct, cg;
605
606     ff_vp56_free(avctx);
607
608     for (pt=0; pt<2; pt++) {
609         free_vlc(&s->dccv_vlc[pt]);
610         free_vlc(&s->runv_vlc[pt]);
611         for (ct=0; ct<3; ct++)
612             for (cg=0; cg<6; cg++)
613                 free_vlc(&s->ract_vlc[pt][ct][cg]);
614     }
615     return 0;
616 }
617
618 AVCodec ff_vp6_decoder = {
619     .name           = "vp6",
620     .type           = AVMEDIA_TYPE_VIDEO,
621     .id             = CODEC_ID_VP6,
622     .priv_data_size = sizeof(VP56Context),
623     .init           = vp6_decode_init,
624     .close          = vp6_decode_free,
625     .decode         = ff_vp56_decode_frame,
626     .capabilities   = CODEC_CAP_DR1,
627     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6"),
628 };
629
630 /* flash version, not flipped upside-down */
631 AVCodec ff_vp6f_decoder = {
632     .name           = "vp6f",
633     .type           = AVMEDIA_TYPE_VIDEO,
634     .id             = CODEC_ID_VP6F,
635     .priv_data_size = sizeof(VP56Context),
636     .init           = vp6_decode_init,
637     .close          = vp6_decode_free,
638     .decode         = ff_vp56_decode_frame,
639     .capabilities   = CODEC_CAP_DR1,
640     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6 (Flash version)"),
641 };
642
643 /* flash version, not flipped upside-down, with alpha channel */
644 AVCodec ff_vp6a_decoder = {
645     .name           = "vp6a",
646     .type           = AVMEDIA_TYPE_VIDEO,
647     .id             = CODEC_ID_VP6A,
648     .priv_data_size = sizeof(VP56Context),
649     .init           = vp6_decode_init,
650     .close          = vp6_decode_free,
651     .decode         = ff_vp56_decode_frame,
652     .capabilities   = CODEC_CAP_DR1,
653     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6 (Flash version, with alpha channel)"),
654 };