]> git.sesse.net Git - ffmpeg/blob - libavcodec/vp6.c
Merge remote-tracking branch 'shariman/wmall'
[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;;) {
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             if (coeff_idx >= 64)
417                 break;
418             cg = FFMIN(vp6_coeff_groups[coeff_idx], 3);
419             vlc_coeff = &s->ract_vlc[pt][ct][cg];
420         }
421     }
422 }
423
424 static void vp6_parse_coeff(VP56Context *s)
425 {
426     VP56RangeCoder *c = s->ccp;
427     VP56Model *model = s->modelp;
428     uint8_t *permute = s->scantable.permutated;
429     uint8_t *model1, *model2, *model3;
430     int coeff, sign, coeff_idx;
431     int b, i, cg, idx, ctx;
432     int pt = 0;    /* plane type (0 for Y, 1 for U or V) */
433
434     for (b=0; b<6; b++) {
435         int ct = 1;    /* code type */
436         int run = 1;
437
438         if (b > 3) pt = 1;
439
440         ctx = s->left_block[vp56_b6to4[b]].not_null_dc
441               + s->above_blocks[s->above_block_idx[b]].not_null_dc;
442         model1 = model->coeff_dccv[pt];
443         model2 = model->coeff_dcct[pt][ctx];
444
445         coeff_idx = 0;
446         for (;;) {
447             if ((coeff_idx>1 && ct==0) || vp56_rac_get_prob(c, model2[0])) {
448                 /* parse a coeff */
449                 if (vp56_rac_get_prob(c, model2[2])) {
450                     if (vp56_rac_get_prob(c, model2[3])) {
451                         idx = vp56_rac_get_tree(c, vp56_pc_tree, model1);
452                         coeff = vp56_coeff_bias[idx+5];
453                         for (i=vp56_coeff_bit_length[idx]; i>=0; i--)
454                             coeff += vp56_rac_get_prob(c, vp56_coeff_parse_table[idx][i]) << i;
455                     } else {
456                         if (vp56_rac_get_prob(c, model2[4]))
457                             coeff = 3 + vp56_rac_get_prob(c, model1[5]);
458                         else
459                             coeff = 2;
460                     }
461                     ct = 2;
462                 } else {
463                     ct = 1;
464                     coeff = 1;
465                 }
466                 sign = vp56_rac_get(c);
467                 coeff = (coeff ^ -sign) + sign;
468                 if (coeff_idx)
469                     coeff *= s->dequant_ac;
470                 idx = model->coeff_index_to_pos[coeff_idx];
471                 s->block_coeff[b][permute[idx]] = coeff;
472                 run = 1;
473             } else {
474                 /* parse a run */
475                 ct = 0;
476                 if (coeff_idx > 0) {
477                     if (!vp56_rac_get_prob(c, model2[1]))
478                         break;
479
480                     model3 = model->coeff_runv[coeff_idx >= 6];
481                     run = vp56_rac_get_tree(c, vp6_pcr_tree, model3);
482                     if (!run)
483                         for (run=9, i=0; i<6; i++)
484                             run += vp56_rac_get_prob(c, model3[i+8]) << i;
485                 }
486             }
487             coeff_idx += run;
488             if (coeff_idx >= 64)
489                 break;
490             cg = vp6_coeff_groups[coeff_idx];
491             model1 = model2 = model->coeff_ract[pt][ct][cg];
492         }
493
494         s->left_block[vp56_b6to4[b]].not_null_dc =
495         s->above_blocks[s->above_block_idx[b]].not_null_dc = !!s->block_coeff[b][0];
496     }
497 }
498
499 static int vp6_block_variance(uint8_t *src, int stride)
500 {
501     int sum = 0, square_sum = 0;
502     int y, x;
503
504     for (y=0; y<8; y+=2) {
505         for (x=0; x<8; x+=2) {
506             sum += src[x];
507             square_sum += src[x]*src[x];
508         }
509         src += 2*stride;
510     }
511     return (16*square_sum - sum*sum) >> 8;
512 }
513
514 static void vp6_filter_hv4(uint8_t *dst, uint8_t *src, int stride,
515                            int delta, const int16_t *weights)
516 {
517     int x, y;
518
519     for (y=0; y<8; y++) {
520         for (x=0; x<8; x++) {
521             dst[x] = av_clip_uint8((  src[x-delta  ] * weights[0]
522                                  + src[x        ] * weights[1]
523                                  + src[x+delta  ] * weights[2]
524                                  + src[x+2*delta] * weights[3] + 64) >> 7);
525         }
526         src += stride;
527         dst += stride;
528     }
529 }
530
531 static void vp6_filter_diag2(VP56Context *s, uint8_t *dst, uint8_t *src,
532                              int stride, int h_weight, int v_weight)
533 {
534     uint8_t *tmp = s->edge_emu_buffer+16;
535     s->dsp.put_h264_chroma_pixels_tab[0](tmp, src, stride, 9, h_weight, 0);
536     s->dsp.put_h264_chroma_pixels_tab[0](dst, tmp, stride, 8, 0, v_weight);
537 }
538
539 static void vp6_filter(VP56Context *s, uint8_t *dst, uint8_t *src,
540                        int offset1, int offset2, int stride,
541                        VP56mv mv, int mask, int select, int luma)
542 {
543     int filter4 = 0;
544     int x8 = mv.x & mask;
545     int y8 = mv.y & mask;
546
547     if (luma) {
548         x8 *= 2;
549         y8 *= 2;
550         filter4 = s->filter_mode;
551         if (filter4 == 2) {
552             if (s->max_vector_length &&
553                 (FFABS(mv.x) > s->max_vector_length ||
554                  FFABS(mv.y) > s->max_vector_length)) {
555                 filter4 = 0;
556             } else if (s->sample_variance_threshold
557                        && (vp6_block_variance(src+offset1, stride)
558                            < s->sample_variance_threshold)) {
559                 filter4 = 0;
560             }
561         }
562     }
563
564     if ((y8 && (offset2-offset1)*s->flip<0) || (!y8 && offset1 > offset2)) {
565         offset1 = offset2;
566     }
567
568     if (filter4) {
569         if (!y8) {                      /* left or right combine */
570             vp6_filter_hv4(dst, src+offset1, stride, 1,
571                            vp6_block_copy_filter[select][x8]);
572         } else if (!x8) {               /* above or below combine */
573             vp6_filter_hv4(dst, src+offset1, stride, stride,
574                            vp6_block_copy_filter[select][y8]);
575         } else {
576             s->vp56dsp.vp6_filter_diag4(dst, src+offset1+((mv.x^mv.y)>>31), stride,
577                              vp6_block_copy_filter[select][x8],
578                              vp6_block_copy_filter[select][y8]);
579         }
580     } else {
581         if (!x8 || !y8) {
582             s->dsp.put_h264_chroma_pixels_tab[0](dst, src+offset1, stride, 8, x8, y8);
583         } else {
584             vp6_filter_diag2(s, dst, src+offset1 + ((mv.x^mv.y)>>31), stride, x8, y8);
585         }
586     }
587 }
588
589 static av_cold int vp6_decode_init(AVCodecContext *avctx)
590 {
591     VP56Context *s = avctx->priv_data;
592
593     ff_vp56_init(avctx, avctx->codec->id == CODEC_ID_VP6,
594                         avctx->codec->id == CODEC_ID_VP6A);
595     s->vp56_coord_div = vp6_coord_div;
596     s->parse_vector_adjustment = vp6_parse_vector_adjustment;
597     s->filter = vp6_filter;
598     s->default_models_init = vp6_default_models_init;
599     s->parse_vector_models = vp6_parse_vector_models;
600     s->parse_coeff_models = vp6_parse_coeff_models;
601     s->parse_header = vp6_parse_header;
602
603     return 0;
604 }
605
606 static av_cold int vp6_decode_free(AVCodecContext *avctx)
607 {
608     VP56Context *s = avctx->priv_data;
609     int pt, ct, cg;
610
611     ff_vp56_free(avctx);
612
613     for (pt=0; pt<2; pt++) {
614         free_vlc(&s->dccv_vlc[pt]);
615         free_vlc(&s->runv_vlc[pt]);
616         for (ct=0; ct<3; ct++)
617             for (cg=0; cg<6; cg++)
618                 free_vlc(&s->ract_vlc[pt][ct][cg]);
619     }
620     return 0;
621 }
622
623 AVCodec ff_vp6_decoder = {
624     .name           = "vp6",
625     .type           = AVMEDIA_TYPE_VIDEO,
626     .id             = CODEC_ID_VP6,
627     .priv_data_size = sizeof(VP56Context),
628     .init           = vp6_decode_init,
629     .close          = vp6_decode_free,
630     .decode         = ff_vp56_decode_frame,
631     .capabilities   = CODEC_CAP_DR1,
632     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6"),
633 };
634
635 /* flash version, not flipped upside-down */
636 AVCodec ff_vp6f_decoder = {
637     .name           = "vp6f",
638     .type           = AVMEDIA_TYPE_VIDEO,
639     .id             = CODEC_ID_VP6F,
640     .priv_data_size = sizeof(VP56Context),
641     .init           = vp6_decode_init,
642     .close          = vp6_decode_free,
643     .decode         = ff_vp56_decode_frame,
644     .capabilities   = CODEC_CAP_DR1,
645     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6 (Flash version)"),
646 };
647
648 /* flash version, not flipped upside-down, with alpha channel */
649 AVCodec ff_vp6a_decoder = {
650     .name           = "vp6a",
651     .type           = AVMEDIA_TYPE_VIDEO,
652     .id             = CODEC_ID_VP6A,
653     .priv_data_size = sizeof(VP56Context),
654     .init           = vp6_decode_init,
655     .close          = vp6_decode_free,
656     .decode         = ff_vp56_decode_frame,
657     .capabilities   = CODEC_CAP_DR1,
658     .long_name = NULL_IF_CONFIG_SMALL("On2 VP6 (Flash version, with alpha channel)"),
659 };