]> git.sesse.net Git - ffmpeg/blob - libavcodec/vp56.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / vp56.h
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  * VP5 and VP6 compatible video decoder (common features)
24  */
25
26 #ifndef AVCODEC_VP56_H
27 #define AVCODEC_VP56_H
28
29 #include "vp56data.h"
30 #include "dsputil.h"
31 #include "get_bits.h"
32 #include "bytestream.h"
33 #include "vp3dsp.h"
34 #include "vp56dsp.h"
35
36 typedef struct vp56_context VP56Context;
37
38 typedef struct {
39     int16_t x;
40     int16_t y;
41 } DECLARE_ALIGNED(4, , VP56mv);
42
43 typedef void (*VP56ParseVectorAdjustment)(VP56Context *s,
44                                           VP56mv *vect);
45 typedef void (*VP56Filter)(VP56Context *s, uint8_t *dst, uint8_t *src,
46                            int offset1, int offset2, int stride,
47                            VP56mv mv, int mask, int select, int luma);
48 typedef void (*VP56ParseCoeff)(VP56Context *s);
49 typedef void (*VP56DefaultModelsInit)(VP56Context *s);
50 typedef void (*VP56ParseVectorModels)(VP56Context *s);
51 typedef int  (*VP56ParseCoeffModels)(VP56Context *s);
52 typedef int  (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf,
53                                 int buf_size, int *golden_frame);
54
55 typedef struct {
56     int high;
57     int bits; /* stored negated (i.e. negative "bits" is a positive number of
58                  bits left) in order to eliminate a negate in cache refilling */
59     const uint8_t *buffer;
60     const uint8_t *end;
61     unsigned int code_word;
62 } VP56RangeCoder;
63
64 typedef struct {
65     uint8_t not_null_dc;
66     VP56Frame ref_frame;
67     DCTELEM dc_coeff;
68 } VP56RefDc;
69
70 typedef struct {
71     uint8_t type;
72     VP56mv mv;
73 } VP56Macroblock;
74
75 typedef struct {
76     uint8_t coeff_reorder[64];       /* used in vp6 only */
77     uint8_t coeff_index_to_pos[64];  /* used in vp6 only */
78     uint8_t vector_sig[2];           /* delta sign */
79     uint8_t vector_dct[2];           /* delta coding types */
80     uint8_t vector_pdi[2][2];        /* predefined delta init */
81     uint8_t vector_pdv[2][7];        /* predefined delta values */
82     uint8_t vector_fdv[2][8];        /* 8 bit delta value definition */
83     uint8_t coeff_dccv[2][11];       /* DC coeff value */
84     uint8_t coeff_ract[2][3][6][11]; /* Run/AC coding type and AC coeff value */
85     uint8_t coeff_acct[2][3][3][6][5];/* vp5 only AC coding type for coding group < 3 */
86     uint8_t coeff_dcct[2][36][5];    /* DC coeff coding type */
87     uint8_t coeff_runv[2][14];       /* run value (vp6 only) */
88     uint8_t mb_type[3][10][10];      /* model for decoding MB type */
89     uint8_t mb_types_stats[3][10][2];/* contextual, next MB type stats */
90 } VP56Model;
91
92 struct vp56_context {
93     AVCodecContext *avctx;
94     DSPContext dsp;
95     VP3DSPContext vp3dsp;
96     VP56DSPContext vp56dsp;
97     ScanTable scantable;
98     AVFrame frames[4];
99     AVFrame *framep[6];
100     uint8_t *edge_emu_buffer_alloc;
101     uint8_t *edge_emu_buffer;
102     VP56RangeCoder c;
103     VP56RangeCoder cc;
104     VP56RangeCoder *ccp;
105     int sub_version;
106
107     /* frame info */
108     int plane_width[4];
109     int plane_height[4];
110     int mb_width;   /* number of horizontal MB */
111     int mb_height;  /* number of vertical MB */
112     int block_offset[6];
113
114     int quantizer;
115     uint16_t dequant_dc;
116     uint16_t dequant_ac;
117     int8_t *qscale_table;
118
119     /* DC predictors management */
120     VP56RefDc *above_blocks;
121     VP56RefDc left_block[4];
122     int above_block_idx[6];
123     DCTELEM prev_dc[3][3];    /* [plan][ref_frame] */
124
125     /* blocks / macroblock */
126     VP56mb mb_type;
127     VP56Macroblock *macroblocks;
128     DECLARE_ALIGNED(16, DCTELEM, block_coeff)[6][64];
129
130     /* motion vectors */
131     VP56mv mv[6];  /* vectors for each block in MB */
132     VP56mv vector_candidate[2];
133     int vector_candidate_pos;
134
135     /* filtering hints */
136     int filter_header;               /* used in vp6 only */
137     int deblock_filtering;
138     int filter_selection;
139     int filter_mode;
140     int max_vector_length;
141     int sample_variance_threshold;
142
143     uint8_t coeff_ctx[4][64];              /* used in vp5 only */
144     uint8_t coeff_ctx_last[4];             /* used in vp5 only */
145
146     int has_alpha;
147
148     /* upside-down flipping hints */
149     int flip;  /* are we flipping ? */
150     int frbi;  /* first row block index in MB */
151     int srbi;  /* second row block index in MB */
152     int stride[4];  /* stride for each plan */
153
154     const uint8_t *vp56_coord_div;
155     VP56ParseVectorAdjustment parse_vector_adjustment;
156     VP56Filter filter;
157     VP56ParseCoeff parse_coeff;
158     VP56DefaultModelsInit default_models_init;
159     VP56ParseVectorModels parse_vector_models;
160     VP56ParseCoeffModels parse_coeff_models;
161     VP56ParseHeader parse_header;
162
163     VP56Model *modelp;
164     VP56Model models[2];
165
166     /* huffman decoding */
167     int use_huffman;
168     GetBitContext gb;
169     VLC dccv_vlc[2];
170     VLC runv_vlc[2];
171     VLC ract_vlc[2][3][6];
172     unsigned int nb_null[2][2];       /* number of consecutive NULL DC/AC */
173 };
174
175
176 void ff_vp56_init(AVCodecContext *avctx, int flip, int has_alpha);
177 int ff_vp56_free(AVCodecContext *avctx);
178 void ff_vp56_init_dequant(VP56Context *s, int quantizer);
179 int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
180                          AVPacket *avpkt);
181
182
183 /**
184  * vp56 specific range coder implementation
185  */
186
187 extern const uint8_t ff_vp56_norm_shift[256];
188 void ff_vp56_init_range_decoder(VP56RangeCoder *c, const uint8_t *buf, int buf_size);
189
190 static av_always_inline unsigned int vp56_rac_renorm(VP56RangeCoder *c)
191 {
192     int shift = ff_vp56_norm_shift[c->high];
193     int bits = c->bits;
194     unsigned int code_word = c->code_word;
195
196     c->high   <<= shift;
197     code_word <<= shift;
198     bits       += shift;
199     if(bits >= 0 && c->buffer < c->end) {
200         code_word |= bytestream_get_be16(&c->buffer) << bits;
201         bits -= 16;
202     }
203     c->bits = bits;
204     return code_word;
205 }
206
207 #if   ARCH_ARM
208 #include "arm/vp56_arith.h"
209 #elif ARCH_X86
210 #include "x86/vp56_arith.h"
211 #endif
212
213 #ifndef vp56_rac_get_prob
214 #define vp56_rac_get_prob vp56_rac_get_prob
215 static av_always_inline int vp56_rac_get_prob(VP56RangeCoder *c, uint8_t prob)
216 {
217     unsigned int code_word = vp56_rac_renorm(c);
218     unsigned int low = 1 + (((c->high - 1) * prob) >> 8);
219     unsigned int low_shift = low << 16;
220     int bit = code_word >= low_shift;
221
222     c->high = bit ? c->high - low : low;
223     c->code_word = bit ? code_word - low_shift : code_word;
224
225     return bit;
226 }
227 #endif
228
229 #ifndef vp56_rac_get_prob_branchy
230 // branchy variant, to be used where there's a branch based on the bit decoded
231 static av_always_inline int vp56_rac_get_prob_branchy(VP56RangeCoder *c, int prob)
232 {
233     unsigned long code_word = vp56_rac_renorm(c);
234     unsigned low = 1 + (((c->high - 1) * prob) >> 8);
235     unsigned low_shift = low << 16;
236
237     if (code_word >= low_shift) {
238         c->high     -= low;
239         c->code_word = code_word - low_shift;
240         return 1;
241     }
242
243     c->high = low;
244     c->code_word = code_word;
245     return 0;
246 }
247 #endif
248
249 static av_always_inline int vp56_rac_get(VP56RangeCoder *c)
250 {
251     unsigned int code_word = vp56_rac_renorm(c);
252     /* equiprobable */
253     int low = (c->high + 1) >> 1;
254     unsigned int low_shift = low << 16;
255     int bit = code_word >= low_shift;
256     if (bit) {
257         c->high   -= low;
258         code_word -= low_shift;
259     } else {
260         c->high = low;
261     }
262
263     c->code_word = code_word;
264     return bit;
265 }
266
267 // rounding is different than vp56_rac_get, is vp56_rac_get wrong?
268 static av_always_inline int vp8_rac_get(VP56RangeCoder *c)
269 {
270     return vp56_rac_get_prob(c, 128);
271 }
272
273 static av_unused int vp56_rac_gets(VP56RangeCoder *c, int bits)
274 {
275     int value = 0;
276
277     while (bits--) {
278         value = (value << 1) | vp56_rac_get(c);
279     }
280
281     return value;
282 }
283
284 static av_unused int vp8_rac_get_uint(VP56RangeCoder *c, int bits)
285 {
286     int value = 0;
287
288     while (bits--) {
289         value = (value << 1) | vp8_rac_get(c);
290     }
291
292     return value;
293 }
294
295 // fixme: add 1 bit to all the calls to this?
296 static av_unused int vp8_rac_get_sint(VP56RangeCoder *c, int bits)
297 {
298     int v;
299
300     if (!vp8_rac_get(c))
301         return 0;
302
303     v = vp8_rac_get_uint(c, bits);
304
305     if (vp8_rac_get(c))
306         v = -v;
307
308     return v;
309 }
310
311 // P(7)
312 static av_unused int vp56_rac_gets_nn(VP56RangeCoder *c, int bits)
313 {
314     int v = vp56_rac_gets(c, 7) << 1;
315     return v + !v;
316 }
317
318 static av_unused int vp8_rac_get_nn(VP56RangeCoder *c)
319 {
320     int v = vp8_rac_get_uint(c, 7) << 1;
321     return v + !v;
322 }
323
324 static av_always_inline
325 int vp56_rac_get_tree(VP56RangeCoder *c,
326                       const VP56Tree *tree,
327                       const uint8_t *probs)
328 {
329     while (tree->val > 0) {
330         if (vp56_rac_get_prob(c, probs[tree->prob_idx]))
331             tree += tree->val;
332         else
333             tree++;
334     }
335     return -tree->val;
336 }
337
338 // how probabilities are associated with decisions is different I think
339 // well, the new scheme fits in the old but this way has one fewer branches per decision
340 static av_always_inline int vp8_rac_get_tree(VP56RangeCoder *c, const int8_t (*tree)[2],
341                                    const uint8_t *probs)
342 {
343     int i = 0;
344
345     do {
346         i = tree[i][vp56_rac_get_prob(c, probs[i])];
347     } while (i > 0);
348
349     return -i;
350 }
351
352 // DCTextra
353 static av_always_inline int vp8_rac_get_coeff(VP56RangeCoder *c, const uint8_t *prob)
354 {
355     int v = 0;
356
357     do {
358         v = (v<<1) + vp56_rac_get_prob(c, *prob++);
359     } while (*prob);
360
361     return v;
362 }
363
364 #endif /* AVCODEC_VP56_H */