FFmpeg
Loading...
Searching...
No Matches
truemotion2.c
Go to the documentation of this file.
1/*
2 * Duck/ON2 TrueMotion 2 Decoder
3 * Copyright (c) 2005 Konstantin Shishkov
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * Duck TrueMotion2 decoder.
25 */
26
27#include <inttypes.h>
28
29#include "libavutil/mem.h"
30#include "avcodec.h"
31#include "bswapdsp.h"
32#include "bytestream.h"
33#include "codec_internal.h"
34#include "decode.h"
35#include "get_bits.h"
36
37#define TM2_ESCAPE 0x80000000
38#define TM2_DELTAS 64
39
40/* Huffman-coded streams of different types of blocks */
51
52/* Block types */
62
63typedef struct TM2Context {
66
68 int error;
70
71 uint8_t *buffer;
73
74 /* TM2 streams */
79 /* for blocks decoding */
80 int D[4];
81 int CD[4];
82 int *last;
83 int *clast;
84
85 /* data for current and previous frame */
87 int *Y1, *U1, *V1, *Y2, *U2, *V2;
89 int cur;
91
92/**
93* Huffman codes for each of streams
94*/
95typedef struct TM2Codes {
96 VLC vlc; ///< table for FFmpeg bitstream reader
97 int bits;
98 int *recode; ///< table for converting from code indexes to values
99 int length;
100} TM2Codes;
101
102/**
103* structure for gathering Huffman codes information
104*/
105typedef struct TM2Huff {
106 int val_bits; ///< length of literal
107 int max_bits; ///< maximum length of code
108 int min_bits; ///< minimum length of code
109 int nodes; ///< total number of nodes in tree
110 int num; ///< current number filled
111 int max_num; ///< total number of codes
112 int *nums; ///< literals
113 uint8_t *lens; ///< codelengths
114} TM2Huff;
115
116/**
117 *
118 * @returns the length of the longest code or an AVERROR code
119 */
120static int tm2_read_tree(TM2Context *ctx, int length, TM2Huff *huff)
121{
122 int ret, ret2;
123 if (length > huff->max_bits) {
124 av_log(ctx->avctx, AV_LOG_ERROR, "Tree exceeded its given depth (%i)\n",
125 huff->max_bits);
126 return AVERROR_INVALIDDATA;
127 }
128
129 if (!get_bits1(&ctx->gb)) { /* literal */
130 if (length == 0) {
131 length = 1;
132 }
133 if (huff->num >= huff->max_num) {
134 av_log(ctx->avctx, AV_LOG_DEBUG, "Too many literals\n");
135 return AVERROR_INVALIDDATA;
136 }
137 huff->nums[huff->num] = get_bits_long(&ctx->gb, huff->val_bits);
138 huff->lens[huff->num] = length;
139 huff->num++;
140 return length;
141 } else { /* non-terminal node */
142 if ((ret2 = tm2_read_tree(ctx, length + 1, huff)) < 0)
143 return ret2;
144 if ((ret = tm2_read_tree(ctx, length + 1, huff)) < 0)
145 return ret;
146 }
147 return FFMAX(ret, ret2);
148}
149
151{
152 TM2Huff huff;
153 int res = 0;
154
155 huff.val_bits = get_bits(&ctx->gb, 5);
156 huff.max_bits = get_bits(&ctx->gb, 5);
157 huff.min_bits = get_bits(&ctx->gb, 5);
158 huff.nodes = get_bits(&ctx->gb, 17);
159 huff.num = 0;
160
161 /* check for correct codes parameters */
162 if ((huff.val_bits < 1) || (huff.val_bits > 32) ||
163 (huff.max_bits < 0) || (huff.max_bits > 25)) {
164 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect tree parameters - literal "
165 "length: %i, max code length: %i\n", huff.val_bits, huff.max_bits);
166 return AVERROR_INVALIDDATA;
167 }
168 if ((huff.nodes <= 0) || (huff.nodes > 0x10000)) {
169 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of Huffman tree "
170 "nodes: %i\n", huff.nodes);
171 return AVERROR_INVALIDDATA;
172 }
173 /* one-node tree */
174 if (huff.max_bits == 0)
175 huff.max_bits = 1;
176
177 /* allocate space for codes - it is exactly ceil(nodes / 2) entries */
178 huff.max_num = (huff.nodes + 1) >> 1;
179 huff.nums = av_calloc(huff.max_num, sizeof(int));
180 huff.lens = av_mallocz(huff.max_num);
181
182 if (!huff.nums || !huff.lens) {
183 res = AVERROR(ENOMEM);
184 goto out;
185 }
186
187 res = tm2_read_tree(ctx, 0, &huff);
188
189 if (res >= 0 && res != huff.max_bits) {
190 av_log(ctx->avctx, AV_LOG_ERROR, "Got less bits than expected: %i of %i\n",
191 res, huff.max_bits);
193 }
194 if (huff.num != huff.max_num) {
195 av_log(ctx->avctx, AV_LOG_ERROR, "Got less codes than expected: %i of %i\n",
196 huff.num, huff.max_num);
198 }
199
200 /* convert codes to vlc_table */
201 if (res >= 0) {
202 res = ff_vlc_init_from_lengths(&code->vlc, huff.max_bits, huff.max_num,
203 huff.lens, sizeof(huff.lens[0]),
204 NULL, 0, 0, 0, 0, ctx->avctx);
205 if (res < 0)
206 av_log(ctx->avctx, AV_LOG_ERROR, "Cannot build VLC table\n");
207 else {
208 code->bits = huff.max_bits;
209 code->length = huff.max_num;
210 code->recode = huff.nums;
211 huff.nums = NULL;
212 }
213 }
214
215out:
216 /* free allocated memory */
217 av_free(huff.nums);
218 av_free(huff.lens);
219
220 return res;
221}
222
224{
225 av_free(code->recode);
226 ff_vlc_free(&code->vlc);
227}
228
229static inline int tm2_get_token(GetBitContext *gb, TM2Codes *code)
230{
231 int val;
232 val = get_vlc2(gb, code->vlc.table, code->bits, 1);
233 if(val<0)
234 return -1;
235 return code->recode[val];
236}
237
238#define TM2_OLD_HEADER_MAGIC 0x00000100
239#define TM2_NEW_HEADER_MAGIC 0x00000101
240
241static inline int tm2_read_header(TM2Context *ctx, const uint8_t *buf)
242{
243 uint32_t magic = AV_RL32(buf);
244
245 switch (magic) {
247 avpriv_request_sample(ctx->avctx, "Old TM2 header");
248 return 0;
250 return 0;
251 default:
252 av_log(ctx->avctx, AV_LOG_ERROR, "Not a TM2 header: 0x%08"PRIX32"\n",
253 magic);
254 return AVERROR_INVALIDDATA;
255 }
256}
257
258static int tm2_read_deltas(TM2Context *ctx, int stream_id)
259{
260 int d, mb;
261 int i, v;
262
263 d = get_bits(&ctx->gb, 9);
264 mb = get_bits(&ctx->gb, 5);
265
266 av_assert2(mb < 32);
267 if ((d < 1) || (d > TM2_DELTAS) || (mb < 1)) {
268 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect delta table: %i deltas x %i bits\n", d, mb);
269 return AVERROR_INVALIDDATA;
270 }
271
272 for (i = 0; i < d; i++) {
273 v = get_bits_long(&ctx->gb, mb);
274 if (v & (1 << (mb - 1)))
275 ctx->deltas[stream_id][i] = v - (1U << mb);
276 else
277 ctx->deltas[stream_id][i] = v;
278 }
279 for (; i < TM2_DELTAS; i++)
280 ctx->deltas[stream_id][i] = 0;
281
282 return 0;
283}
284
285static int tm2_read_stream(TM2Context *ctx, const uint8_t *buf, int stream_id, int buf_size)
286{
287 int i, ret;
288 int skip = 0;
289 int len, toks, pos;
290 TM2Codes codes;
292
293 if (buf_size < 4) {
294 av_log(ctx->avctx, AV_LOG_ERROR, "not enough space for len left\n");
295 return AVERROR_INVALIDDATA;
296 }
297
298 /* get stream length in dwords */
299 bytestream2_init(&gb, buf, buf_size);
300 len = bytestream2_get_be32(&gb);
301
302 if (len == 0)
303 return 4;
304
305 if (len >= INT_MAX / 4 - 1 || len < 0 || len * 4 + 4 > buf_size) {
306 av_log(ctx->avctx, AV_LOG_ERROR, "Error, invalid stream size.\n");
307 return AVERROR_INVALIDDATA;
308 }
309 skip = len * 4 + 4;
310
311 toks = bytestream2_get_be32(&gb);
312 if (toks & 1) {
313 len = bytestream2_get_be32(&gb);
314 if (len == TM2_ESCAPE) {
315 len = bytestream2_get_be32(&gb);
316 }
317 if (len > 0) {
318 pos = bytestream2_tell(&gb);
319 if (skip <= pos)
320 return AVERROR_INVALIDDATA;
321 init_get_bits(&ctx->gb, buf + pos, (skip - pos) * 8);
322 if ((ret = tm2_read_deltas(ctx, stream_id)) < 0)
323 return ret;
324 bytestream2_skip(&gb, ((get_bits_count(&ctx->gb) + 31) >> 5) << 2);
325 }
326 }
327 /* skip unused fields */
328 len = bytestream2_get_be32(&gb);
329 if (len == TM2_ESCAPE) { /* some unknown length - could be escaped too */
330 bytestream2_skip(&gb, 8); /* unused by decoder */
331 } else {
332 bytestream2_skip(&gb, 4); /* unused by decoder */
333 }
334
335 pos = bytestream2_tell(&gb);
336 if (skip <= pos)
337 return AVERROR_INVALIDDATA;
338 init_get_bits(&ctx->gb, buf + pos, (skip - pos) * 8);
339 if ((ret = tm2_build_huff_table(ctx, &codes)) < 0)
340 return ret;
341 bytestream2_skip(&gb, ((get_bits_count(&ctx->gb) + 31) >> 5) << 2);
342
343 toks >>= 1;
344 /* check if we have sane number of tokens */
345 if ((toks < 0) || (toks > 0xFFFFFF)) {
346 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of tokens: %i\n", toks);
348 goto end;
349 }
350 ret = av_reallocp_array(&ctx->tokens[stream_id], toks, sizeof(int));
351 if (ret < 0) {
352 ctx->tok_lens[stream_id] = 0;
353 goto end;
354 }
355 ctx->tok_lens[stream_id] = toks;
356 len = bytestream2_get_be32(&gb);
357 if (len > 0) {
358 pos = bytestream2_tell(&gb);
359 if (skip <= pos) {
361 goto end;
362 }
363 init_get_bits(&ctx->gb, buf + pos, (skip - pos) * 8);
364 for (i = 0; i < toks; i++) {
365 if (get_bits_left(&ctx->gb) <= 0) {
366 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of tokens: %i\n", toks);
368 goto end;
369 }
370 ctx->tokens[stream_id][i] = tm2_get_token(&ctx->gb, &codes);
371 if (stream_id <= TM2_MOT && ctx->tokens[stream_id][i] >= TM2_DELTAS || ctx->tokens[stream_id][i]<0) {
372 av_log(ctx->avctx, AV_LOG_ERROR, "Invalid delta token index %d for type %d, n=%d\n",
373 ctx->tokens[stream_id][i], stream_id, i);
375 goto end;
376 }
377 }
378 } else {
379 if (len < 0) {
381 goto end;
382 }
383 for (i = 0; i < toks; i++) {
384 ctx->tokens[stream_id][i] = codes.recode[0];
385 if (stream_id <= TM2_MOT && ctx->tokens[stream_id][i] >= TM2_DELTAS) {
386 av_log(ctx->avctx, AV_LOG_ERROR, "Invalid delta token index %d for type %d, n=%d\n",
387 ctx->tokens[stream_id][i], stream_id, i);
389 goto end;
390 }
391 }
392 }
393
394 ret = skip;
395
396end:
397 tm2_free_codes(&codes);
398 return ret;
399}
400
401static inline int GET_TOK(TM2Context *ctx,int type)
402{
403 if (ctx->tok_ptrs[type] >= ctx->tok_lens[type]) {
404 av_log(ctx->avctx, AV_LOG_ERROR, "Read token from stream %i out of bounds (%i>=%i)\n", type, ctx->tok_ptrs[type], ctx->tok_lens[type]);
405 ctx->error = 1;
406 return 0;
407 }
408 if (type <= TM2_MOT) {
409 if (ctx->tokens[type][ctx->tok_ptrs[type]] >= TM2_DELTAS) {
410 av_log(ctx->avctx, AV_LOG_ERROR, "token %d is too large\n", ctx->tokens[type][ctx->tok_ptrs[type]]);
411 return 0;
412 }
413 return ctx->deltas[type][ctx->tokens[type][ctx->tok_ptrs[type]++]];
414 }
415 return ctx->tokens[type][ctx->tok_ptrs[type]++];
416}
417
418/* blocks decoding routines */
419
420/* common Y, U, V pointers initialisation */
421#define TM2_INIT_POINTERS() \
422 int *last, *clast; \
423 int *Y, *U, *V;\
424 int Ystride, Ustride, Vstride;\
425\
426 Ystride = ctx->y_stride;\
427 Vstride = ctx->uv_stride;\
428 Ustride = ctx->uv_stride;\
429 Y = (ctx->cur?ctx->Y2:ctx->Y1) + by * 4 * Ystride + bx * 4;\
430 V = (ctx->cur?ctx->V2:ctx->V1) + by * 2 * Vstride + bx * 2;\
431 U = (ctx->cur?ctx->U2:ctx->U1) + by * 2 * Ustride + bx * 2;\
432 last = ctx->last + bx * 4;\
433 clast = ctx->clast + bx * 4;
434
435#define TM2_INIT_POINTERS_2() \
436 unsigned *Yo, *Uo, *Vo;\
437 int oYstride, oUstride, oVstride;\
438\
439 TM2_INIT_POINTERS();\
440 oYstride = Ystride;\
441 oVstride = Vstride;\
442 oUstride = Ustride;\
443 Yo = (ctx->cur?ctx->Y1:ctx->Y2) + by * 4 * oYstride + bx * 4;\
444 Vo = (ctx->cur?ctx->V1:ctx->V2) + by * 2 * oVstride + bx * 2;\
445 Uo = (ctx->cur?ctx->U1:ctx->U2) + by * 2 * oUstride + bx * 2;
446
447/* recalculate last and delta values for next blocks */
448#define TM2_RECALC_BLOCK(CHR, stride, last, CD) {\
449 CD[0] = (unsigned)CHR[ 1] - (unsigned)last[1];\
450 CD[1] = (unsigned)CHR[stride + 1] - (unsigned) CHR[1];\
451 last[0] = (int)CHR[stride + 0];\
452 last[1] = (int)CHR[stride + 1];}
453
454/* common operations - add deltas to 4x4 block of luma or 2x2 blocks of chroma */
455static inline void tm2_apply_deltas(TM2Context *ctx, int* Y, int stride, int *deltas, int *last)
456{
457 unsigned ct, d;
458 int i, j;
459
460 for (j = 0; j < 4; j++){
461 ct = ctx->D[j];
462 for (i = 0; i < 4; i++){
463 d = deltas[i + j * 4];
464 ct += d;
465 last[i] += ct;
466 Y[i] = av_clip_uint8(last[i]);
467 }
468 Y += stride;
469 ctx->D[j] = ct;
470 }
471}
472
473static inline void tm2_high_chroma(int *data, int stride, int *last, unsigned *CD, int *deltas)
474{
475 int i, j;
476 for (j = 0; j < 2; j++) {
477 for (i = 0; i < 2; i++) {
478 CD[j] += deltas[i + j * 2];
479 last[i] += CD[j];
480 data[i] = last[i];
481 }
482 data += stride;
483 }
484}
485
486static inline void tm2_low_chroma(int *data, int stride, int *clast, unsigned *CD, int *deltas, int bx)
487{
488 int t;
489 int l;
490 int prev;
491
492 if (bx > 0)
493 prev = clast[-3];
494 else
495 prev = 0;
496 t = (int)(CD[0] + CD[1]) >> 1;
497 l = (int)(prev - CD[0] - CD[1] + clast[1]) >> 1;
498 CD[1] = CD[0] + CD[1] - t;
499 CD[0] = t;
500 clast[0] = l;
501
502 tm2_high_chroma(data, stride, clast, CD, deltas);
503}
504
505static inline void tm2_hi_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
506{
507 int i;
508 int deltas[16];
510
511 /* hi-res chroma */
512 for (i = 0; i < 4; i++) {
513 deltas[i] = GET_TOK(ctx, TM2_C_HI);
514 deltas[i + 4] = GET_TOK(ctx, TM2_C_HI);
515 }
516 tm2_high_chroma(U, Ustride, clast, ctx->CD, deltas);
517 tm2_high_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas + 4);
518
519 /* hi-res luma */
520 for (i = 0; i < 16; i++)
521 deltas[i] = GET_TOK(ctx, TM2_L_HI);
522
523 tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
524}
525
526static inline void tm2_med_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
527{
528 int i;
529 int deltas[16];
531
532 /* low-res chroma */
533 deltas[0] = GET_TOK(ctx, TM2_C_LO);
534 deltas[1] = deltas[2] = deltas[3] = 0;
535 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
536
537 deltas[0] = GET_TOK(ctx, TM2_C_LO);
538 deltas[1] = deltas[2] = deltas[3] = 0;
539 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
540
541 /* hi-res luma */
542 for (i = 0; i < 16; i++)
543 deltas[i] = GET_TOK(ctx, TM2_L_HI);
544
545 tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
546}
547
548static inline void tm2_low_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
549{
550 int i;
551 int t1, t2;
552 int deltas[16];
554
555 /* low-res chroma */
556 deltas[0] = GET_TOK(ctx, TM2_C_LO);
557 deltas[1] = deltas[2] = deltas[3] = 0;
558 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
559
560 deltas[0] = GET_TOK(ctx, TM2_C_LO);
561 deltas[1] = deltas[2] = deltas[3] = 0;
562 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
563
564 /* low-res luma */
565 for (i = 0; i < 16; i++)
566 deltas[i] = 0;
567
568 deltas[ 0] = GET_TOK(ctx, TM2_L_LO);
569 deltas[ 2] = GET_TOK(ctx, TM2_L_LO);
570 deltas[ 8] = GET_TOK(ctx, TM2_L_LO);
571 deltas[10] = GET_TOK(ctx, TM2_L_LO);
572
573 if (bx > 0)
574 last[0] = (int)((unsigned)last[-1] - ctx->D[0] - ctx->D[1] - ctx->D[2] - ctx->D[3] + last[1]) >> 1;
575 else
576 last[0] = (int)((unsigned)last[1] - ctx->D[0] - ctx->D[1] - ctx->D[2] - ctx->D[3])>> 1;
577 last[2] = (int)((unsigned)last[1] + last[3]) >> 1;
578
579 t1 = ctx->D[0] + (unsigned)ctx->D[1];
580 ctx->D[0] = t1 >> 1;
581 ctx->D[1] = t1 - (t1 >> 1);
582 t2 = ctx->D[2] + (unsigned)ctx->D[3];
583 ctx->D[2] = t2 >> 1;
584 ctx->D[3] = t2 - (t2 >> 1);
585
586 tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
587}
588
589static inline void tm2_null_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
590{
591 int i;
592 int ct;
593 unsigned left, right;
594 int diff;
595 int deltas[16];
597
598 /* null chroma */
599 deltas[0] = deltas[1] = deltas[2] = deltas[3] = 0;
600 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
601
602 deltas[0] = deltas[1] = deltas[2] = deltas[3] = 0;
603 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
604
605 /* null luma */
606 for (i = 0; i < 16; i++)
607 deltas[i] = 0;
608
609 ct = (unsigned)ctx->D[0] + ctx->D[1] + ctx->D[2] + ctx->D[3];
610
611 if (bx > 0)
612 left = last[-1] - (unsigned)ct;
613 else
614 left = 0;
615
616 right = last[3];
617 diff = right - left;
618 last[0] = left + (diff >> 2);
619 last[1] = left + (diff >> 1);
620 last[2] = right - (diff >> 2);
621 last[3] = right;
622 {
623 unsigned tp = left;
624
625 ctx->D[0] = (tp + (ct >> 2)) - left;
626 left += ctx->D[0];
627 ctx->D[1] = (tp + (ct >> 1)) - left;
628 left += ctx->D[1];
629 ctx->D[2] = ((tp + ct) - (ct >> 2)) - left;
630 left += ctx->D[2];
631 ctx->D[3] = (tp + ct) - left;
632 }
633 tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
634}
635
636static inline void tm2_still_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
637{
638 int i, j;
640
641 /* update chroma */
642 for (j = 0; j < 2; j++) {
643 for (i = 0; i < 2; i++){
644 U[i] = Uo[i];
645 V[i] = Vo[i];
646 }
647 U += Ustride; V += Vstride;
648 Uo += oUstride; Vo += oVstride;
649 }
650 U -= Ustride * 2;
651 V -= Vstride * 2;
652 TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
653 TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
654
655 /* update deltas */
656 ctx->D[0] = Yo[3] - last[3];
657 ctx->D[1] = Yo[3 + oYstride] - Yo[3];
658 ctx->D[2] = Yo[3 + oYstride * 2] - Yo[3 + oYstride];
659 ctx->D[3] = Yo[3 + oYstride * 3] - Yo[3 + oYstride * 2];
660
661 for (j = 0; j < 4; j++) {
662 for (i = 0; i < 4; i++) {
663 Y[i] = Yo[i];
664 last[i] = Yo[i];
665 }
666 Y += Ystride;
667 Yo += oYstride;
668 }
669}
670
671static inline void tm2_update_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
672{
673 int i, j;
674 unsigned d;
676
677 /* update chroma */
678 for (j = 0; j < 2; j++) {
679 for (i = 0; i < 2; i++) {
680 U[i] = Uo[i] + GET_TOK(ctx, TM2_UPD);
681 V[i] = Vo[i] + GET_TOK(ctx, TM2_UPD);
682 }
683 U += Ustride;
684 V += Vstride;
685 Uo += oUstride;
686 Vo += oVstride;
687 }
688 U -= Ustride * 2;
689 V -= Vstride * 2;
690 TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
691 TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
692
693 /* update deltas */
694 ctx->D[0] = Yo[3] - last[3];
695 ctx->D[1] = Yo[3 + oYstride] - Yo[3];
696 ctx->D[2] = Yo[3 + oYstride * 2] - Yo[3 + oYstride];
697 ctx->D[3] = Yo[3 + oYstride * 3] - Yo[3 + oYstride * 2];
698
699 for (j = 0; j < 4; j++) {
700 d = last[3];
701 for (i = 0; i < 4; i++) {
702 Y[i] = Yo[i] + (unsigned)GET_TOK(ctx, TM2_UPD);
703 last[i] = Y[i];
704 }
705 ctx->D[j] = last[3] - d;
706 Y += Ystride;
707 Yo += oYstride;
708 }
709}
710
711static inline void tm2_motion_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
712{
713 int i, j;
714 int mx, my;
716
717 mx = GET_TOK(ctx, TM2_MOT);
718 my = GET_TOK(ctx, TM2_MOT);
719 mx = av_clip(mx, -(bx * 4 + 4), ctx->avctx->width - bx * 4);
720 my = av_clip(my, -(by * 4 + 4), ctx->avctx->height - by * 4);
721
722 if (4*bx+mx<0 || 4*by+my<0 || 4*bx+mx+4 > ctx->avctx->width || 4*by+my+4 > ctx->avctx->height) {
723 av_log(ctx->avctx, AV_LOG_ERROR, "MV out of picture\n");
724 return;
725 }
726
727 Yo += my * oYstride + mx;
728 Uo += (my >> 1) * oUstride + (mx >> 1);
729 Vo += (my >> 1) * oVstride + (mx >> 1);
730
731 /* copy chroma */
732 for (j = 0; j < 2; j++) {
733 for (i = 0; i < 2; i++) {
734 U[i] = Uo[i];
735 V[i] = Vo[i];
736 }
737 U += Ustride;
738 V += Vstride;
739 Uo += oUstride;
740 Vo += oVstride;
741 }
742 U -= Ustride * 2;
743 V -= Vstride * 2;
744 TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
745 TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
746
747 /* copy luma */
748 for (j = 0; j < 4; j++) {
749 for (i = 0; i < 4; i++) {
750 Y[i] = Yo[i];
751 }
752 Y += Ystride;
753 Yo += oYstride;
754 }
755 /* calculate deltas */
756 Y -= Ystride * 4;
757 ctx->D[0] = (unsigned)Y[3] - last[3];
758 ctx->D[1] = (unsigned)Y[3 + Ystride] - Y[3];
759 ctx->D[2] = (unsigned)Y[3 + Ystride * 2] - Y[3 + Ystride];
760 ctx->D[3] = (unsigned)Y[3 + Ystride * 3] - Y[3 + Ystride * 2];
761 for (i = 0; i < 4; i++)
762 last[i] = Y[i + Ystride * 3];
763}
764
766{
767 int i, j;
768 int w = ctx->avctx->width, h = ctx->avctx->height, bw = w >> 2, bh = h >> 2, cw = w >> 1;
769 int type;
770 int keyframe = 1;
771 int *Y, *U, *V;
772 uint8_t *dst;
773
774 for (i = 0; i < TM2_NUM_STREAMS; i++)
775 ctx->tok_ptrs[i] = 0;
776
777 if (ctx->tok_lens[TM2_TYPE]<bw*bh) {
778 av_log(ctx->avctx,AV_LOG_ERROR,"Got %i tokens for %i blocks\n",ctx->tok_lens[TM2_TYPE],bw*bh);
779 return AVERROR_INVALIDDATA;
780 }
781
782 memset(ctx->last, 0, 4 * bw * sizeof(int));
783 memset(ctx->clast, 0, 4 * bw * sizeof(int));
784
785 for (j = 0; j < bh; j++) {
786 memset(ctx->D, 0, 4 * sizeof(int));
787 memset(ctx->CD, 0, 4 * sizeof(int));
788 for (i = 0; i < bw; i++) {
790 switch(type) {
791 case TM2_HI_RES:
792 tm2_hi_res_block(ctx, p, i, j);
793 break;
794 case TM2_MED_RES:
795 tm2_med_res_block(ctx, p, i, j);
796 break;
797 case TM2_LOW_RES:
798 tm2_low_res_block(ctx, p, i, j);
799 break;
800 case TM2_NULL_RES:
801 tm2_null_res_block(ctx, p, i, j);
802 break;
803 case TM2_UPDATE:
804 tm2_update_block(ctx, p, i, j);
805 keyframe = 0;
806 break;
807 case TM2_STILL:
808 tm2_still_block(ctx, p, i, j);
809 keyframe = 0;
810 break;
811 case TM2_MOTION:
812 tm2_motion_block(ctx, p, i, j);
813 keyframe = 0;
814 break;
815 default:
816 av_log(ctx->avctx, AV_LOG_ERROR, "Skipping unknown block type %i\n", type);
817 }
818 if (ctx->error)
819 return AVERROR_INVALIDDATA;
820 }
821 }
822
823 /* copy data from our buffer to AVFrame */
824 Y = (ctx->cur?ctx->Y2:ctx->Y1);
825 U = (ctx->cur?ctx->U2:ctx->U1);
826 V = (ctx->cur?ctx->V2:ctx->V1);
827 dst = p->data[0];
828 for (j = 0; j < h; j++) {
829 for (i = 0; i < w; i++) {
830 unsigned y = Y[i], u = U[i >> 1], v = V[i >> 1];
831 dst[3*i+0] = av_clip_uint8(y + v);
832 dst[3*i+1] = av_clip_uint8(y);
833 dst[3*i+2] = av_clip_uint8(y + u);
834 }
835
836 /* horizontal edge extension */
837 Y[-4] = Y[-3] = Y[-2] = Y[-1] = Y[0];
838 Y[w + 3] = Y[w + 2] = Y[w + 1] = Y[w] = Y[w - 1];
839
840 /* vertical edge extension */
841 if (j == 0) {
842 memcpy(Y - 4 - 1 * ctx->y_stride, Y - 4, ctx->y_stride);
843 memcpy(Y - 4 - 2 * ctx->y_stride, Y - 4, ctx->y_stride);
844 memcpy(Y - 4 - 3 * ctx->y_stride, Y - 4, ctx->y_stride);
845 memcpy(Y - 4 - 4 * ctx->y_stride, Y - 4, ctx->y_stride);
846 } else if (j == h - 1) {
847 memcpy(Y - 4 + 1 * ctx->y_stride, Y - 4, ctx->y_stride);
848 memcpy(Y - 4 + 2 * ctx->y_stride, Y - 4, ctx->y_stride);
849 memcpy(Y - 4 + 3 * ctx->y_stride, Y - 4, ctx->y_stride);
850 memcpy(Y - 4 + 4 * ctx->y_stride, Y - 4, ctx->y_stride);
851 }
852
853 Y += ctx->y_stride;
854 if (j & 1) {
855 /* horizontal edge extension */
856 U[-2] = U[-1] = U[0];
857 V[-2] = V[-1] = V[0];
858 U[cw + 1] = U[cw] = U[cw - 1];
859 V[cw + 1] = V[cw] = V[cw - 1];
860
861 /* vertical edge extension */
862 if (j == 1) {
863 memcpy(U - 2 - 1 * ctx->uv_stride, U - 2, ctx->uv_stride);
864 memcpy(V - 2 - 1 * ctx->uv_stride, V - 2, ctx->uv_stride);
865 memcpy(U - 2 - 2 * ctx->uv_stride, U - 2, ctx->uv_stride);
866 memcpy(V - 2 - 2 * ctx->uv_stride, V - 2, ctx->uv_stride);
867 } else if (j == h - 1) {
868 memcpy(U - 2 + 1 * ctx->uv_stride, U - 2, ctx->uv_stride);
869 memcpy(V - 2 + 1 * ctx->uv_stride, V - 2, ctx->uv_stride);
870 memcpy(U - 2 + 2 * ctx->uv_stride, U - 2, ctx->uv_stride);
871 memcpy(V - 2 + 2 * ctx->uv_stride, V - 2, ctx->uv_stride);
872 }
873
874 U += ctx->uv_stride;
875 V += ctx->uv_stride;
876 }
877 dst += p->linesize[0];
878 }
879
880 return keyframe;
881}
882
886
887#define TM2_HEADER_SIZE 40
888
889static int decode_frame(AVCodecContext *avctx, AVFrame *rframe,
890 int *got_frame, AVPacket *avpkt)
891{
892 TM2Context * const l = avctx->priv_data;
893 const uint8_t *buf = avpkt->data;
894 int buf_size = avpkt->size & ~3;
895 AVFrame * const p = l->pic;
897 int i, t, ret;
898
899 l->error = 0;
900
901 av_fast_padded_malloc(&l->buffer, &l->buffer_size, buf_size);
902 if (!l->buffer) {
903 av_log(avctx, AV_LOG_ERROR, "Cannot allocate temporary buffer\n");
904 return AVERROR(ENOMEM);
905 }
906
907 if ((ret = ff_reget_buffer(avctx, p, 0)) < 0)
908 return ret;
909
910 l->bdsp.bswap_buf((uint32_t *) l->buffer, (const uint32_t *) buf,
911 buf_size >> 2);
912
913 if ((ret = tm2_read_header(l, l->buffer)) < 0) {
914 return ret;
915 }
916
917 for (i = 0; i < TM2_NUM_STREAMS; i++) {
918 if (offset >= buf_size) {
919 av_log(avctx, AV_LOG_ERROR, "no space for tm2_read_stream\n");
920 return AVERROR_INVALIDDATA;
921 }
922
924 buf_size - offset);
925 if (t < 0) {
926 int j = tm2_stream_order[i];
927 if (l->tok_lens[j])
928 memset(l->tokens[j], 0, sizeof(**l->tokens) * l->tok_lens[j]);
929 return t;
930 }
931 offset += t;
932 }
933 if (tm2_decode_blocks(l, p)) {
934 p->flags |= AV_FRAME_FLAG_KEY;
935 p->pict_type = AV_PICTURE_TYPE_I;
936 } else {
937 p->flags &= ~AV_FRAME_FLAG_KEY;
938 p->pict_type = AV_PICTURE_TYPE_P;
939 }
940
941 l->cur = !l->cur;
942 *got_frame = 1;
943 ret = av_frame_ref(rframe, l->pic);
944
945 return (ret < 0) ? ret : buf_size;
946}
947
949{
950 TM2Context * const l = avctx->priv_data;
951 int w = avctx->width, h = avctx->height;
952
953 if ((avctx->width & 3) || (avctx->height & 3)) {
954 av_log(avctx, AV_LOG_ERROR, "Width and height must be multiple of 4\n");
955 return AVERROR(EINVAL);
956 }
957
958 l->avctx = avctx;
959 avctx->pix_fmt = AV_PIX_FMT_BGR24;
960
961 l->pic = av_frame_alloc();
962 if (!l->pic)
963 return AVERROR(ENOMEM);
964
966
967 l->last = av_malloc_array(w, 2 * sizeof(*l->last));
968 if (!l->last)
969 return AVERROR(ENOMEM);
970 l->clast = l->last + w;
971
972 w += 8;
973 h += 8;
974 l->Y_base = av_calloc(w * h, 2 * sizeof(*l->Y_base));
975 if (!l->Y_base)
976 return AVERROR(ENOMEM);
977 l->y_stride = w;
978 l->Y1 = l->Y_base + l->y_stride * 4 + 4;
979 l->Y2 = l->Y1 + w * h;
980 w = (w + 1) >> 1;
981 h = (h + 1) >> 1;
982 l->UV_base = av_calloc(w * h, 4 * sizeof(*l->UV_base));
983 if (!l->UV_base)
984 return AVERROR(ENOMEM);
985 l->uv_stride = w;
986 l->U1 = l->UV_base + l->uv_stride * 2 + 2;
987 l->U2 = l->U1 + w * h;
988 l->V1 = l->U2 + w * h;
989 l->V2 = l->V1 + w * h;
990
991 return 0;
992}
993
995{
996 TM2Context * const l = avctx->priv_data;
997 int i;
998
999 av_freep(&l->last);
1000 for (i = 0; i < TM2_NUM_STREAMS; i++)
1001 av_freep(&l->tokens[i]);
1002
1003 av_freep(&l->Y_base);
1004 av_freep(&l->UV_base);
1005 av_freep(&l->buffer);
1006 l->buffer_size = 0;
1007
1008 av_frame_free(&l->pic);
1009
1010 return 0;
1011}
1012
1014 .p.name = "truemotion2",
1015 CODEC_LONG_NAME("Duck TrueMotion 2.0"),
1016 .p.type = AVMEDIA_TYPE_VIDEO,
1018 .priv_data_size = sizeof(TM2Context),
1019 .init = decode_init,
1020 .close = decode_end,
1022 .p.capabilities = AV_CODEC_CAP_DR1,
1023 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1024};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t my
Definition dsp.h:57
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
Definition dsp.h:57
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static double val(void *priv, double ch)
Definition aeval.c:77
const FFCodec ff_truemotion2_decoder
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define U(x)
Definition vpx_arith.h:37
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition avassert.h:68
Libavcodec external API header.
#define V
Definition avdct.c:32
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
static int BS_FUNC left(const BSCTX *bc)
Return the number of the bits left in a buffer.
#define Y
Definition boxblur.h:37
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
static av_always_inline int bytestream2_tell(const GetByteContext *g)
Definition bytestream.h:192
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define mb(name)
Definition cbs_lcevc.c:95
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
#define av_clip
Definition common.h:100
#define av_clip_uint8
Definition common.h:106
#define NULL
Definition coverity.c:32
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Identical in function to ff_get_buffer(), except it reuses the existing buffer if available.
Definition decode.c:1906
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
bitstream reader API header.
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition get_bits.h:424
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
Definition get_bits.h:645
static int get_bits_left(GetBitContext *gb)
Definition get_bits.h:688
static unsigned int get_bits1(GetBitContext *s)
Definition get_bits.h:391
static int get_bits_count(const GetBitContext *s)
Definition get_bits.h:254
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition get_bits.h:517
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_TRUEMOTION2
Definition codec_id.h:127
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition utils.c:53
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition frame.h:687
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition frame.c:278
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition frame.c:52
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate an array through a pointer to a pointer.
Definition mem.c:225
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_P
Predicted.
Definition avutil.h:279
cl_device_type type
#define AV_RL32(p)
unsigned offset
Definition libaomenc.c:763
static av_cold int decode_init(AVCodecContext *avctx)
Definition 4xm.c:998
static av_cold int decode_end(AVCodecContext *avctx)
Definition 4xm.c:980
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
Definition 4xm.c:837
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
Definition bswapdsp.c:37
#define u(width, name, range_min, range_max)
Definition cbs_apv.c:68
#define av_cold
Definition attributes.h:117
uint8_t w
Definition llvidencdsp.c:39
#define FFMAX(a, b)
Definition macros.h:47
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
const char data[16]
Definition mxf.c:149
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
const uint8_t * code
Definition spdifenc.c:433
unsigned int pos
Definition spdifenc.c:431
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
void(* bswap_buf)(uint32_t *dst, const uint32_t *src, int w)
Definition bswapdsp.h:25
Huffman codes for each of streams.
Definition truemotion2.c:95
VLC vlc
table for FFmpeg bitstream reader
Definition truemotion2.c:96
int * recode
table for converting from code indexes to values
Definition truemotion2.c:98
int * Y_base
Definition truemotion2.c:86
int CD[4]
Definition truemotion2.c:81
BswapDSPContext bdsp
Definition truemotion2.c:69
int * UV_base
Definition truemotion2.c:86
int buffer_size
Definition truemotion2.c:72
AVCodecContext * avctx
Definition truemotion2.c:64
GetBitContext gb
Definition truemotion2.c:67
int * tokens[TM2_NUM_STREAMS]
Definition truemotion2.c:75
int deltas[TM2_NUM_STREAMS][TM2_DELTAS]
Definition truemotion2.c:78
AVFrame * pic
Definition truemotion2.c:65
uint8_t * buffer
Definition truemotion2.c:71
int tok_ptrs[TM2_NUM_STREAMS]
Definition truemotion2.c:77
int * clast
Definition truemotion2.c:83
int tok_lens[TM2_NUM_STREAMS]
Definition truemotion2.c:76
structure for gathering Huffman codes information
int nodes
total number of nodes in tree
int * nums
literals
int val_bits
length of literal
uint8_t * lens
codelengths
int min_bits
minimum length of code
int num
current number filled
int max_bits
maximum length of code
int max_num
total number of codes
Definition vlc.h:50
#define stride
#define av_free(p)
#define av_malloc_array(a, b)
#define av_mallocz(s)
#define avpriv_request_sample(...)
#define av_freep(p)
#define av_log(a,...)
static FILE * out
Definition movenc.c:55
static AVFormatContext * ctx
Definition movenc.c:49
static int tm2_read_deltas(TM2Context *ctx, int stream_id)
static const int tm2_stream_order[TM2_NUM_STREAMS]
#define TM2_INIT_POINTERS_2()
static int tm2_build_huff_table(TM2Context *ctx, TM2Codes *code)
static int decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
static void tm2_med_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
#define TM2_INIT_POINTERS()
static int tm2_read_tree(TM2Context *ctx, int length, TM2Huff *huff)
#define TM2_OLD_HEADER_MAGIC
static int tm2_read_header(TM2Context *ctx, const uint8_t *buf)
static int GET_TOK(TM2Context *ctx, int type)
static void tm2_low_chroma(int *data, int stride, int *clast, unsigned *CD, int *deltas, int bx)
static void tm2_still_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
#define TM2_NEW_HEADER_MAGIC
static void tm2_free_codes(TM2Codes *code)
TM2_STREAMS
Definition truemotion2.c:41
@ TM2_C_LO
Definition truemotion2.c:43
@ TM2_L_LO
Definition truemotion2.c:45
@ TM2_TYPE
Definition truemotion2.c:48
@ TM2_L_HI
Definition truemotion2.c:44
@ TM2_MOT
Definition truemotion2.c:47
@ TM2_NUM_STREAMS
Definition truemotion2.c:49
@ TM2_UPD
Definition truemotion2.c:46
@ TM2_C_HI
Definition truemotion2.c:42
static av_cold int decode_init(AVCodecContext *avctx)
static void tm2_high_chroma(int *data, int stride, int *last, unsigned *CD, int *deltas)
static av_cold int decode_end(AVCodecContext *avctx)
static void tm2_motion_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
static int tm2_read_stream(TM2Context *ctx, const uint8_t *buf, int stream_id, int buf_size)
static void tm2_hi_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
static void tm2_update_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
static int tm2_decode_blocks(TM2Context *ctx, AVFrame *p)
#define TM2_HEADER_SIZE
static int tm2_get_token(GetBitContext *gb, TM2Codes *code)
static void tm2_null_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
#define TM2_RECALC_BLOCK(CHR, stride, last, CD)
TM2_BLOCKS
Definition truemotion2.c:53
@ TM2_LOW_RES
Definition truemotion2.c:56
@ TM2_HI_RES
Definition truemotion2.c:54
@ TM2_UPDATE
Definition truemotion2.c:58
@ TM2_MOTION
Definition truemotion2.c:60
@ TM2_STILL
Definition truemotion2.c:59
@ TM2_NULL_RES
Definition truemotion2.c:57
@ TM2_MED_RES
Definition truemotion2.c:55
static void tm2_apply_deltas(TM2Context *ctx, int *Y, int stride, int *deltas, int *last)
static void tm2_low_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
#define TM2_DELTAS
Definition truemotion2.c:38
#define TM2_ESCAPE
Definition truemotion2.c:37
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
int ff_vlc_init_from_lengths(VLC *vlc, int nb_bits, int nb_codes, const int8_t *lens, int lens_wrap, const void *symbols, int symbols_wrap, int symbols_size, int offset, int flags, void *logctx)
Build VLC decoding tables suitable for use with get_vlc2()
Definition vlc.c:306
void ff_vlc_free(VLC *vlc)
Definition vlc.c:580
int len