]> git.sesse.net Git - ffmpeg/blob - libavcodec/bink.c
dcadsp: Add a new method, qmf_32_subbands
[ffmpeg] / libavcodec / bink.c
1 /*
2  * Bink video decoder
3  * Copyright (c) 2009 Konstantin Shishkov
4  * Copyright (C) 2011 Peter Ross <pross@xvid.org>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "libavutil/attributes.h"
24 #include "libavutil/imgutils.h"
25 #include "libavutil/internal.h"
26 #include "avcodec.h"
27 #include "dsputil.h"
28 #include "binkdata.h"
29 #include "binkdsp.h"
30 #include "hpeldsp.h"
31 #include "internal.h"
32 #include "mathops.h"
33
34 #define BITSTREAM_READER_LE
35 #include "get_bits.h"
36
37 #define BINK_FLAG_ALPHA 0x00100000
38 #define BINK_FLAG_GRAY  0x00020000
39
40 static VLC bink_trees[16];
41
42 /**
43  * IDs for different data types used in old version of Bink video codec
44  */
45 enum OldSources {
46     BINKB_SRC_BLOCK_TYPES = 0, ///< 8x8 block types
47     BINKB_SRC_COLORS,          ///< pixel values used for different block types
48     BINKB_SRC_PATTERN,         ///< 8-bit values for 2-colour pattern fill
49     BINKB_SRC_X_OFF,           ///< X components of motion value
50     BINKB_SRC_Y_OFF,           ///< Y components of motion value
51     BINKB_SRC_INTRA_DC,        ///< DC values for intrablocks with DCT
52     BINKB_SRC_INTER_DC,        ///< DC values for interblocks with DCT
53     BINKB_SRC_INTRA_Q,         ///< quantizer values for intrablocks with DCT
54     BINKB_SRC_INTER_Q,         ///< quantizer values for interblocks with DCT
55     BINKB_SRC_INTER_COEFS,     ///< number of coefficients for residue blocks
56
57     BINKB_NB_SRC
58 };
59
60 static const int binkb_bundle_sizes[BINKB_NB_SRC] = {
61     4, 8, 8, 5, 5, 11, 11, 4, 4, 7
62 };
63
64 static const int binkb_bundle_signed[BINKB_NB_SRC] = {
65     0, 0, 0, 1, 1, 0, 1, 0, 0, 0
66 };
67
68 static int32_t binkb_intra_quant[16][64];
69 static int32_t binkb_inter_quant[16][64];
70
71 /**
72  * IDs for different data types used in Bink video codec
73  */
74 enum Sources {
75     BINK_SRC_BLOCK_TYPES = 0, ///< 8x8 block types
76     BINK_SRC_SUB_BLOCK_TYPES, ///< 16x16 block types (a subset of 8x8 block types)
77     BINK_SRC_COLORS,          ///< pixel values used for different block types
78     BINK_SRC_PATTERN,         ///< 8-bit values for 2-colour pattern fill
79     BINK_SRC_X_OFF,           ///< X components of motion value
80     BINK_SRC_Y_OFF,           ///< Y components of motion value
81     BINK_SRC_INTRA_DC,        ///< DC values for intrablocks with DCT
82     BINK_SRC_INTER_DC,        ///< DC values for interblocks with DCT
83     BINK_SRC_RUN,             ///< run lengths for special fill block
84
85     BINK_NB_SRC
86 };
87
88 /**
89  * data needed to decode 4-bit Huffman-coded value
90  */
91 typedef struct Tree {
92     int     vlc_num;  ///< tree number (in bink_trees[])
93     uint8_t syms[16]; ///< leaf value to symbol mapping
94 } Tree;
95
96 #define GET_HUFF(gb, tree)  (tree).syms[get_vlc2(gb, bink_trees[(tree).vlc_num].table,\
97                                                  bink_trees[(tree).vlc_num].bits, 1)]
98
99 /**
100  * data structure used for decoding single Bink data type
101  */
102 typedef struct Bundle {
103     int     len;       ///< length of number of entries to decode (in bits)
104     Tree    tree;      ///< Huffman tree-related data
105     uint8_t *data;     ///< buffer for decoded symbols
106     uint8_t *data_end; ///< buffer end
107     uint8_t *cur_dec;  ///< pointer to the not yet decoded part of the buffer
108     uint8_t *cur_ptr;  ///< pointer to the data that is not read from buffer yet
109 } Bundle;
110
111 /*
112  * Decoder context
113  */
114 typedef struct BinkContext {
115     AVCodecContext *avctx;
116     DSPContext     dsp;
117     HpelDSPContext hdsp;
118     BinkDSPContext bdsp;
119     AVFrame        *last;
120     int            version;              ///< internal Bink file version
121     int            has_alpha;
122     int            swap_planes;
123
124     Bundle         bundle[BINKB_NB_SRC]; ///< bundles for decoding all data types
125     Tree           col_high[16];         ///< trees for decoding high nibble in "colours" data type
126     int            col_lastval;          ///< value of last decoded high nibble in "colours" data type
127 } BinkContext;
128
129 /**
130  * Bink video block types
131  */
132 enum BlockTypes {
133     SKIP_BLOCK = 0, ///< skipped block
134     SCALED_BLOCK,   ///< block has size 16x16
135     MOTION_BLOCK,   ///< block is copied from previous frame with some offset
136     RUN_BLOCK,      ///< block is composed from runs of colours with custom scan order
137     RESIDUE_BLOCK,  ///< motion block with some difference added
138     INTRA_BLOCK,    ///< intra DCT block
139     FILL_BLOCK,     ///< block is filled with single colour
140     INTER_BLOCK,    ///< motion block with DCT applied to the difference
141     PATTERN_BLOCK,  ///< block is filled with two colours following custom pattern
142     RAW_BLOCK,      ///< uncoded 8x8 block
143 };
144
145 /**
146  * Initialize length length in all bundles.
147  *
148  * @param c     decoder context
149  * @param width plane width
150  * @param bw    plane width in 8x8 blocks
151  */
152 static void init_lengths(BinkContext *c, int width, int bw)
153 {
154     width = FFALIGN(width, 8);
155
156     c->bundle[BINK_SRC_BLOCK_TYPES].len = av_log2((width >> 3) + 511) + 1;
157
158     c->bundle[BINK_SRC_SUB_BLOCK_TYPES].len = av_log2((width >> 4) + 511) + 1;
159
160     c->bundle[BINK_SRC_COLORS].len = av_log2(bw*64 + 511) + 1;
161
162     c->bundle[BINK_SRC_INTRA_DC].len =
163     c->bundle[BINK_SRC_INTER_DC].len =
164     c->bundle[BINK_SRC_X_OFF].len =
165     c->bundle[BINK_SRC_Y_OFF].len = av_log2((width >> 3) + 511) + 1;
166
167     c->bundle[BINK_SRC_PATTERN].len = av_log2((bw << 3) + 511) + 1;
168
169     c->bundle[BINK_SRC_RUN].len = av_log2(bw*48 + 511) + 1;
170 }
171
172 /**
173  * Allocate memory for bundles.
174  *
175  * @param c decoder context
176  */
177 static av_cold void init_bundles(BinkContext *c)
178 {
179     int bw, bh, blocks;
180     int i;
181
182     bw = (c->avctx->width  + 7) >> 3;
183     bh = (c->avctx->height + 7) >> 3;
184     blocks = bw * bh;
185
186     for (i = 0; i < BINKB_NB_SRC; i++) {
187         c->bundle[i].data = av_malloc(blocks * 64);
188         c->bundle[i].data_end = c->bundle[i].data + blocks * 64;
189     }
190 }
191
192 /**
193  * Free memory used by bundles.
194  *
195  * @param c decoder context
196  */
197 static av_cold void free_bundles(BinkContext *c)
198 {
199     int i;
200     for (i = 0; i < BINKB_NB_SRC; i++)
201         av_freep(&c->bundle[i].data);
202 }
203
204 /**
205  * Merge two consequent lists of equal size depending on bits read.
206  *
207  * @param gb   context for reading bits
208  * @param dst  buffer where merged list will be written to
209  * @param src  pointer to the head of the first list (the second lists starts at src+size)
210  * @param size input lists size
211  */
212 static void merge(GetBitContext *gb, uint8_t *dst, uint8_t *src, int size)
213 {
214     uint8_t *src2 = src + size;
215     int size2 = size;
216
217     do {
218         if (!get_bits1(gb)) {
219             *dst++ = *src++;
220             size--;
221         } else {
222             *dst++ = *src2++;
223             size2--;
224         }
225     } while (size && size2);
226
227     while (size--)
228         *dst++ = *src++;
229     while (size2--)
230         *dst++ = *src2++;
231 }
232
233 /**
234  * Read information about Huffman tree used to decode data.
235  *
236  * @param gb   context for reading bits
237  * @param tree pointer for storing tree data
238  */
239 static void read_tree(GetBitContext *gb, Tree *tree)
240 {
241     uint8_t tmp1[16] = { 0 }, tmp2[16], *in = tmp1, *out = tmp2;
242     int i, t, len;
243
244     tree->vlc_num = get_bits(gb, 4);
245     if (!tree->vlc_num) {
246         for (i = 0; i < 16; i++)
247             tree->syms[i] = i;
248         return;
249     }
250     if (get_bits1(gb)) {
251         len = get_bits(gb, 3);
252         for (i = 0; i <= len; i++) {
253             tree->syms[i] = get_bits(gb, 4);
254             tmp1[tree->syms[i]] = 1;
255         }
256         for (i = 0; i < 16 && len < 16 - 1; i++)
257             if (!tmp1[i])
258                 tree->syms[++len] = i;
259     } else {
260         len = get_bits(gb, 2);
261         for (i = 0; i < 16; i++)
262             in[i] = i;
263         for (i = 0; i <= len; i++) {
264             int size = 1 << i;
265             for (t = 0; t < 16; t += size << 1)
266                 merge(gb, out + t, in + t, size);
267             FFSWAP(uint8_t*, in, out);
268         }
269         memcpy(tree->syms, in, 16);
270     }
271 }
272
273 /**
274  * Prepare bundle for decoding data.
275  *
276  * @param gb          context for reading bits
277  * @param c           decoder context
278  * @param bundle_num  number of the bundle to initialize
279  */
280 static void read_bundle(GetBitContext *gb, BinkContext *c, int bundle_num)
281 {
282     int i;
283
284     if (bundle_num == BINK_SRC_COLORS) {
285         for (i = 0; i < 16; i++)
286             read_tree(gb, &c->col_high[i]);
287         c->col_lastval = 0;
288     }
289     if (bundle_num != BINK_SRC_INTRA_DC && bundle_num != BINK_SRC_INTER_DC)
290         read_tree(gb, &c->bundle[bundle_num].tree);
291     c->bundle[bundle_num].cur_dec =
292     c->bundle[bundle_num].cur_ptr = c->bundle[bundle_num].data;
293 }
294
295 /**
296  * common check before starting decoding bundle data
297  *
298  * @param gb context for reading bits
299  * @param b  bundle
300  * @param t  variable where number of elements to decode will be stored
301  */
302 #define CHECK_READ_VAL(gb, b, t) \
303     if (!b->cur_dec || (b->cur_dec > b->cur_ptr)) \
304         return 0; \
305     t = get_bits(gb, b->len); \
306     if (!t) { \
307         b->cur_dec = NULL; \
308         return 0; \
309     } \
310
311 static int read_runs(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
312 {
313     int t, v;
314     const uint8_t *dec_end;
315
316     CHECK_READ_VAL(gb, b, t);
317     dec_end = b->cur_dec + t;
318     if (dec_end > b->data_end) {
319         av_log(avctx, AV_LOG_ERROR, "Run value went out of bounds\n");
320         return AVERROR_INVALIDDATA;
321     }
322     if (get_bits1(gb)) {
323         v = get_bits(gb, 4);
324         memset(b->cur_dec, v, t);
325         b->cur_dec += t;
326     } else {
327         while (b->cur_dec < dec_end)
328             *b->cur_dec++ = GET_HUFF(gb, b->tree);
329     }
330     return 0;
331 }
332
333 static int read_motion_values(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
334 {
335     int t, sign, v;
336     const uint8_t *dec_end;
337
338     CHECK_READ_VAL(gb, b, t);
339     dec_end = b->cur_dec + t;
340     if (dec_end > b->data_end) {
341         av_log(avctx, AV_LOG_ERROR, "Too many motion values\n");
342         return AVERROR_INVALIDDATA;
343     }
344     if (get_bits1(gb)) {
345         v = get_bits(gb, 4);
346         if (v) {
347             sign = -get_bits1(gb);
348             v = (v ^ sign) - sign;
349         }
350         memset(b->cur_dec, v, t);
351         b->cur_dec += t;
352     } else {
353         while (b->cur_dec < dec_end) {
354             v = GET_HUFF(gb, b->tree);
355             if (v) {
356                 sign = -get_bits1(gb);
357                 v = (v ^ sign) - sign;
358             }
359             *b->cur_dec++ = v;
360         }
361     }
362     return 0;
363 }
364
365 static const uint8_t bink_rlelens[4] = { 4, 8, 12, 32 };
366
367 static int read_block_types(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
368 {
369     int t, v;
370     int last = 0;
371     const uint8_t *dec_end;
372
373     CHECK_READ_VAL(gb, b, t);
374     dec_end = b->cur_dec + t;
375     if (dec_end > b->data_end) {
376         av_log(avctx, AV_LOG_ERROR, "Too many block type values\n");
377         return AVERROR_INVALIDDATA;
378     }
379     if (get_bits1(gb)) {
380         v = get_bits(gb, 4);
381         memset(b->cur_dec, v, t);
382         b->cur_dec += t;
383     } else {
384         while (b->cur_dec < dec_end) {
385             v = GET_HUFF(gb, b->tree);
386             if (v < 12) {
387                 last = v;
388                 *b->cur_dec++ = v;
389             } else {
390                 int run = bink_rlelens[v - 12];
391
392                 if (dec_end - b->cur_dec < run)
393                     return AVERROR_INVALIDDATA;
394                 memset(b->cur_dec, last, run);
395                 b->cur_dec += run;
396             }
397         }
398     }
399     return 0;
400 }
401
402 static int read_patterns(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
403 {
404     int t, v;
405     const uint8_t *dec_end;
406
407     CHECK_READ_VAL(gb, b, t);
408     dec_end = b->cur_dec + t;
409     if (dec_end > b->data_end) {
410         av_log(avctx, AV_LOG_ERROR, "Too many pattern values\n");
411         return AVERROR_INVALIDDATA;
412     }
413     while (b->cur_dec < dec_end) {
414         v  = GET_HUFF(gb, b->tree);
415         v |= GET_HUFF(gb, b->tree) << 4;
416         *b->cur_dec++ = v;
417     }
418
419     return 0;
420 }
421
422 static int read_colors(GetBitContext *gb, Bundle *b, BinkContext *c)
423 {
424     int t, sign, v;
425     const uint8_t *dec_end;
426
427     CHECK_READ_VAL(gb, b, t);
428     dec_end = b->cur_dec + t;
429     if (dec_end > b->data_end) {
430         av_log(c->avctx, AV_LOG_ERROR, "Too many color values\n");
431         return AVERROR_INVALIDDATA;
432     }
433     if (get_bits1(gb)) {
434         c->col_lastval = GET_HUFF(gb, c->col_high[c->col_lastval]);
435         v = GET_HUFF(gb, b->tree);
436         v = (c->col_lastval << 4) | v;
437         if (c->version < 'i') {
438             sign = ((int8_t) v) >> 7;
439             v = ((v & 0x7F) ^ sign) - sign;
440             v += 0x80;
441         }
442         memset(b->cur_dec, v, t);
443         b->cur_dec += t;
444     } else {
445         while (b->cur_dec < dec_end) {
446             c->col_lastval = GET_HUFF(gb, c->col_high[c->col_lastval]);
447             v = GET_HUFF(gb, b->tree);
448             v = (c->col_lastval << 4) | v;
449             if (c->version < 'i') {
450                 sign = ((int8_t) v) >> 7;
451                 v = ((v & 0x7F) ^ sign) - sign;
452                 v += 0x80;
453             }
454             *b->cur_dec++ = v;
455         }
456     }
457     return 0;
458 }
459
460 /** number of bits used to store first DC value in bundle */
461 #define DC_START_BITS 11
462
463 static int read_dcs(AVCodecContext *avctx, GetBitContext *gb, Bundle *b,
464                     int start_bits, int has_sign)
465 {
466     int i, j, len, len2, bsize, sign, v, v2;
467     int16_t *dst     = (int16_t*)b->cur_dec;
468     int16_t *dst_end = (int16_t*)b->data_end;
469
470     CHECK_READ_VAL(gb, b, len);
471     v = get_bits(gb, start_bits - has_sign);
472     if (v && has_sign) {
473         sign = -get_bits1(gb);
474         v = (v ^ sign) - sign;
475     }
476     if (dst_end - dst < 1)
477         return AVERROR_INVALIDDATA;
478     *dst++ = v;
479     len--;
480     for (i = 0; i < len; i += 8) {
481         len2 = FFMIN(len - i, 8);
482         if (dst_end - dst < len2)
483             return AVERROR_INVALIDDATA;
484         bsize = get_bits(gb, 4);
485         if (bsize) {
486             for (j = 0; j < len2; j++) {
487                 v2 = get_bits(gb, bsize);
488                 if (v2) {
489                     sign = -get_bits1(gb);
490                     v2 = (v2 ^ sign) - sign;
491                 }
492                 v += v2;
493                 *dst++ = v;
494                 if (v < -32768 || v > 32767) {
495                     av_log(avctx, AV_LOG_ERROR, "DC value went out of bounds: %d\n", v);
496                     return AVERROR_INVALIDDATA;
497                 }
498             }
499         } else {
500             for (j = 0; j < len2; j++)
501                 *dst++ = v;
502         }
503     }
504
505     b->cur_dec = (uint8_t*)dst;
506     return 0;
507 }
508
509 /**
510  * Retrieve next value from bundle.
511  *
512  * @param c      decoder context
513  * @param bundle bundle number
514  */
515 static inline int get_value(BinkContext *c, int bundle)
516 {
517     int ret;
518
519     if (bundle < BINK_SRC_X_OFF || bundle == BINK_SRC_RUN)
520         return *c->bundle[bundle].cur_ptr++;
521     if (bundle == BINK_SRC_X_OFF || bundle == BINK_SRC_Y_OFF)
522         return (int8_t)*c->bundle[bundle].cur_ptr++;
523     ret = *(int16_t*)c->bundle[bundle].cur_ptr;
524     c->bundle[bundle].cur_ptr += 2;
525     return ret;
526 }
527
528 static av_cold void binkb_init_bundle(BinkContext *c, int bundle_num)
529 {
530     c->bundle[bundle_num].cur_dec =
531     c->bundle[bundle_num].cur_ptr = c->bundle[bundle_num].data;
532     c->bundle[bundle_num].len = 13;
533 }
534
535 static av_cold void binkb_init_bundles(BinkContext *c)
536 {
537     int i;
538     for (i = 0; i < BINKB_NB_SRC; i++)
539         binkb_init_bundle(c, i);
540 }
541
542 static int binkb_read_bundle(BinkContext *c, GetBitContext *gb, int bundle_num)
543 {
544     const int bits = binkb_bundle_sizes[bundle_num];
545     const int mask = 1 << (bits - 1);
546     const int issigned = binkb_bundle_signed[bundle_num];
547     Bundle *b = &c->bundle[bundle_num];
548     int i, len;
549
550     CHECK_READ_VAL(gb, b, len);
551     if (b->data_end - b->cur_dec < len * (1 + (bits > 8)))
552         return AVERROR_INVALIDDATA;
553     if (bits <= 8) {
554         if (!issigned) {
555             for (i = 0; i < len; i++)
556                 *b->cur_dec++ = get_bits(gb, bits);
557         } else {
558             for (i = 0; i < len; i++)
559                 *b->cur_dec++ = get_bits(gb, bits) - mask;
560         }
561     } else {
562         int16_t *dst = (int16_t*)b->cur_dec;
563
564         if (!issigned) {
565             for (i = 0; i < len; i++)
566                 *dst++ = get_bits(gb, bits);
567         } else {
568             for (i = 0; i < len; i++)
569                 *dst++ = get_bits(gb, bits) - mask;
570         }
571         b->cur_dec = (uint8_t*)dst;
572     }
573     return 0;
574 }
575
576 static inline int binkb_get_value(BinkContext *c, int bundle_num)
577 {
578     int16_t ret;
579     const int bits = binkb_bundle_sizes[bundle_num];
580
581     if (bits <= 8) {
582         int val = *c->bundle[bundle_num].cur_ptr++;
583         return binkb_bundle_signed[bundle_num] ? (int8_t)val : val;
584     }
585     ret = *(int16_t*)c->bundle[bundle_num].cur_ptr;
586     c->bundle[bundle_num].cur_ptr += 2;
587     return ret;
588 }
589
590 /**
591  * Read 8x8 block of DCT coefficients.
592  *
593  * @param gb       context for reading bits
594  * @param block    place for storing coefficients
595  * @param scan     scan order table
596  * @param quant_matrices quantization matrices
597  * @return 0 for success, negative value in other cases
598  */
599 static int read_dct_coeffs(GetBitContext *gb, int32_t block[64], const uint8_t *scan,
600                            const int32_t quant_matrices[16][64], int q)
601 {
602     int coef_list[128];
603     int mode_list[128];
604     int i, t, bits, ccoef, mode, sign;
605     int list_start = 64, list_end = 64, list_pos;
606     int coef_count = 0;
607     int coef_idx[64];
608     int quant_idx;
609     const int32_t *quant;
610
611     coef_list[list_end] = 4;  mode_list[list_end++] = 0;
612     coef_list[list_end] = 24; mode_list[list_end++] = 0;
613     coef_list[list_end] = 44; mode_list[list_end++] = 0;
614     coef_list[list_end] = 1;  mode_list[list_end++] = 3;
615     coef_list[list_end] = 2;  mode_list[list_end++] = 3;
616     coef_list[list_end] = 3;  mode_list[list_end++] = 3;
617
618     for (bits = get_bits(gb, 4) - 1; bits >= 0; bits--) {
619         list_pos = list_start;
620         while (list_pos < list_end) {
621             if (!(mode_list[list_pos] | coef_list[list_pos]) || !get_bits1(gb)) {
622                 list_pos++;
623                 continue;
624             }
625             ccoef = coef_list[list_pos];
626             mode  = mode_list[list_pos];
627             switch (mode) {
628             case 0:
629                 coef_list[list_pos] = ccoef + 4;
630                 mode_list[list_pos] = 1;
631             case 2:
632                 if (mode == 2) {
633                     coef_list[list_pos]   = 0;
634                     mode_list[list_pos++] = 0;
635                 }
636                 for (i = 0; i < 4; i++, ccoef++) {
637                     if (get_bits1(gb)) {
638                         coef_list[--list_start] = ccoef;
639                         mode_list[  list_start] = 3;
640                     } else {
641                         if (!bits) {
642                             t = 1 - (get_bits1(gb) << 1);
643                         } else {
644                             t = get_bits(gb, bits) | 1 << bits;
645                             sign = -get_bits1(gb);
646                             t = (t ^ sign) - sign;
647                         }
648                         block[scan[ccoef]] = t;
649                         coef_idx[coef_count++] = ccoef;
650                     }
651                 }
652                 break;
653             case 1:
654                 mode_list[list_pos] = 2;
655                 for (i = 0; i < 3; i++) {
656                     ccoef += 4;
657                     coef_list[list_end]   = ccoef;
658                     mode_list[list_end++] = 2;
659                 }
660                 break;
661             case 3:
662                 if (!bits) {
663                     t = 1 - (get_bits1(gb) << 1);
664                 } else {
665                     t = get_bits(gb, bits) | 1 << bits;
666                     sign = -get_bits1(gb);
667                     t = (t ^ sign) - sign;
668                 }
669                 block[scan[ccoef]] = t;
670                 coef_idx[coef_count++] = ccoef;
671                 coef_list[list_pos]   = 0;
672                 mode_list[list_pos++] = 0;
673                 break;
674             }
675         }
676     }
677
678     if (q == -1) {
679         quant_idx = get_bits(gb, 4);
680     } else {
681         quant_idx = q;
682     }
683
684     quant = quant_matrices[quant_idx];
685
686     block[0] = (block[0] * quant[0]) >> 11;
687     for (i = 0; i < coef_count; i++) {
688         int idx = coef_idx[i];
689         block[scan[idx]] = (block[scan[idx]] * quant[idx]) >> 11;
690     }
691
692     return 0;
693 }
694
695 /**
696  * Read 8x8 block with residue after motion compensation.
697  *
698  * @param gb          context for reading bits
699  * @param block       place to store read data
700  * @param masks_count number of masks to decode
701  * @return 0 on success, negative value in other cases
702  */
703 static int read_residue(GetBitContext *gb, int16_t block[64], int masks_count)
704 {
705     int coef_list[128];
706     int mode_list[128];
707     int i, sign, mask, ccoef, mode;
708     int list_start = 64, list_end = 64, list_pos;
709     int nz_coeff[64];
710     int nz_coeff_count = 0;
711
712     coef_list[list_end] =  4; mode_list[list_end++] = 0;
713     coef_list[list_end] = 24; mode_list[list_end++] = 0;
714     coef_list[list_end] = 44; mode_list[list_end++] = 0;
715     coef_list[list_end] =  0; mode_list[list_end++] = 2;
716
717     for (mask = 1 << get_bits(gb, 3); mask; mask >>= 1) {
718         for (i = 0; i < nz_coeff_count; i++) {
719             if (!get_bits1(gb))
720                 continue;
721             if (block[nz_coeff[i]] < 0)
722                 block[nz_coeff[i]] -= mask;
723             else
724                 block[nz_coeff[i]] += mask;
725             masks_count--;
726             if (masks_count < 0)
727                 return 0;
728         }
729         list_pos = list_start;
730         while (list_pos < list_end) {
731             if (!(coef_list[list_pos] | mode_list[list_pos]) || !get_bits1(gb)) {
732                 list_pos++;
733                 continue;
734             }
735             ccoef = coef_list[list_pos];
736             mode  = mode_list[list_pos];
737             switch (mode) {
738             case 0:
739                 coef_list[list_pos] = ccoef + 4;
740                 mode_list[list_pos] = 1;
741             case 2:
742                 if (mode == 2) {
743                     coef_list[list_pos]   = 0;
744                     mode_list[list_pos++] = 0;
745                 }
746                 for (i = 0; i < 4; i++, ccoef++) {
747                     if (get_bits1(gb)) {
748                         coef_list[--list_start] = ccoef;
749                         mode_list[  list_start] = 3;
750                     } else {
751                         nz_coeff[nz_coeff_count++] = bink_scan[ccoef];
752                         sign = -get_bits1(gb);
753                         block[bink_scan[ccoef]] = (mask ^ sign) - sign;
754                         masks_count--;
755                         if (masks_count < 0)
756                             return 0;
757                     }
758                 }
759                 break;
760             case 1:
761                 mode_list[list_pos] = 2;
762                 for (i = 0; i < 3; i++) {
763                     ccoef += 4;
764                     coef_list[list_end]   = ccoef;
765                     mode_list[list_end++] = 2;
766                 }
767                 break;
768             case 3:
769                 nz_coeff[nz_coeff_count++] = bink_scan[ccoef];
770                 sign = -get_bits1(gb);
771                 block[bink_scan[ccoef]] = (mask ^ sign) - sign;
772                 coef_list[list_pos]   = 0;
773                 mode_list[list_pos++] = 0;
774                 masks_count--;
775                 if (masks_count < 0)
776                     return 0;
777                 break;
778             }
779         }
780     }
781
782     return 0;
783 }
784
785 /**
786  * Copy 8x8 block from source to destination, where src and dst may be overlapped
787  */
788 static inline void put_pixels8x8_overlapped(uint8_t *dst, uint8_t *src, int stride)
789 {
790     uint8_t tmp[64];
791     int i;
792     for (i = 0; i < 8; i++)
793         memcpy(tmp + i*8, src + i*stride, 8);
794     for (i = 0; i < 8; i++)
795         memcpy(dst + i*stride, tmp + i*8, 8);
796 }
797
798 static int binkb_decode_plane(BinkContext *c, AVFrame *frame, GetBitContext *gb,
799                               int plane_idx, int is_key, int is_chroma)
800 {
801     int blk, ret;
802     int i, j, bx, by;
803     uint8_t *dst, *ref, *ref_start, *ref_end;
804     int v, col[2];
805     const uint8_t *scan;
806     int xoff, yoff;
807     LOCAL_ALIGNED_16(int16_t, block, [64]);
808     LOCAL_ALIGNED_16(int32_t, dctblock, [64]);
809     int coordmap[64];
810     int ybias = is_key ? -15 : 0;
811     int qp;
812
813     const int stride = frame->linesize[plane_idx];
814     int bw = is_chroma ? (c->avctx->width  + 15) >> 4 : (c->avctx->width  + 7) >> 3;
815     int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
816
817     binkb_init_bundles(c);
818     ref_start = frame->data[plane_idx];
819     ref_end   = frame->data[plane_idx] + (bh * frame->linesize[plane_idx] + bw) * 8;
820
821     for (i = 0; i < 64; i++)
822         coordmap[i] = (i & 7) + (i >> 3) * stride;
823
824     for (by = 0; by < bh; by++) {
825         for (i = 0; i < BINKB_NB_SRC; i++) {
826             if ((ret = binkb_read_bundle(c, gb, i)) < 0)
827                 return ret;
828         }
829
830         dst  = frame->data[plane_idx]  + 8*by*stride;
831         for (bx = 0; bx < bw; bx++, dst += 8) {
832             blk = binkb_get_value(c, BINKB_SRC_BLOCK_TYPES);
833             switch (blk) {
834             case 0:
835                 break;
836             case 1:
837                 scan = bink_patterns[get_bits(gb, 4)];
838                 i = 0;
839                 do {
840                     int mode, run;
841
842                     mode = get_bits1(gb);
843                     run = get_bits(gb, binkb_runbits[i]) + 1;
844
845                     i += run;
846                     if (i > 64) {
847                         av_log(c->avctx, AV_LOG_ERROR, "Run went out of bounds\n");
848                         return AVERROR_INVALIDDATA;
849                     }
850                     if (mode) {
851                         v = binkb_get_value(c, BINKB_SRC_COLORS);
852                         for (j = 0; j < run; j++)
853                             dst[coordmap[*scan++]] = v;
854                     } else {
855                         for (j = 0; j < run; j++)
856                             dst[coordmap[*scan++]] = binkb_get_value(c, BINKB_SRC_COLORS);
857                     }
858                 } while (i < 63);
859                 if (i == 63)
860                     dst[coordmap[*scan++]] = binkb_get_value(c, BINKB_SRC_COLORS);
861                 break;
862             case 2:
863                 memset(dctblock, 0, sizeof(*dctblock) * 64);
864                 dctblock[0] = binkb_get_value(c, BINKB_SRC_INTRA_DC);
865                 qp = binkb_get_value(c, BINKB_SRC_INTRA_Q);
866                 read_dct_coeffs(gb, dctblock, bink_scan, binkb_intra_quant, qp);
867                 c->bdsp.idct_put(dst, stride, dctblock);
868                 break;
869             case 3:
870                 xoff = binkb_get_value(c, BINKB_SRC_X_OFF);
871                 yoff = binkb_get_value(c, BINKB_SRC_Y_OFF) + ybias;
872                 ref = dst + xoff + yoff * stride;
873                 if (ref < ref_start || ref + 8*stride > ref_end) {
874                     av_log(c->avctx, AV_LOG_WARNING, "Reference block is out of bounds\n");
875                 } else if (ref + 8*stride < dst || ref >= dst + 8*stride) {
876                     c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
877                 } else {
878                     put_pixels8x8_overlapped(dst, ref, stride);
879                 }
880                 c->dsp.clear_block(block);
881                 v = binkb_get_value(c, BINKB_SRC_INTER_COEFS);
882                 read_residue(gb, block, v);
883                 c->dsp.add_pixels8(dst, block, stride);
884                 break;
885             case 4:
886                 xoff = binkb_get_value(c, BINKB_SRC_X_OFF);
887                 yoff = binkb_get_value(c, BINKB_SRC_Y_OFF) + ybias;
888                 ref = dst + xoff + yoff * stride;
889                 if (ref < ref_start || ref + 8 * stride > ref_end) {
890                     av_log(c->avctx, AV_LOG_WARNING, "Reference block is out of bounds\n");
891                 } else if (ref + 8*stride < dst || ref >= dst + 8*stride) {
892                     c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
893                 } else {
894                     put_pixels8x8_overlapped(dst, ref, stride);
895                 }
896                 memset(dctblock, 0, sizeof(*dctblock) * 64);
897                 dctblock[0] = binkb_get_value(c, BINKB_SRC_INTER_DC);
898                 qp = binkb_get_value(c, BINKB_SRC_INTER_Q);
899                 read_dct_coeffs(gb, dctblock, bink_scan, binkb_inter_quant, qp);
900                 c->bdsp.idct_add(dst, stride, dctblock);
901                 break;
902             case 5:
903                 v = binkb_get_value(c, BINKB_SRC_COLORS);
904                 c->dsp.fill_block_tab[1](dst, v, stride, 8);
905                 break;
906             case 6:
907                 for (i = 0; i < 2; i++)
908                     col[i] = binkb_get_value(c, BINKB_SRC_COLORS);
909                 for (i = 0; i < 8; i++) {
910                     v = binkb_get_value(c, BINKB_SRC_PATTERN);
911                     for (j = 0; j < 8; j++, v >>= 1)
912                         dst[i*stride + j] = col[v & 1];
913                 }
914                 break;
915             case 7:
916                 xoff = binkb_get_value(c, BINKB_SRC_X_OFF);
917                 yoff = binkb_get_value(c, BINKB_SRC_Y_OFF) + ybias;
918                 ref = dst + xoff + yoff * stride;
919                 if (ref < ref_start || ref + 8 * stride > ref_end) {
920                     av_log(c->avctx, AV_LOG_WARNING, "Reference block is out of bounds\n");
921                 } else if (ref + 8*stride < dst || ref >= dst + 8*stride) {
922                     c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
923                 } else {
924                     put_pixels8x8_overlapped(dst, ref, stride);
925                 }
926                 break;
927             case 8:
928                 for (i = 0; i < 8; i++)
929                     memcpy(dst + i*stride, c->bundle[BINKB_SRC_COLORS].cur_ptr + i*8, 8);
930                 c->bundle[BINKB_SRC_COLORS].cur_ptr += 64;
931                 break;
932             default:
933                 av_log(c->avctx, AV_LOG_ERROR, "Unknown block type %d\n", blk);
934                 return AVERROR_INVALIDDATA;
935             }
936         }
937     }
938     if (get_bits_count(gb) & 0x1F) //next plane data starts at 32-bit boundary
939         skip_bits_long(gb, 32 - (get_bits_count(gb) & 0x1F));
940
941     return 0;
942 }
943
944 static int bink_decode_plane(BinkContext *c, AVFrame *frame, GetBitContext *gb,
945                              int plane_idx, int is_chroma)
946 {
947     int blk, ret;
948     int i, j, bx, by;
949     uint8_t *dst, *prev, *ref, *ref_start, *ref_end;
950     int v, col[2];
951     const uint8_t *scan;
952     int xoff, yoff;
953     LOCAL_ALIGNED_16(int16_t, block, [64]);
954     LOCAL_ALIGNED_16(uint8_t, ublock, [64]);
955     LOCAL_ALIGNED_16(int32_t, dctblock, [64]);
956     int coordmap[64];
957
958     const int stride = frame->linesize[plane_idx];
959     int bw = is_chroma ? (c->avctx->width  + 15) >> 4 : (c->avctx->width  + 7) >> 3;
960     int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;
961     int width = c->avctx->width >> is_chroma;
962
963     init_lengths(c, FFMAX(width, 8), bw);
964     for (i = 0; i < BINK_NB_SRC; i++)
965         read_bundle(gb, c, i);
966
967     ref_start = c->last->data[plane_idx] ? c->last->data[plane_idx]
968                                          : frame->data[plane_idx];
969     ref_end   = ref_start
970                 + (bw - 1 + c->last->linesize[plane_idx] * (bh - 1)) * 8;
971
972     for (i = 0; i < 64; i++)
973         coordmap[i] = (i & 7) + (i >> 3) * stride;
974
975     for (by = 0; by < bh; by++) {
976         if ((ret = read_block_types(c->avctx, gb, &c->bundle[BINK_SRC_BLOCK_TYPES])) < 0)
977             return ret;
978         if ((ret = read_block_types(c->avctx, gb, &c->bundle[BINK_SRC_SUB_BLOCK_TYPES])) < 0)
979             return ret;
980         if ((ret = read_colors(gb, &c->bundle[BINK_SRC_COLORS], c)) < 0)
981             return ret;
982         if ((ret = read_patterns(c->avctx, gb, &c->bundle[BINK_SRC_PATTERN])) < 0)
983             return ret;
984         if ((ret = read_motion_values(c->avctx, gb, &c->bundle[BINK_SRC_X_OFF])) < 0)
985             return ret;
986         if ((ret = read_motion_values(c->avctx, gb, &c->bundle[BINK_SRC_Y_OFF])) < 0)
987             return ret;
988         if ((ret = read_dcs(c->avctx, gb, &c->bundle[BINK_SRC_INTRA_DC], DC_START_BITS, 0)) < 0)
989             return ret;
990         if ((ret = read_dcs(c->avctx, gb, &c->bundle[BINK_SRC_INTER_DC], DC_START_BITS, 1)) < 0)
991             return ret;
992         if ((ret = read_runs(c->avctx, gb, &c->bundle[BINK_SRC_RUN])) < 0)
993             return ret;
994
995         if (by == bh)
996             break;
997         dst  = frame->data[plane_idx]  + 8*by*stride;
998         prev = (c->last->data[plane_idx] ? c->last->data[plane_idx]
999                                          : frame->data[plane_idx]) + 8*by*stride;
1000         for (bx = 0; bx < bw; bx++, dst += 8, prev += 8) {
1001             blk = get_value(c, BINK_SRC_BLOCK_TYPES);
1002             // 16x16 block type on odd line means part of the already decoded block, so skip it
1003             if ((by & 1) && blk == SCALED_BLOCK) {
1004                 bx++;
1005                 dst  += 8;
1006                 prev += 8;
1007                 continue;
1008             }
1009             switch (blk) {
1010             case SKIP_BLOCK:
1011                 c->hdsp.put_pixels_tab[1][0](dst, prev, stride, 8);
1012                 break;
1013             case SCALED_BLOCK:
1014                 blk = get_value(c, BINK_SRC_SUB_BLOCK_TYPES);
1015                 switch (blk) {
1016                 case RUN_BLOCK:
1017                     scan = bink_patterns[get_bits(gb, 4)];
1018                     i = 0;
1019                     do {
1020                         int run = get_value(c, BINK_SRC_RUN) + 1;
1021
1022                         i += run;
1023                         if (i > 64) {
1024                             av_log(c->avctx, AV_LOG_ERROR, "Run went out of bounds\n");
1025                             return AVERROR_INVALIDDATA;
1026                         }
1027                         if (get_bits1(gb)) {
1028                             v = get_value(c, BINK_SRC_COLORS);
1029                             for (j = 0; j < run; j++)
1030                                 ublock[*scan++] = v;
1031                         } else {
1032                             for (j = 0; j < run; j++)
1033                                 ublock[*scan++] = get_value(c, BINK_SRC_COLORS);
1034                         }
1035                     } while (i < 63);
1036                     if (i == 63)
1037                         ublock[*scan++] = get_value(c, BINK_SRC_COLORS);
1038                     break;
1039                 case INTRA_BLOCK:
1040                     memset(dctblock, 0, sizeof(*dctblock) * 64);
1041                     dctblock[0] = get_value(c, BINK_SRC_INTRA_DC);
1042                     read_dct_coeffs(gb, dctblock, bink_scan, bink_intra_quant, -1);
1043                     c->bdsp.idct_put(ublock, 8, dctblock);
1044                     break;
1045                 case FILL_BLOCK:
1046                     v = get_value(c, BINK_SRC_COLORS);
1047                     c->dsp.fill_block_tab[0](dst, v, stride, 16);
1048                     break;
1049                 case PATTERN_BLOCK:
1050                     for (i = 0; i < 2; i++)
1051                         col[i] = get_value(c, BINK_SRC_COLORS);
1052                     for (j = 0; j < 8; j++) {
1053                         v = get_value(c, BINK_SRC_PATTERN);
1054                         for (i = 0; i < 8; i++, v >>= 1)
1055                             ublock[i + j*8] = col[v & 1];
1056                     }
1057                     break;
1058                 case RAW_BLOCK:
1059                     for (j = 0; j < 8; j++)
1060                         for (i = 0; i < 8; i++)
1061                             ublock[i + j*8] = get_value(c, BINK_SRC_COLORS);
1062                     break;
1063                 default:
1064                     av_log(c->avctx, AV_LOG_ERROR, "Incorrect 16x16 block type %d\n", blk);
1065                     return AVERROR_INVALIDDATA;
1066                 }
1067                 if (blk != FILL_BLOCK)
1068                 c->bdsp.scale_block(ublock, dst, stride);
1069                 bx++;
1070                 dst  += 8;
1071                 prev += 8;
1072                 break;
1073             case MOTION_BLOCK:
1074                 xoff = get_value(c, BINK_SRC_X_OFF);
1075                 yoff = get_value(c, BINK_SRC_Y_OFF);
1076                 ref = prev + xoff + yoff * stride;
1077                 if (ref < ref_start || ref > ref_end) {
1078                     av_log(c->avctx, AV_LOG_ERROR, "Copy out of bounds @%d, %d\n",
1079                            bx*8 + xoff, by*8 + yoff);
1080                     return AVERROR_INVALIDDATA;
1081                 }
1082                 c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
1083                 break;
1084             case RUN_BLOCK:
1085                 scan = bink_patterns[get_bits(gb, 4)];
1086                 i = 0;
1087                 do {
1088                     int run = get_value(c, BINK_SRC_RUN) + 1;
1089
1090                     i += run;
1091                     if (i > 64) {
1092                         av_log(c->avctx, AV_LOG_ERROR, "Run went out of bounds\n");
1093                         return AVERROR_INVALIDDATA;
1094                     }
1095                     if (get_bits1(gb)) {
1096                         v = get_value(c, BINK_SRC_COLORS);
1097                         for (j = 0; j < run; j++)
1098                             dst[coordmap[*scan++]] = v;
1099                     } else {
1100                         for (j = 0; j < run; j++)
1101                             dst[coordmap[*scan++]] = get_value(c, BINK_SRC_COLORS);
1102                     }
1103                 } while (i < 63);
1104                 if (i == 63)
1105                     dst[coordmap[*scan++]] = get_value(c, BINK_SRC_COLORS);
1106                 break;
1107             case RESIDUE_BLOCK:
1108                 xoff = get_value(c, BINK_SRC_X_OFF);
1109                 yoff = get_value(c, BINK_SRC_Y_OFF);
1110                 ref = prev + xoff + yoff * stride;
1111                 if (ref < ref_start || ref > ref_end) {
1112                     av_log(c->avctx, AV_LOG_ERROR, "Copy out of bounds @%d, %d\n",
1113                            bx*8 + xoff, by*8 + yoff);
1114                     return AVERROR_INVALIDDATA;
1115                 }
1116                 c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
1117                 c->dsp.clear_block(block);
1118                 v = get_bits(gb, 7);
1119                 read_residue(gb, block, v);
1120                 c->dsp.add_pixels8(dst, block, stride);
1121                 break;
1122             case INTRA_BLOCK:
1123                 memset(dctblock, 0, sizeof(*dctblock) * 64);
1124                 dctblock[0] = get_value(c, BINK_SRC_INTRA_DC);
1125                 read_dct_coeffs(gb, dctblock, bink_scan, bink_intra_quant, -1);
1126                 c->bdsp.idct_put(dst, stride, dctblock);
1127                 break;
1128             case FILL_BLOCK:
1129                 v = get_value(c, BINK_SRC_COLORS);
1130                 c->dsp.fill_block_tab[1](dst, v, stride, 8);
1131                 break;
1132             case INTER_BLOCK:
1133                 xoff = get_value(c, BINK_SRC_X_OFF);
1134                 yoff = get_value(c, BINK_SRC_Y_OFF);
1135                 ref = prev + xoff + yoff * stride;
1136                 c->hdsp.put_pixels_tab[1][0](dst, ref, stride, 8);
1137                 memset(dctblock, 0, sizeof(*dctblock) * 64);
1138                 dctblock[0] = get_value(c, BINK_SRC_INTER_DC);
1139                 read_dct_coeffs(gb, dctblock, bink_scan, bink_inter_quant, -1);
1140                 c->bdsp.idct_add(dst, stride, dctblock);
1141                 break;
1142             case PATTERN_BLOCK:
1143                 for (i = 0; i < 2; i++)
1144                     col[i] = get_value(c, BINK_SRC_COLORS);
1145                 for (i = 0; i < 8; i++) {
1146                     v = get_value(c, BINK_SRC_PATTERN);
1147                     for (j = 0; j < 8; j++, v >>= 1)
1148                         dst[i*stride + j] = col[v & 1];
1149                 }
1150                 break;
1151             case RAW_BLOCK:
1152                 for (i = 0; i < 8; i++)
1153                     memcpy(dst + i*stride, c->bundle[BINK_SRC_COLORS].cur_ptr + i*8, 8);
1154                 c->bundle[BINK_SRC_COLORS].cur_ptr += 64;
1155                 break;
1156             default:
1157                 av_log(c->avctx, AV_LOG_ERROR, "Unknown block type %d\n", blk);
1158                 return AVERROR_INVALIDDATA;
1159             }
1160         }
1161     }
1162     if (get_bits_count(gb) & 0x1F) //next plane data starts at 32-bit boundary
1163         skip_bits_long(gb, 32 - (get_bits_count(gb) & 0x1F));
1164
1165     return 0;
1166 }
1167
1168 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *pkt)
1169 {
1170     BinkContext * const c = avctx->priv_data;
1171     AVFrame *frame = data;
1172     GetBitContext gb;
1173     int plane, plane_idx, ret;
1174     int bits_count = pkt->size << 3;
1175
1176     if (c->version > 'b') {
1177         if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) {
1178             av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1179             return ret;
1180         }
1181     } else {
1182         if ((ret = ff_reget_buffer(avctx, c->last)) < 0) {
1183             av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
1184             return ret;
1185         }
1186         if ((ret = av_frame_ref(frame, c->last)) < 0)
1187             return ret;
1188     }
1189
1190     init_get_bits(&gb, pkt->data, bits_count);
1191     if (c->has_alpha) {
1192         if (c->version >= 'i')
1193             skip_bits_long(&gb, 32);
1194         if ((ret = bink_decode_plane(c, frame, &gb, 3, 0)) < 0)
1195             return ret;
1196     }
1197     if (c->version >= 'i')
1198         skip_bits_long(&gb, 32);
1199
1200     for (plane = 0; plane < 3; plane++) {
1201         plane_idx = (!plane || !c->swap_planes) ? plane : (plane ^ 3);
1202
1203         if (c->version > 'b') {
1204             if ((ret = bink_decode_plane(c, frame, &gb, plane_idx, !!plane)) < 0)
1205                 return ret;
1206         } else {
1207             if ((ret = binkb_decode_plane(c, frame, &gb, plane_idx,
1208                                           !avctx->frame_number, !!plane)) < 0)
1209                 return ret;
1210         }
1211         if (get_bits_count(&gb) >= bits_count)
1212             break;
1213     }
1214     emms_c();
1215
1216     if (c->version > 'b') {
1217         av_frame_unref(c->last);
1218         if ((ret = av_frame_ref(c->last, frame)) < 0)
1219             return ret;
1220     }
1221
1222     *got_frame = 1;
1223
1224     /* always report that the buffer was completely consumed */
1225     return pkt->size;
1226 }
1227
1228 /**
1229  * Caclulate quantization tables for version b
1230  */
1231 static av_cold void binkb_calc_quant(void)
1232 {
1233     uint8_t inv_bink_scan[64];
1234     double s[64];
1235     int i, j;
1236
1237     for (j = 0; j < 8; j++) {
1238         for (i = 0; i < 8; i++) {
1239             if (j && j != 4)
1240                if (i && i != 4)
1241                    s[j*8 + i] = cos(j * M_PI/16.0) * cos(i * M_PI/16.0) * 2.0;
1242                else
1243                    s[j*8 + i] = cos(j * M_PI/16.0) * sqrt(2.0);
1244             else
1245                if (i && i != 4)
1246                    s[j*8 + i] = cos(i * M_PI/16.0) * sqrt(2.0);
1247                else
1248                    s[j*8 + i] = 1.0;
1249         }
1250     }
1251
1252     for (i = 0; i < 64; i++)
1253         inv_bink_scan[bink_scan[i]] = i;
1254
1255     for (j = 0; j < 16; j++) {
1256         for (i = 0; i < 64; i++) {
1257             int k = inv_bink_scan[i];
1258             if (s[i] == 1.0) {
1259                 binkb_intra_quant[j][k] = (1L << 12) * binkb_intra_seed[i] *
1260                                           binkb_num[j]/binkb_den[j];
1261                 binkb_inter_quant[j][k] = (1L << 12) * binkb_inter_seed[i] *
1262                                           binkb_num[j]/binkb_den[j];
1263             } else {
1264                 binkb_intra_quant[j][k] = (1L << 12) * binkb_intra_seed[i] * s[i] *
1265                                           binkb_num[j]/(double)binkb_den[j];
1266                 binkb_inter_quant[j][k] = (1L << 12) * binkb_inter_seed[i] * s[i] *
1267                                           binkb_num[j]/(double)binkb_den[j];
1268             }
1269         }
1270     }
1271 }
1272
1273 static av_cold int decode_init(AVCodecContext *avctx)
1274 {
1275     BinkContext * const c = avctx->priv_data;
1276     static VLC_TYPE table[16 * 128][2];
1277     static int binkb_initialised = 0;
1278     int i, ret;
1279     int flags;
1280
1281     c->version = avctx->codec_tag >> 24;
1282     if (avctx->extradata_size < 4) {
1283         av_log(avctx, AV_LOG_ERROR, "Extradata missing or too short\n");
1284         return AVERROR_INVALIDDATA;
1285     }
1286     flags = AV_RL32(avctx->extradata);
1287     c->has_alpha = flags & BINK_FLAG_ALPHA;
1288     c->swap_planes = c->version >= 'h';
1289     if (!bink_trees[15].table) {
1290         for (i = 0; i < 16; i++) {
1291             const int maxbits = bink_tree_lens[i][15];
1292             bink_trees[i].table = table + i*128;
1293             bink_trees[i].table_allocated = 1 << maxbits;
1294             init_vlc(&bink_trees[i], maxbits, 16,
1295                      bink_tree_lens[i], 1, 1,
1296                      bink_tree_bits[i], 1, 1, INIT_VLC_USE_NEW_STATIC | INIT_VLC_LE);
1297         }
1298     }
1299     c->avctx = avctx;
1300
1301     c->last = av_frame_alloc();
1302     if (!c->last)
1303         return AVERROR(ENOMEM);
1304
1305     if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0)
1306         return ret;
1307
1308     avctx->pix_fmt = c->has_alpha ? AV_PIX_FMT_YUVA420P : AV_PIX_FMT_YUV420P;
1309
1310     ff_dsputil_init(&c->dsp, avctx);
1311     ff_hpeldsp_init(&c->hdsp, avctx->flags);
1312     ff_binkdsp_init(&c->bdsp);
1313
1314     init_bundles(c);
1315
1316     if (c->version == 'b') {
1317         if (!binkb_initialised) {
1318             binkb_calc_quant();
1319             binkb_initialised = 1;
1320         }
1321     }
1322
1323     return 0;
1324 }
1325
1326 static av_cold int decode_end(AVCodecContext *avctx)
1327 {
1328     BinkContext * const c = avctx->priv_data;
1329
1330     av_frame_free(&c->last);
1331
1332     free_bundles(c);
1333     return 0;
1334 }
1335
1336 AVCodec ff_bink_decoder = {
1337     .name           = "binkvideo",
1338     .type           = AVMEDIA_TYPE_VIDEO,
1339     .id             = AV_CODEC_ID_BINKVIDEO,
1340     .priv_data_size = sizeof(BinkContext),
1341     .init           = decode_init,
1342     .close          = decode_end,
1343     .decode         = decode_frame,
1344     .long_name      = NULL_IF_CONFIG_SMALL("Bink video"),
1345     .capabilities   = CODEC_CAP_DR1,
1346 };