]> git.sesse.net Git - ffmpeg/blob - libavcodec/truemotion2.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / truemotion2.c
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 "avcodec.h"
28 #include "get_bits.h"
29 #include "dsputil.h"
30
31 #define TM2_ESCAPE 0x80000000
32 #define TM2_DELTAS 64
33 /* Huffman-coded streams of different types of blocks */
34 enum TM2_STREAMS{ TM2_C_HI = 0, TM2_C_LO, TM2_L_HI, TM2_L_LO,
35      TM2_UPD, TM2_MOT, TM2_TYPE, TM2_NUM_STREAMS};
36 /* Block types */
37 enum TM2_BLOCKS{ TM2_HI_RES = 0, TM2_MED_RES, TM2_LOW_RES, TM2_NULL_RES,
38                  TM2_UPDATE, TM2_STILL, TM2_MOTION};
39
40 typedef struct TM2Context{
41     AVCodecContext *avctx;
42     AVFrame pic;
43
44     GetBitContext gb;
45     DSPContext dsp;
46
47     /* TM2 streams */
48     int *tokens[TM2_NUM_STREAMS];
49     int tok_lens[TM2_NUM_STREAMS];
50     int tok_ptrs[TM2_NUM_STREAMS];
51     int deltas[TM2_NUM_STREAMS][TM2_DELTAS];
52     /* for blocks decoding */
53     int D[4];
54     int CD[4];
55     int *last;
56     int *clast;
57
58     /* data for current and previous frame */
59     int *Y1, *U1, *V1, *Y2, *U2, *V2;
60     int cur;
61 } TM2Context;
62
63 /**
64 * Huffman codes for each of streams
65 */
66 typedef struct TM2Codes{
67     VLC vlc; ///< table for FFmpeg bitstream reader
68     int bits;
69     int *recode; ///< table for converting from code indexes to values
70     int length;
71 } TM2Codes;
72
73 /**
74 * structure for gathering Huffman codes information
75 */
76 typedef struct TM2Huff{
77     int val_bits; ///< length of literal
78     int max_bits; ///< maximum length of code
79     int min_bits; ///< minimum length of code
80     int nodes; ///< total number of nodes in tree
81     int num; ///< current number filled
82     int max_num; ///< total number of codes
83     int *nums; ///< literals
84     uint32_t *bits; ///< codes
85     int *lens; ///< codelengths
86 } TM2Huff;
87
88 static int tm2_read_tree(TM2Context *ctx, uint32_t prefix, int length, TM2Huff *huff)
89 {
90     if(length > huff->max_bits) {
91         av_log(ctx->avctx, AV_LOG_ERROR, "Tree exceeded its given depth (%i)\n", huff->max_bits);
92         return -1;
93     }
94
95     if(!get_bits1(&ctx->gb)) { /* literal */
96         if (length == 0) {
97             length = 1;
98         }
99         if(huff->num >= huff->max_num) {
100             av_log(ctx->avctx, AV_LOG_DEBUG, "Too many literals\n");
101             return -1;
102         }
103         huff->nums[huff->num] = get_bits_long(&ctx->gb, huff->val_bits);
104         huff->bits[huff->num] = prefix;
105         huff->lens[huff->num] = length;
106         huff->num++;
107         return 0;
108     } else { /* non-terminal node */
109         if(tm2_read_tree(ctx, prefix << 1, length + 1, huff) == -1)
110             return -1;
111         if(tm2_read_tree(ctx, (prefix << 1) | 1, length + 1, huff) == -1)
112             return -1;
113     }
114     return 0;
115 }
116
117 static int tm2_build_huff_table(TM2Context *ctx, TM2Codes *code)
118 {
119     TM2Huff huff;
120     int res = 0;
121
122     huff.val_bits = get_bits(&ctx->gb, 5);
123     huff.max_bits = get_bits(&ctx->gb, 5);
124     huff.min_bits = get_bits(&ctx->gb, 5);
125     huff.nodes = get_bits_long(&ctx->gb, 17);
126     huff.num = 0;
127
128     /* check for correct codes parameters */
129     if((huff.val_bits < 1) || (huff.val_bits > 32) ||
130        (huff.max_bits < 0) || (huff.max_bits > 32)) {
131         av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect tree parameters - literal length: %i, max code length: %i\n",
132                huff.val_bits, huff.max_bits);
133         return -1;
134     }
135     if((huff.nodes < 0) || (huff.nodes > 0x10000)) {
136         av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of Huffman tree nodes: %i\n", huff.nodes);
137         return -1;
138     }
139     /* one-node tree */
140     if(huff.max_bits == 0)
141         huff.max_bits = 1;
142
143     /* allocate space for codes - it is exactly ceil(nodes / 2) entries */
144     huff.max_num = (huff.nodes + 1) >> 1;
145     huff.nums = av_mallocz(huff.max_num * sizeof(int));
146     huff.bits = av_mallocz(huff.max_num * sizeof(uint32_t));
147     huff.lens = av_mallocz(huff.max_num * sizeof(int));
148
149     if(tm2_read_tree(ctx, 0, 0, &huff) == -1)
150         res = -1;
151
152     if(huff.num != huff.max_num) {
153         av_log(ctx->avctx, AV_LOG_ERROR, "Got less codes than expected: %i of %i\n",
154                huff.num, huff.max_num);
155         res = -1;
156     }
157
158     /* convert codes to vlc_table */
159     if(res != -1) {
160         int i;
161
162         res = init_vlc(&code->vlc, huff.max_bits, huff.max_num,
163                     huff.lens, sizeof(int), sizeof(int),
164                     huff.bits, sizeof(uint32_t), sizeof(uint32_t), 0);
165         if(res < 0) {
166             av_log(ctx->avctx, AV_LOG_ERROR, "Cannot build VLC table\n");
167             res = -1;
168         } else
169             res = 0;
170         if(res != -1) {
171             code->bits = huff.max_bits;
172             code->length = huff.max_num;
173             code->recode = av_malloc(code->length * sizeof(int));
174             for(i = 0; i < code->length; i++)
175                 code->recode[i] = huff.nums[i];
176         }
177     }
178     /* free allocated memory */
179     av_free(huff.nums);
180     av_free(huff.bits);
181     av_free(huff.lens);
182
183     return res;
184 }
185
186 static void tm2_free_codes(TM2Codes *code)
187 {
188     av_free(code->recode);
189     if(code->vlc.table)
190         free_vlc(&code->vlc);
191 }
192
193 static inline int tm2_get_token(GetBitContext *gb, TM2Codes *code)
194 {
195     int val;
196     val = get_vlc2(gb, code->vlc.table, code->bits, 1);
197     return code->recode[val];
198 }
199
200 static inline int tm2_read_header(TM2Context *ctx, const uint8_t *buf)
201 {
202     uint32_t magic;
203     const uint8_t *obuf;
204
205     obuf = buf;
206
207     magic = AV_RL32(buf);
208     buf += 4;
209
210     if(magic == 0x00000100) { /* old header */
211 /*      av_log (ctx->avctx, AV_LOG_ERROR, "TM2 old header: not implemented (yet)\n"); */
212         return 40;
213     } else if(magic == 0x00000101) { /* new header */
214         return 40;
215     } else {
216         av_log (ctx->avctx, AV_LOG_ERROR, "Not a TM2 header: 0x%08X\n", magic);
217         return -1;
218     }
219
220     return buf - obuf;
221 }
222
223 static int tm2_read_deltas(TM2Context *ctx, int stream_id) {
224     int d, mb;
225     int i, v;
226
227     d = get_bits(&ctx->gb, 9);
228     mb = get_bits(&ctx->gb, 5);
229
230     if((d < 1) || (d > TM2_DELTAS) || (mb < 1) || (mb > 32)) {
231         av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect delta table: %i deltas x %i bits\n", d, mb);
232         return -1;
233     }
234
235     for(i = 0; i < d; i++) {
236         v = get_bits_long(&ctx->gb, mb);
237         if(v & (1 << (mb - 1)))
238             ctx->deltas[stream_id][i] = v - (1 << mb);
239         else
240             ctx->deltas[stream_id][i] = v;
241     }
242     for(; i < TM2_DELTAS; i++)
243         ctx->deltas[stream_id][i] = 0;
244
245     return 0;
246 }
247
248 static int tm2_read_stream(TM2Context *ctx, const uint8_t *buf, int stream_id, int buf_size)
249 {
250     int i;
251     int cur = 0;
252     int skip = 0;
253     int len, toks;
254     TM2Codes codes;
255
256     /* get stream length in dwords */
257     len = AV_RB32(buf); buf += 4; cur += 4;
258     skip = len * 4 + 4;
259
260     if(len == 0)
261         return 4;
262
263     if (len >= INT_MAX/4-1 || len < 0 || len > buf_size) {
264         av_log(ctx->avctx, AV_LOG_ERROR, "Error, invalid stream size.\n");
265         return -1;
266     }
267
268     toks = AV_RB32(buf); buf += 4; cur += 4;
269     if(toks & 1) {
270         len = AV_RB32(buf); buf += 4; cur += 4;
271         if(len == TM2_ESCAPE) {
272             len = AV_RB32(buf); buf += 4; cur += 4;
273         }
274         if(len > 0) {
275             init_get_bits(&ctx->gb, buf, (skip - cur) * 8);
276             if(tm2_read_deltas(ctx, stream_id) == -1)
277                 return -1;
278             buf += ((get_bits_count(&ctx->gb) + 31) >> 5) << 2;
279             cur += ((get_bits_count(&ctx->gb) + 31) >> 5) << 2;
280         }
281     }
282     /* skip unused fields */
283     if(AV_RB32(buf) == TM2_ESCAPE) {
284         buf += 4; cur += 4; /* some unknown length - could be escaped too */
285     }
286     buf += 4; cur += 4;
287     buf += 4; cur += 4; /* unused by decoder */
288
289     if(skip < cur)
290         return -1;
291     init_get_bits(&ctx->gb, buf, (skip - cur) * 8);
292     if(tm2_build_huff_table(ctx, &codes) == -1)
293         return -1;
294     buf += ((get_bits_count(&ctx->gb) + 31) >> 5) << 2;
295     cur += ((get_bits_count(&ctx->gb) + 31) >> 5) << 2;
296
297     toks >>= 1;
298     /* check if we have sane number of tokens */
299     if((toks < 0) || (toks > 0xFFFFFF)){
300         av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of tokens: %i\n", toks);
301         tm2_free_codes(&codes);
302         return -1;
303     }
304     ctx->tokens[stream_id] = av_realloc(ctx->tokens[stream_id], toks * sizeof(int));
305     ctx->tok_lens[stream_id] = toks;
306     len = AV_RB32(buf); buf += 4; cur += 4;
307     if(len > 0) {
308         init_get_bits(&ctx->gb, buf, (skip - cur) * 8);
309         for(i = 0; i < toks; i++) {
310             if (get_bits_left(&ctx->gb) <= 0) {
311                 av_log(ctx->avctx, AV_LOG_ERROR, "Incorrect number of tokens: %i\n", toks);
312                 return -1;
313             }
314             ctx->tokens[stream_id][i] = tm2_get_token(&ctx->gb, &codes);
315         }
316     } else {
317         for(i = 0; i < toks; i++)
318             ctx->tokens[stream_id][i] = codes.recode[0];
319     }
320     tm2_free_codes(&codes);
321
322     return skip;
323 }
324
325 static inline int GET_TOK(TM2Context *ctx,int type) {
326     if(ctx->tok_ptrs[type] >= ctx->tok_lens[type]) {
327         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]);
328         return 0;
329     }
330     if(type <= TM2_MOT)
331         return ctx->deltas[type][ctx->tokens[type][ctx->tok_ptrs[type]++]];
332     return ctx->tokens[type][ctx->tok_ptrs[type]++];
333 }
334
335 /* blocks decoding routines */
336
337 /* common Y, U, V pointers initialisation */
338 #define TM2_INIT_POINTERS() \
339     int *last, *clast; \
340     int *Y, *U, *V;\
341     int Ystride, Ustride, Vstride;\
342 \
343     Ystride = ctx->avctx->width;\
344     Vstride = (ctx->avctx->width + 1) >> 1;\
345     Ustride = (ctx->avctx->width + 1) >> 1;\
346     Y = (ctx->cur?ctx->Y2:ctx->Y1) + by * 4 * Ystride + bx * 4;\
347     V = (ctx->cur?ctx->V2:ctx->V1) + by * 2 * Vstride + bx * 2;\
348     U = (ctx->cur?ctx->U2:ctx->U1) + by * 2 * Ustride + bx * 2;\
349     last = ctx->last + bx * 4;\
350     clast = ctx->clast + bx * 4;
351
352 #define TM2_INIT_POINTERS_2() \
353     int *Yo, *Uo, *Vo;\
354     int oYstride, oUstride, oVstride;\
355 \
356     TM2_INIT_POINTERS();\
357     oYstride = Ystride;\
358     oVstride = Vstride;\
359     oUstride = Ustride;\
360     Yo = (ctx->cur?ctx->Y1:ctx->Y2) + by * 4 * oYstride + bx * 4;\
361     Vo = (ctx->cur?ctx->V1:ctx->V2) + by * 2 * oVstride + bx * 2;\
362     Uo = (ctx->cur?ctx->U1:ctx->U2) + by * 2 * oUstride + bx * 2;
363
364 /* recalculate last and delta values for next blocks */
365 #define TM2_RECALC_BLOCK(CHR, stride, last, CD) {\
366     CD[0] = CHR[1] - last[1];\
367     CD[1] = (int)CHR[stride + 1] - (int)CHR[1];\
368     last[0] = (int)CHR[stride + 0];\
369     last[1] = (int)CHR[stride + 1];}
370
371 /* common operations - add deltas to 4x4 block of luma or 2x2 blocks of chroma */
372 static inline void tm2_apply_deltas(TM2Context *ctx, int* Y, int stride, int *deltas, int *last)
373 {
374     int ct, d;
375     int i, j;
376
377     for(j = 0; j < 4; j++){
378         ct = ctx->D[j];
379         for(i = 0; i < 4; i++){
380             d = deltas[i + j * 4];
381             ct += d;
382             last[i] += ct;
383             Y[i] = av_clip_uint8(last[i]);
384         }
385         Y += stride;
386         ctx->D[j] = ct;
387     }
388 }
389
390 static inline void tm2_high_chroma(int *data, int stride, int *last, int *CD, int *deltas)
391 {
392     int i, j;
393     for(j = 0; j < 2; j++){
394         for(i = 0; i < 2; i++){
395             CD[j] += deltas[i + j * 2];
396             last[i] += CD[j];
397             data[i] = last[i];
398         }
399         data += stride;
400     }
401 }
402
403 static inline void tm2_low_chroma(int *data, int stride, int *clast, int *CD, int *deltas, int bx)
404 {
405     int t;
406     int l;
407     int prev;
408
409     if(bx > 0)
410         prev = clast[-3];
411     else
412         prev = 0;
413     t = (CD[0] + CD[1]) >> 1;
414     l = (prev - CD[0] - CD[1] + clast[1]) >> 1;
415     CD[1] = CD[0] + CD[1] - t;
416     CD[0] = t;
417     clast[0] = l;
418
419     tm2_high_chroma(data, stride, clast, CD, deltas);
420 }
421
422 static inline void tm2_hi_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
423 {
424     int i;
425     int deltas[16];
426     TM2_INIT_POINTERS();
427
428     /* hi-res chroma */
429     for(i = 0; i < 4; i++) {
430         deltas[i] = GET_TOK(ctx, TM2_C_HI);
431         deltas[i + 4] = GET_TOK(ctx, TM2_C_HI);
432     }
433     tm2_high_chroma(U, Ustride, clast, ctx->CD, deltas);
434     tm2_high_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas + 4);
435
436     /* hi-res luma */
437     for(i = 0; i < 16; i++)
438         deltas[i] = GET_TOK(ctx, TM2_L_HI);
439
440     tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
441 }
442
443 static inline void tm2_med_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
444 {
445     int i;
446     int deltas[16];
447     TM2_INIT_POINTERS();
448
449     /* low-res chroma */
450     deltas[0] = GET_TOK(ctx, TM2_C_LO);
451     deltas[1] = deltas[2] = deltas[3] = 0;
452     tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
453
454     deltas[0] = GET_TOK(ctx, TM2_C_LO);
455     deltas[1] = deltas[2] = deltas[3] = 0;
456     tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
457
458     /* hi-res luma */
459     for(i = 0; i < 16; i++)
460         deltas[i] = GET_TOK(ctx, TM2_L_HI);
461
462     tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
463 }
464
465 static inline void tm2_low_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
466 {
467     int i;
468     int t1, t2;
469     int deltas[16];
470     TM2_INIT_POINTERS();
471
472     /* low-res chroma */
473     deltas[0] = GET_TOK(ctx, TM2_C_LO);
474     deltas[1] = deltas[2] = deltas[3] = 0;
475     tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
476
477     deltas[0] = GET_TOK(ctx, TM2_C_LO);
478     deltas[1] = deltas[2] = deltas[3] = 0;
479     tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
480
481     /* low-res luma */
482     for(i = 0; i < 16; i++)
483         deltas[i] = 0;
484
485     deltas[ 0] = GET_TOK(ctx, TM2_L_LO);
486     deltas[ 2] = GET_TOK(ctx, TM2_L_LO);
487     deltas[ 8] = GET_TOK(ctx, TM2_L_LO);
488     deltas[10] = GET_TOK(ctx, TM2_L_LO);
489
490     if(bx > 0)
491         last[0] = (last[-1] - ctx->D[0] - ctx->D[1] - ctx->D[2] - ctx->D[3] + last[1]) >> 1;
492     else
493         last[0] = (last[1]  - ctx->D[0] - ctx->D[1] - ctx->D[2] - ctx->D[3])>> 1;
494     last[2] = (last[1] + last[3]) >> 1;
495
496     t1 = ctx->D[0] + ctx->D[1];
497     ctx->D[0] = t1 >> 1;
498     ctx->D[1] = t1 - (t1 >> 1);
499     t2 = ctx->D[2] + ctx->D[3];
500     ctx->D[2] = t2 >> 1;
501     ctx->D[3] = t2 - (t2 >> 1);
502
503     tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
504 }
505
506 static inline void tm2_null_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
507 {
508     int i;
509     int ct;
510     int left, right, diff;
511     int deltas[16];
512     TM2_INIT_POINTERS();
513
514     /* null chroma */
515     deltas[0] = deltas[1] = deltas[2] = deltas[3] = 0;
516     tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx);
517
518     deltas[0] = deltas[1] = deltas[2] = deltas[3] = 0;
519     tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx);
520
521     /* null luma */
522     for(i = 0; i < 16; i++)
523         deltas[i] = 0;
524
525     ct = ctx->D[0] + ctx->D[1] + ctx->D[2] + ctx->D[3];
526
527     if(bx > 0)
528         left = last[-1] - ct;
529     else
530         left = 0;
531
532     right = last[3];
533     diff = right - left;
534     last[0] = left + (diff >> 2);
535     last[1] = left + (diff >> 1);
536     last[2] = right - (diff >> 2);
537     last[3] = right;
538     {
539         int tp = left;
540
541         ctx->D[0] = (tp + (ct >> 2)) - left;
542         left += ctx->D[0];
543         ctx->D[1] = (tp + (ct >> 1)) - left;
544         left += ctx->D[1];
545         ctx->D[2] = ((tp + ct) - (ct >> 2)) - left;
546         left += ctx->D[2];
547         ctx->D[3] = (tp + ct) - left;
548     }
549     tm2_apply_deltas(ctx, Y, Ystride, deltas, last);
550 }
551
552 static inline void tm2_still_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
553 {
554     int i, j;
555     TM2_INIT_POINTERS_2();
556
557     /* update chroma */
558     for(j = 0; j < 2; j++){
559         for(i = 0; i < 2; i++){
560             U[i] = Uo[i];
561             V[i] = Vo[i];
562         }
563         U += Ustride; V += Vstride;
564         Uo += oUstride; Vo += oVstride;
565     }
566     U -= Ustride * 2;
567     V -= Vstride * 2;
568     TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
569     TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
570
571     /* update deltas */
572     ctx->D[0] = Yo[3] - last[3];
573     ctx->D[1] = Yo[3 + oYstride] - Yo[3];
574     ctx->D[2] = Yo[3 + oYstride * 2] - Yo[3 + oYstride];
575     ctx->D[3] = Yo[3 + oYstride * 3] - Yo[3 + oYstride * 2];
576
577     for(j = 0; j < 4; j++){
578         for(i = 0; i < 4; i++){
579             Y[i] = Yo[i];
580             last[i] = Yo[i];
581         }
582         Y += Ystride;
583         Yo += oYstride;
584     }
585 }
586
587 static inline void tm2_update_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
588 {
589     int i, j;
590     int d;
591     TM2_INIT_POINTERS_2();
592
593     /* update chroma */
594     for(j = 0; j < 2; j++){
595         for(i = 0; i < 2; i++){
596             U[i] = Uo[i] + GET_TOK(ctx, TM2_UPD);
597             V[i] = Vo[i] + GET_TOK(ctx, TM2_UPD);
598         }
599         U += Ustride; V += Vstride;
600         Uo += oUstride; Vo += oVstride;
601     }
602     U -= Ustride * 2;
603     V -= Vstride * 2;
604     TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
605     TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
606
607     /* update deltas */
608     ctx->D[0] = Yo[3] - last[3];
609     ctx->D[1] = Yo[3 + oYstride] - Yo[3];
610     ctx->D[2] = Yo[3 + oYstride * 2] - Yo[3 + oYstride];
611     ctx->D[3] = Yo[3 + oYstride * 3] - Yo[3 + oYstride * 2];
612
613     for(j = 0; j < 4; j++){
614         d = last[3];
615         for(i = 0; i < 4; i++){
616             Y[i] = Yo[i] + GET_TOK(ctx, TM2_UPD);
617             last[i] = Y[i];
618         }
619         ctx->D[j] = last[3] - d;
620         Y += Ystride;
621         Yo += oYstride;
622     }
623 }
624
625 static inline void tm2_motion_block(TM2Context *ctx, AVFrame *pic, int bx, int by)
626 {
627     int i, j;
628     int mx, my;
629     TM2_INIT_POINTERS_2();
630
631     mx = GET_TOK(ctx, TM2_MOT);
632     my = GET_TOK(ctx, TM2_MOT);
633
634     Yo += my * oYstride + mx;
635     Uo += (my >> 1) * oUstride + (mx >> 1);
636     Vo += (my >> 1) * oVstride + (mx >> 1);
637
638     /* copy chroma */
639     for(j = 0; j < 2; j++){
640         for(i = 0; i < 2; i++){
641             U[i] = Uo[i];
642             V[i] = Vo[i];
643         }
644         U += Ustride; V += Vstride;
645         Uo += oUstride; Vo += oVstride;
646     }
647     U -= Ustride * 2;
648     V -= Vstride * 2;
649     TM2_RECALC_BLOCK(U, Ustride, clast, ctx->CD);
650     TM2_RECALC_BLOCK(V, Vstride, (clast + 2), (ctx->CD + 2));
651
652     /* copy luma */
653     for(j = 0; j < 4; j++){
654         for(i = 0; i < 4; i++){
655             Y[i] = Yo[i];
656         }
657         Y += Ystride;
658         Yo += oYstride;
659     }
660     /* calculate deltas */
661     Y -= Ystride * 4;
662     ctx->D[0] = Y[3] - last[3];
663     ctx->D[1] = Y[3 + Ystride] - Y[3];
664     ctx->D[2] = Y[3 + Ystride * 2] - Y[3 + Ystride];
665     ctx->D[3] = Y[3 + Ystride * 3] - Y[3 + Ystride * 2];
666     for(i = 0; i < 4; i++)
667         last[i] = Y[i + Ystride * 3];
668 }
669
670 static int tm2_decode_blocks(TM2Context *ctx, AVFrame *p)
671 {
672     int i, j;
673     int bw, bh;
674     int type;
675     int keyframe = 1;
676     int *Y, *U, *V;
677     uint8_t *dst;
678
679     bw = ctx->avctx->width >> 2;
680     bh = ctx->avctx->height >> 2;
681
682     for(i = 0; i < TM2_NUM_STREAMS; i++)
683         ctx->tok_ptrs[i] = 0;
684
685     if (ctx->tok_lens[TM2_TYPE]<bw*bh){
686         av_log(ctx->avctx,AV_LOG_ERROR,"Got %i tokens for %i blocks\n",ctx->tok_lens[TM2_TYPE],bw*bh);
687         return -1;
688     }
689
690     memset(ctx->last, 0, 4 * bw * sizeof(int));
691     memset(ctx->clast, 0, 4 * bw * sizeof(int));
692
693     for(j = 0; j < bh; j++) {
694         memset(ctx->D, 0, 4 * sizeof(int));
695         memset(ctx->CD, 0, 4 * sizeof(int));
696         for(i = 0; i < bw; i++) {
697             type = GET_TOK(ctx, TM2_TYPE);
698             switch(type) {
699             case TM2_HI_RES:
700                 tm2_hi_res_block(ctx, p, i, j);
701                 break;
702             case TM2_MED_RES:
703                 tm2_med_res_block(ctx, p, i, j);
704                 break;
705             case TM2_LOW_RES:
706                 tm2_low_res_block(ctx, p, i, j);
707                 break;
708             case TM2_NULL_RES:
709                 tm2_null_res_block(ctx, p, i, j);
710                 break;
711             case TM2_UPDATE:
712                 tm2_update_block(ctx, p, i, j);
713                 keyframe = 0;
714                 break;
715             case TM2_STILL:
716                 tm2_still_block(ctx, p, i, j);
717                 keyframe = 0;
718                 break;
719             case TM2_MOTION:
720                 tm2_motion_block(ctx, p, i, j);
721                 keyframe = 0;
722                 break;
723             default:
724                 av_log(ctx->avctx, AV_LOG_ERROR, "Skipping unknown block type %i\n", type);
725             }
726         }
727     }
728
729     /* copy data from our buffer to AVFrame */
730     Y = (ctx->cur?ctx->Y2:ctx->Y1);
731     U = (ctx->cur?ctx->U2:ctx->U1);
732     V = (ctx->cur?ctx->V2:ctx->V1);
733     dst = p->data[0];
734     for(j = 0; j < ctx->avctx->height; j++){
735         for(i = 0; i < ctx->avctx->width; i++){
736             int y = Y[i], u = U[i >> 1], v = V[i >> 1];
737             dst[3*i+0] = av_clip_uint8(y + v);
738             dst[3*i+1] = av_clip_uint8(y);
739             dst[3*i+2] = av_clip_uint8(y + u);
740         }
741         Y += ctx->avctx->width;
742         if (j & 1) {
743             U += ctx->avctx->width >> 1;
744             V += ctx->avctx->width >> 1;
745         }
746         dst += p->linesize[0];
747     }
748
749     return keyframe;
750 }
751
752 static const int tm2_stream_order[TM2_NUM_STREAMS] = {
753     TM2_C_HI, TM2_C_LO, TM2_L_HI, TM2_L_LO, TM2_UPD, TM2_MOT, TM2_TYPE
754 };
755
756 static int decode_frame(AVCodecContext *avctx,
757                         void *data, int *data_size,
758                         AVPacket *avpkt)
759 {
760     const uint8_t *buf = avpkt->data;
761     int buf_size = avpkt->size;
762     TM2Context * const l = avctx->priv_data;
763     AVFrame * const p= (AVFrame*)&l->pic;
764     int i, skip, t;
765     uint8_t *swbuf;
766
767     swbuf = av_malloc(buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
768     if(!swbuf){
769         av_log(avctx, AV_LOG_ERROR, "Cannot allocate temporary buffer\n");
770         return -1;
771     }
772     p->reference = 3;
773     p->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
774     if(avctx->reget_buffer(avctx, p) < 0){
775         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
776         av_free(swbuf);
777         return -1;
778     }
779
780     l->dsp.bswap_buf((uint32_t*)swbuf, (const uint32_t*)buf, buf_size >> 2);
781     skip = tm2_read_header(l, swbuf);
782
783     if(skip == -1){
784         av_free(swbuf);
785         return -1;
786     }
787
788     for(i = 0; i < TM2_NUM_STREAMS; i++){
789         t = tm2_read_stream(l, swbuf + skip, tm2_stream_order[i], buf_size);
790         if(t == -1){
791             av_free(swbuf);
792             return -1;
793         }
794         skip += t;
795     }
796     p->key_frame = tm2_decode_blocks(l, p);
797     if(p->key_frame)
798         p->pict_type = AV_PICTURE_TYPE_I;
799     else
800         p->pict_type = AV_PICTURE_TYPE_P;
801
802     l->cur = !l->cur;
803     *data_size = sizeof(AVFrame);
804     *(AVFrame*)data = l->pic;
805     av_free(swbuf);
806
807     return buf_size;
808 }
809
810 static av_cold int decode_init(AVCodecContext *avctx){
811     TM2Context * const l = avctx->priv_data;
812     int i;
813
814     if((avctx->width & 3) || (avctx->height & 3)){
815         av_log(avctx, AV_LOG_ERROR, "Width and height must be multiple of 4\n");
816         return -1;
817     }
818
819     l->avctx = avctx;
820     l->pic.data[0]=NULL;
821     avctx->pix_fmt = PIX_FMT_BGR24;
822     avcodec_get_frame_defaults(&l->pic);
823
824     dsputil_init(&l->dsp, avctx);
825
826     l->last = av_malloc(4 * sizeof(int) * (avctx->width >> 2));
827     l->clast = av_malloc(4 * sizeof(int) * (avctx->width >> 2));
828
829     for(i = 0; i < TM2_NUM_STREAMS; i++) {
830         l->tokens[i] = NULL;
831         l->tok_lens[i] = 0;
832     }
833
834     l->Y1 = av_malloc(sizeof(int) * avctx->width * avctx->height);
835     l->U1 = av_malloc(sizeof(int) * ((avctx->width + 1) >> 1) * ((avctx->height + 1) >> 1));
836     l->V1 = av_malloc(sizeof(int) * ((avctx->width + 1) >> 1) * ((avctx->height + 1) >> 1));
837     l->Y2 = av_malloc(sizeof(int) * avctx->width * avctx->height);
838     l->U2 = av_malloc(sizeof(int) * ((avctx->width + 1) >> 1) * ((avctx->height + 1) >> 1));
839     l->V2 = av_malloc(sizeof(int) * ((avctx->width + 1) >> 1) * ((avctx->height + 1) >> 1));
840     l->cur = 0;
841
842     return 0;
843 }
844
845 static av_cold int decode_end(AVCodecContext *avctx){
846     TM2Context * const l = avctx->priv_data;
847     AVFrame *pic = &l->pic;
848     int i;
849
850     av_free(l->last);
851     av_free(l->clast);
852     for(i = 0; i < TM2_NUM_STREAMS; i++)
853         av_free(l->tokens[i]);
854     if(l->Y1){
855         av_free(l->Y1);
856         av_free(l->U1);
857         av_free(l->V1);
858         av_free(l->Y2);
859         av_free(l->U2);
860         av_free(l->V2);
861     }
862
863     if (pic->data[0])
864         avctx->release_buffer(avctx, pic);
865
866     return 0;
867 }
868
869 AVCodec ff_truemotion2_decoder = {
870     .name           = "truemotion2",
871     .type           = AVMEDIA_TYPE_VIDEO,
872     .id             = CODEC_ID_TRUEMOTION2,
873     .priv_data_size = sizeof(TM2Context),
874     .init           = decode_init,
875     .close          = decode_end,
876     .decode         = decode_frame,
877     .capabilities   = CODEC_CAP_DR1,
878     .long_name = NULL_IF_CONFIG_SMALL("Duck TrueMotion 2.0"),
879 };