comparison vp56data.c @ 3695:6795c9e5f983 libavcodec

VP5 and VP6 video decoder
author aurel
date Sat, 09 Sep 2006 17:19:37 +0000
parents
children c8c591fe26f8
comparison
equal deleted inserted replaced
3694:8765ee4eaa45 3695:6795c9e5f983
1 /**
2 * @file vp56data.c
3 * VP5 and VP6 compatible video decoder (common data)
4 *
5 * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <inttypes.h>
23 #include "vp56data.h"
24
25 const uint8_t vp56_b6to3[] = { 0, 0, 0, 0, 1, 2 };
26 const uint8_t vp56_b6to4[] = { 0, 0, 1, 1, 2, 3 };
27
28 const uint8_t vp56_coeff_parse_table[6][11] = {
29 { 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
30 { 145, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
31 { 140, 148, 173, 0, 0, 0, 0, 0, 0, 0, 0 },
32 { 135, 140, 155, 176, 0, 0, 0, 0, 0, 0, 0 },
33 { 130, 134, 141, 157, 180, 0, 0, 0, 0, 0, 0 },
34 { 129, 130, 133, 140, 153, 177, 196, 230, 243, 254, 254 },
35 };
36
37 const uint8_t vp56_def_mb_types_stats[3][10][2] = {
38 { { 69, 42 }, { 1, 2 }, { 1, 7 }, { 44, 42 }, { 6, 22 },
39 { 1, 3 }, { 0, 2 }, { 1, 5 }, { 0, 1 }, { 0, 0 }, },
40 { { 229, 8 }, { 1, 1 }, { 0, 8 }, { 0, 0 }, { 0, 0 },
41 { 1, 2 }, { 0, 1 }, { 0, 0 }, { 1, 1 }, { 0, 0 }, },
42 { { 122, 35 }, { 1, 1 }, { 1, 6 }, { 46, 34 }, { 0, 0 },
43 { 1, 2 }, { 0, 1 }, { 0, 1 }, { 1, 1 }, { 0, 0 }, },
44 };
45
46 const vp56_tree_t vp56_pva_tree[] = {
47 { 8, 0},
48 { 4, 1},
49 { 2, 2}, {-0}, {-1},
50 { 2, 3}, {-2}, {-3},
51 { 4, 4},
52 { 2, 5}, {-4}, {-5},
53 { 2, 6}, {-6}, {-7},
54 };
55
56 const vp56_tree_t vp56_pc_tree[] = {
57 { 4, 6},
58 { 2, 7}, {-0}, {-1},
59 { 4, 8},
60 { 2, 9}, {-2}, {-3},
61 { 2,10}, {-4}, {-5},
62 };
63
64 const uint8_t vp56_coeff_bias[] = { 5, 7, 11, 19, 35, 67 };
65 const uint8_t vp56_coeff_bit_length[] = { 0, 1, 2, 3, 4, 10 };