]> git.sesse.net Git - ffmpeg/blob - libavcodec/vp56.h
always print message when error, AV_LOG_DEBUG -> AV_LOG_ERROR
[ffmpeg] / libavcodec / vp56.h
1 /**
2  * @file vp56.h
3  * VP5 and VP6 compatible video decoder (common features)
4  *
5  * Copyright (C) 2006  Aurelien Jacobs <aurel@gnuage.org>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  */
23
24 #ifndef VP56_H
25 #define VP56_H
26
27 #include "vp56data.h"
28 #include "dsputil.h"
29 #include "mpegvideo.h"
30
31
32 typedef struct vp56_context vp56_context_t;
33 typedef struct vp56_mv vp56_mv_t;
34
35 typedef void (*vp56_parse_vector_adjustment_t)(vp56_context_t *s,
36                                                vp56_mv_t *vect);
37 typedef int (*vp56_adjust_t)(int v, int t);
38 typedef void (*vp56_filter_t)(vp56_context_t *s, uint8_t *dst, uint8_t *src,
39                               int offset1, int offset2, int stride,
40                               vp56_mv_t mv, int mask, int select, int luma);
41 typedef void (*vp56_parse_coeff_t)(vp56_context_t *s);
42 typedef void (*vp56_default_models_init_t)(vp56_context_t *s);
43 typedef void (*vp56_parse_vector_models_t)(vp56_context_t *s);
44 typedef void (*vp56_parse_coeff_models_t)(vp56_context_t *s);
45 typedef int (*vp56_parse_header_t)(vp56_context_t *s, uint8_t *buf,
46                                    int buf_size, int *golden_frame);
47
48 typedef struct {
49     int high;
50     int bits;
51     const uint8_t *buffer;
52     unsigned long code_word;
53 } vp56_range_coder_t;
54
55 typedef struct {
56     uint8_t not_null_dc;
57     vp56_frame_t ref_frame;
58     DCTELEM dc_coeff;
59 } vp56_ref_dc_t;
60
61 struct vp56_mv {
62     int x;
63     int y;
64 };
65
66 typedef struct {
67     uint8_t type;
68     vp56_mv_t mv;
69 } vp56_macroblock_t;
70
71 struct vp56_context {
72     AVCodecContext *avctx;
73     DSPContext dsp;
74     ScanTable scantable;
75     AVFrame frames[3];
76     uint8_t *edge_emu_buffer_alloc;
77     uint8_t *edge_emu_buffer;
78     vp56_range_coder_t c;
79     int sub_version;
80
81     /* frame info */
82     int plane_width[3];
83     int plane_height[3];
84     int mb_width;   /* number of horizontal MB */
85     int mb_height;  /* number of vertical MB */
86     int block_offset[6];
87
88     int quantizer;
89     uint16_t dequant_dc;
90     uint16_t dequant_ac;
91
92     /* DC predictors management */
93     vp56_ref_dc_t *above_blocks;
94     vp56_ref_dc_t left_block[4];
95     int above_block_idx[6];
96     DCTELEM prev_dc[3][3];    /* [plan][ref_frame] */
97
98     /* blocks / macroblock */
99     vp56_mb_t mb_type;
100     vp56_macroblock_t *macroblocks;
101     DECLARE_ALIGNED_16(DCTELEM, block_coeff[6][64]);
102     uint8_t coeff_reorder[64];       /* used in vp6 only */
103     uint8_t coeff_index_to_pos[64];  /* used in vp6 only */
104
105     /* motion vectors */
106     vp56_mv_t mv[6];  /* vectors for each block in MB */
107     vp56_mv_t vector_candidate[2];
108     int vector_candidate_pos;
109
110     /* filtering hints */
111     int deblock_filtering;
112     int filter_selection;
113     int filter_mode;
114     int max_vector_length;
115     int sample_variance_threshold;
116
117     /* AC models */
118     uint8_t vector_model_sig[2];           /* delta sign */
119     uint8_t vector_model_dct[2];           /* delta coding types */
120     uint8_t vector_model_pdi[2][2];        /* predefined delta init */
121     uint8_t vector_model_pdv[2][7];        /* predefined delta values */
122     uint8_t vector_model_fdv[2][8];        /* 8 bit delta value definition */
123     uint8_t mb_type_model[3][10][10];      /* model for decoding MB type */
124     uint8_t coeff_model_dccv[2][11];       /* DC coeff value */
125     uint8_t coeff_model_ract[2][3][6][11]; /* Run/AC coding type and AC coeff value */
126     uint8_t coeff_model_acct[2][3][3][6][5];/* vp5 only AC coding type for coding group < 3 */
127     uint8_t coeff_model_dcct[2][36][5];    /* DC coeff coding type */
128     uint8_t coeff_model_runv[2][14];       /* run value (vp6 only) */
129     uint8_t mb_types_stats[3][10][2];      /* contextual, next MB type stats */
130     uint8_t coeff_ctx[4][64];              /* used in vp5 only */
131     uint8_t coeff_ctx_last[4];             /* used in vp5 only */
132
133     /* upside-down flipping hints */
134     int flip;  /* are we flipping ? */
135     int frbi;  /* first row block index in MB */
136     int srbi;  /* second row block index in MB */
137     int stride[3];  /* stride for each plan */
138
139     const uint8_t *vp56_coord_div;
140     vp56_parse_vector_adjustment_t parse_vector_adjustment;
141     vp56_adjust_t adjust;
142     vp56_filter_t filter;
143     vp56_parse_coeff_t parse_coeff;
144     vp56_default_models_init_t default_models_init;
145     vp56_parse_vector_models_t parse_vector_models;
146     vp56_parse_coeff_models_t parse_coeff_models;
147     vp56_parse_header_t parse_header;
148 };
149
150
151 void vp56_init(vp56_context_t *s, AVCodecContext *avctx, int flip);
152 int vp56_free(AVCodecContext *avctx);
153 void vp56_init_dequant(vp56_context_t *s, int quantizer);
154 int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
155                       uint8_t *buf, int buf_size);
156
157
158 /**
159  * vp56 specific range coder implementation
160  */
161
162 static inline void vp56_init_range_decoder(vp56_range_coder_t *c,
163                                            const uint8_t *buf, int buf_size)
164 {
165     c->high = 255;
166     c->bits = 8;
167     c->buffer = buf;
168     c->code_word = *c->buffer++ << 8;
169     c->code_word |= *c->buffer++;
170 }
171
172 static inline int vp56_rac_get_prob(vp56_range_coder_t *c, uint8_t prob)
173 {
174     unsigned int low = 1 + (((c->high - 1) * prob) / 256);
175     unsigned int low_shift = low << 8;
176     int bit = c->code_word >= low_shift;
177
178     if (bit) {
179         c->high -= low;
180         c->code_word -= low_shift;
181     } else {
182         c->high = low;
183     }
184
185     /* normalize */
186     while (c->high < 128) {
187         c->high <<= 1;
188         c->code_word <<= 1;
189         if (--c->bits == 0) {
190             c->bits = 8;
191             c->code_word |= *c->buffer++;
192         }
193     }
194     return bit;
195 }
196
197 static inline int vp56_rac_get(vp56_range_coder_t *c)
198 {
199     /* equiprobable */
200     int low = (c->high + 1) >> 1;
201     unsigned int low_shift = low << 8;
202     int bit = c->code_word >= low_shift;
203     if (bit) {
204         c->high = (c->high - low) << 1;
205         c->code_word -= low_shift;
206     } else {
207         c->high = low << 1;
208     }
209
210     /* normalize */
211     c->code_word <<= 1;
212     if (--c->bits == 0) {
213         c->bits = 8;
214         c->code_word |= *c->buffer++;
215     }
216     return bit;
217 }
218
219 static inline int vp56_rac_gets(vp56_range_coder_t *c, int bits)
220 {
221     int value = 0;
222
223     while (bits--) {
224         value = (value << 1) | vp56_rac_get(c);
225     }
226
227     return value;
228 }
229
230 static inline int vp56_rac_gets_nn(vp56_range_coder_t *c, int bits)
231 {
232     int v = vp56_rac_gets(c, 7) << 1;
233     return v + !v;
234 }
235
236 static inline int vp56_rac_get_tree(vp56_range_coder_t *c,
237                                     const vp56_tree_t *tree,
238                                     const uint8_t *probs)
239 {
240     while (tree->val > 0) {
241         if (vp56_rac_get_prob(c, probs[tree->prob_idx]))
242             tree += tree->val;
243         else
244             tree++;
245     }
246     return -tree->val;
247 }
248
249 #endif /* VP56_H */