]> git.sesse.net Git - ffmpeg/blob - libavcodec/magicyuv.c
d2f6a9b01e9f37861d865e1baaf1b2c91a828695
[ffmpeg] / libavcodec / magicyuv.c
1 /*
2  * MagicYUV decoder
3  * Copyright (c) 2016 Paul B Mahol
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 #include <stdlib.h>
23 #include <string.h>
24
25 #define CACHED_BITSTREAM_READER !ARCH_X86_32
26
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/qsort.h"
29
30 #include "avcodec.h"
31 #include "bytestream.h"
32 #include "get_bits.h"
33 #include "huffyuvdsp.h"
34 #include "internal.h"
35 #include "lossless_videodsp.h"
36 #include "thread.h"
37
38 typedef struct Slice {
39     uint32_t start;
40     uint32_t size;
41 } Slice;
42
43 typedef enum Prediction {
44     LEFT = 1,
45     GRADIENT,
46     MEDIAN,
47 } Prediction;
48
49 typedef struct HuffEntry {
50     uint16_t sym;
51     uint8_t  len;
52     uint32_t code;
53 } HuffEntry;
54
55 typedef struct MagicYUVContext {
56     AVFrame          *p;
57     int               max;
58     int               bps;
59     int               slice_height;
60     int               nb_slices;
61     int               planes;         // number of encoded planes in bitstream
62     int               decorrelate;    // postprocessing work
63     int               color_matrix;   // video color matrix
64     int               flags;
65     int               interlaced;     // video is interlaced
66     uint8_t          *buf;            // pointer to AVPacket->data
67     int               hshift[4];
68     int               vshift[4];
69     Slice            *slices[4];      // slice bitstream positions for each plane
70     unsigned int      slices_size[4]; // slice sizes for each plane
71     VLC               vlc[4];         // VLC for each plane
72     int (*magy_decode_slice)(AVCodecContext *avctx, void *tdata,
73                              int j, int threadnr);
74     LLVidDSPContext   llviddsp;
75 } MagicYUVContext;
76
77 static int huff_cmp_len(const void *a, const void *b)
78 {
79     const HuffEntry *aa = a, *bb = b;
80     return (aa->len - bb->len) * 4096 + bb->sym - aa->sym;
81 }
82
83 static int huff_build(HuffEntry he[], VLC *vlc, int nb_elems)
84 {
85     uint32_t code;
86     int i;
87
88     AV_QSORT(he, nb_elems, HuffEntry, huff_cmp_len);
89
90     code = 1;
91     for (i = nb_elems - 1; i >= 0; i--) {
92         he[i].code = code >> (32 - he[i].len);
93         code += 0x80000000u >> (he[i].len - 1);
94     }
95
96     ff_free_vlc(vlc);
97     return ff_init_vlc_sparse(vlc, FFMIN(he[nb_elems - 1].len, 12), nb_elems,
98                               &he[0].len,  sizeof(he[0]), sizeof(he[0].len),
99                               &he[0].code, sizeof(he[0]), sizeof(he[0].code),
100                               &he[0].sym,  sizeof(he[0]), sizeof(he[0].sym),  0);
101 }
102
103 static void magicyuv_median_pred16(uint16_t *dst, const uint16_t *src1,
104                                    const uint16_t *diff, intptr_t w,
105                                    int *left, int *left_top, int max)
106 {
107     int i;
108     uint16_t l, lt;
109
110     l  = *left;
111     lt = *left_top;
112
113     for (i = 0; i < w; i++) {
114         l      = mid_pred(l, src1[i], (l + src1[i] - lt)) + diff[i];
115         l     &= max;
116         lt     = src1[i];
117         dst[i] = l;
118     }
119
120     *left     = l;
121     *left_top = lt;
122 }
123
124 static int magy_decode_slice10(AVCodecContext *avctx, void *tdata,
125                                int j, int threadnr)
126 {
127     MagicYUVContext *s = avctx->priv_data;
128     int interlaced = s->interlaced;
129     const int bps = s->bps;
130     const int max = s->max - 1;
131     AVFrame *p = s->p;
132     int i, k, x;
133     GetBitContext gb;
134     uint16_t *dst;
135
136     for (i = 0; i < s->planes; i++) {
137         int left, lefttop, top;
138         int height = AV_CEIL_RSHIFT(FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height), s->vshift[i]);
139         int width = AV_CEIL_RSHIFT(avctx->coded_width, s->hshift[i]);
140         int sheight = AV_CEIL_RSHIFT(s->slice_height, s->vshift[i]);
141         ptrdiff_t fake_stride = (p->linesize[i] / 2) * (1 + interlaced);
142         ptrdiff_t stride = p->linesize[i] / 2;
143         int flags, pred;
144         int ret = init_get_bits8(&gb, s->buf + s->slices[i][j].start,
145                                  s->slices[i][j].size);
146
147         if (ret < 0)
148             return ret;
149
150         flags = get_bits(&gb, 8);
151         pred  = get_bits(&gb, 8);
152
153         dst = (uint16_t *)p->data[i] + j * sheight * stride;
154         if (flags & 1) {
155             if (get_bits_left(&gb) < bps * width * height)
156                 return AVERROR_INVALIDDATA;
157             for (k = 0; k < height; k++) {
158                 for (x = 0; x < width; x++)
159                     dst[x] = get_bits(&gb, bps);
160
161                 dst += stride;
162             }
163         } else {
164             for (k = 0; k < height; k++) {
165                 for (x = 0; x < width; x++) {
166                     int pix;
167                     if (get_bits_left(&gb) <= 0)
168                         return AVERROR_INVALIDDATA;
169
170                     pix = get_vlc2(&gb, s->vlc[i].table, s->vlc[i].bits, 3);
171                     if (pix < 0)
172                         return AVERROR_INVALIDDATA;
173
174                     dst[x] = pix;
175                 }
176                 dst += stride;
177             }
178         }
179
180         switch (pred) {
181         case LEFT:
182             dst = (uint16_t *)p->data[i] + j * sheight * stride;
183             s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
184             dst += stride;
185             if (interlaced) {
186                 s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
187                 dst += stride;
188             }
189             for (k = 1 + interlaced; k < height; k++) {
190                 s->llviddsp.add_left_pred_int16(dst, dst, max, width, dst[-fake_stride]);
191                 dst += stride;
192             }
193             break;
194         case GRADIENT:
195             dst = (uint16_t *)p->data[i] + j * sheight * stride;
196             s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
197             dst += stride;
198             if (interlaced) {
199                 s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
200                 dst += stride;
201             }
202             for (k = 1 + interlaced; k < height; k++) {
203                 top = dst[-fake_stride];
204                 left = top + dst[0];
205                 dst[0] = left & max;
206                 for (x = 1; x < width; x++) {
207                     top = dst[x - fake_stride];
208                     lefttop = dst[x - (fake_stride + 1)];
209                     left += top - lefttop + dst[x];
210                     dst[x] = left & max;
211                 }
212                 dst += stride;
213             }
214             break;
215         case MEDIAN:
216             dst = (uint16_t *)p->data[i] + j * sheight * stride;
217             s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
218             dst += stride;
219             if (interlaced) {
220                 s->llviddsp.add_left_pred_int16(dst, dst, max, width, 0);
221                 dst += stride;
222             }
223             lefttop = left = dst[0];
224             for (k = 1 + interlaced; k < height; k++) {
225                 magicyuv_median_pred16(dst, dst - fake_stride, dst, width, &left, &lefttop, max);
226                 lefttop = left = dst[0];
227                 dst += stride;
228             }
229             break;
230         default:
231             avpriv_request_sample(avctx, "Unknown prediction: %d", pred);
232         }
233     }
234
235     if (s->decorrelate) {
236         int height = FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height);
237         int width = avctx->coded_width;
238         uint16_t *r = (uint16_t *)p->data[0] + j * s->slice_height * p->linesize[0] / 2;
239         uint16_t *g = (uint16_t *)p->data[1] + j * s->slice_height * p->linesize[1] / 2;
240         uint16_t *b = (uint16_t *)p->data[2] + j * s->slice_height * p->linesize[2] / 2;
241
242         for (i = 0; i < height; i++) {
243             for (k = 0; k < width; k++) {
244                 b[k] = (b[k] + g[k]) & max;
245                 r[k] = (r[k] + g[k]) & max;
246             }
247             b += p->linesize[0] / 2;
248             g += p->linesize[1] / 2;
249             r += p->linesize[2] / 2;
250         }
251     }
252
253     return 0;
254 }
255
256 static int magy_decode_slice(AVCodecContext *avctx, void *tdata,
257                              int j, int threadnr)
258 {
259     MagicYUVContext *s = avctx->priv_data;
260     int interlaced = s->interlaced;
261     AVFrame *p = s->p;
262     int i, k, x, min_width;
263     GetBitContext gb;
264     uint8_t *dst;
265
266     for (i = 0; i < s->planes; i++) {
267         int left, lefttop, top;
268         int height = AV_CEIL_RSHIFT(FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height), s->vshift[i]);
269         int width = AV_CEIL_RSHIFT(avctx->coded_width, s->hshift[i]);
270         int sheight = AV_CEIL_RSHIFT(s->slice_height, s->vshift[i]);
271         ptrdiff_t fake_stride = p->linesize[i] * (1 + interlaced);
272         ptrdiff_t stride = p->linesize[i];
273         int flags, pred;
274         int ret = init_get_bits8(&gb, s->buf + s->slices[i][j].start,
275                                  s->slices[i][j].size);
276
277         if (ret < 0)
278             return ret;
279
280         flags = get_bits(&gb, 8);
281         pred  = get_bits(&gb, 8);
282
283         dst = p->data[i] + j * sheight * stride;
284         if (flags & 1) {
285             if (get_bits_left(&gb) < 8* width * height)
286                 return AVERROR_INVALIDDATA;
287             for (k = 0; k < height; k++) {
288                 for (x = 0; x < width; x++)
289                     dst[x] = get_bits(&gb, 8);
290
291                 dst += stride;
292             }
293         } else {
294             for (k = 0; k < height; k++) {
295                 for (x = 0; x < width; x++) {
296                     int pix;
297                     if (get_bits_left(&gb) <= 0)
298                         return AVERROR_INVALIDDATA;
299
300                     pix = get_vlc2(&gb, s->vlc[i].table, s->vlc[i].bits, 3);
301                     if (pix < 0)
302                         return AVERROR_INVALIDDATA;
303
304                     dst[x] = pix;
305                 }
306                 dst += stride;
307             }
308         }
309
310         switch (pred) {
311         case LEFT:
312             dst = p->data[i] + j * sheight * stride;
313             s->llviddsp.add_left_pred(dst, dst, width, 0);
314             dst += stride;
315             if (interlaced) {
316                 s->llviddsp.add_left_pred(dst, dst, width, 0);
317                 dst += stride;
318             }
319             for (k = 1 + interlaced; k < height; k++) {
320                 s->llviddsp.add_left_pred(dst, dst, width, dst[-fake_stride]);
321                 dst += stride;
322             }
323             break;
324         case GRADIENT:
325             dst = p->data[i] + j * sheight * stride;
326             s->llviddsp.add_left_pred(dst, dst, width, 0);
327             dst += stride;
328             if (interlaced) {
329                 s->llviddsp.add_left_pred(dst, dst, width, 0);
330                 dst += stride;
331             }
332             min_width = FFMIN(width, 32);
333             for (k = 1 + interlaced; k < height; k++) {
334                 top = dst[-fake_stride];
335                 left = top + dst[0];
336                 dst[0] = left;
337                 for (x = 1; x < min_width; x++) { /* dsp need aligned 32 */
338                     top = dst[x - fake_stride];
339                     lefttop = dst[x - (fake_stride + 1)];
340                     left += top - lefttop + dst[x];
341                     dst[x] = left;
342                 }
343                 if (width > 32)
344                     s->llviddsp.add_gradient_pred(dst + 32, fake_stride, width - 32);
345                 dst += stride;
346             }
347             break;
348         case MEDIAN:
349             dst = p->data[i] + j * sheight * stride;
350             s->llviddsp.add_left_pred(dst, dst, width, 0);
351             dst += stride;
352             if (interlaced) {
353                 s->llviddsp.add_left_pred(dst, dst, width, 0);
354                 dst += stride;
355             }
356             lefttop = left = dst[0];
357             for (k = 1 + interlaced; k < height; k++) {
358                 s->llviddsp.add_median_pred(dst, dst - fake_stride,
359                                              dst, width, &left, &lefttop);
360                 lefttop = left = dst[0];
361                 dst += stride;
362             }
363             break;
364         default:
365             avpriv_request_sample(avctx, "Unknown prediction: %d", pred);
366         }
367     }
368
369     if (s->decorrelate) {
370         int height = FFMIN(s->slice_height, avctx->coded_height - j * s->slice_height);
371         int width = avctx->coded_width;
372         uint8_t *b = p->data[0] + j * s->slice_height * p->linesize[0];
373         uint8_t *g = p->data[1] + j * s->slice_height * p->linesize[1];
374         uint8_t *r = p->data[2] + j * s->slice_height * p->linesize[2];
375
376         for (i = 0; i < height; i++) {
377             s->llviddsp.add_bytes(b, g, width);
378             s->llviddsp.add_bytes(r, g, width);
379             b += p->linesize[0];
380             g += p->linesize[1];
381             r += p->linesize[2];
382         }
383     }
384
385     return 0;
386 }
387
388 static int build_huffman(AVCodecContext *avctx, GetBitContext *gbit, int max)
389 {
390     MagicYUVContext *s = avctx->priv_data;
391     HuffEntry he[4096];
392     int i = 0, j = 0, k;
393
394     while (get_bits_left(gbit) >= 8) {
395         int b = get_bits(gbit, 1);
396         int x = get_bits(gbit, 7);
397         int l = 1;
398
399         if (b) {
400             if (get_bits_left(gbit) < 8)
401                 break;
402             l += get_bits(gbit, 8);
403         }
404         k = j + l;
405         if (k > max || x == 0 || x > 32) {
406             av_log(avctx, AV_LOG_ERROR, "Invalid Huffman codes\n");
407             return AVERROR_INVALIDDATA;
408         }
409
410         for (; j < k; j++) {
411             he[j].sym = j;
412             he[j].len = x;
413         }
414
415         if (j == max) {
416             j = 0;
417             if (huff_build(he, &s->vlc[i], max)) {
418                 av_log(avctx, AV_LOG_ERROR, "Cannot build Huffman codes\n");
419                 return AVERROR_INVALIDDATA;
420             }
421             i++;
422             if (i == s->planes) {
423                 break;
424             }
425         }
426     }
427
428     if (i != s->planes) {
429         av_log(avctx, AV_LOG_ERROR, "Huffman tables too short\n");
430         return AVERROR_INVALIDDATA;
431     }
432
433     return 0;
434 }
435
436 static int magy_decode_frame(AVCodecContext *avctx, void *data,
437                              int *got_frame, AVPacket *avpkt)
438 {
439     MagicYUVContext *s = avctx->priv_data;
440     ThreadFrame frame = { .f = data };
441     AVFrame *p = data;
442     GetByteContext gbyte;
443     GetBitContext gbit;
444     uint32_t first_offset, offset, next_offset, header_size, slice_width;
445     int width, height, format, version, table_size;
446     int ret, i, j;
447
448     bytestream2_init(&gbyte, avpkt->data, avpkt->size);
449     if (bytestream2_get_le32(&gbyte) != MKTAG('M', 'A', 'G', 'Y'))
450         return AVERROR_INVALIDDATA;
451
452     header_size = bytestream2_get_le32(&gbyte);
453     if (header_size < 32 || header_size >= avpkt->size) {
454         av_log(avctx, AV_LOG_ERROR,
455                "header or packet too small %"PRIu32"\n", header_size);
456         return AVERROR_INVALIDDATA;
457     }
458
459     version = bytestream2_get_byte(&gbyte);
460     if (version != 7) {
461         avpriv_request_sample(avctx, "Version %d", version);
462         return AVERROR_PATCHWELCOME;
463     }
464
465     s->hshift[1] =
466     s->vshift[1] =
467     s->hshift[2] =
468     s->vshift[2] = 0;
469     s->decorrelate = 0;
470     s->bps = 8;
471
472     format = bytestream2_get_byte(&gbyte);
473     switch (format) {
474     case 0x65:
475         avctx->pix_fmt = AV_PIX_FMT_GBRP;
476         s->decorrelate = 1;
477         break;
478     case 0x66:
479         avctx->pix_fmt = AV_PIX_FMT_GBRAP;
480         s->decorrelate = 1;
481         break;
482     case 0x67:
483         avctx->pix_fmt = AV_PIX_FMT_YUV444P;
484         break;
485     case 0x68:
486         avctx->pix_fmt = AV_PIX_FMT_YUV422P;
487         s->hshift[1] =
488         s->hshift[2] = 1;
489         break;
490     case 0x69:
491         avctx->pix_fmt = AV_PIX_FMT_YUV420P;
492         s->hshift[1] =
493         s->vshift[1] =
494         s->hshift[2] =
495         s->vshift[2] = 1;
496         break;
497     case 0x6a:
498         avctx->pix_fmt = AV_PIX_FMT_YUVA444P;
499         break;
500     case 0x6b:
501         avctx->pix_fmt = AV_PIX_FMT_GRAY8;
502         break;
503     case 0x6c:
504         avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
505         s->hshift[1] =
506         s->hshift[2] = 1;
507         s->bps = 10;
508         break;
509     case 0x76:
510         avctx->pix_fmt = AV_PIX_FMT_YUV444P10;
511         s->bps = 10;
512         break;
513     case 0x6d:
514         avctx->pix_fmt = AV_PIX_FMT_GBRP10;
515         s->decorrelate = 1;
516         s->bps = 10;
517         break;
518     case 0x6e:
519         avctx->pix_fmt = AV_PIX_FMT_GBRAP10;
520         s->decorrelate = 1;
521         s->bps = 10;
522         break;
523     case 0x6f:
524         avctx->pix_fmt = AV_PIX_FMT_GBRP12;
525         s->decorrelate = 1;
526         s->bps = 12;
527         break;
528     case 0x70:
529         avctx->pix_fmt = AV_PIX_FMT_GBRAP12;
530         s->decorrelate = 1;
531         s->bps = 12;
532         break;
533     case 0x73:
534         avctx->pix_fmt = AV_PIX_FMT_GRAY10;
535         s->bps = 10;
536         break;
537     case 0x7b:
538         avctx->pix_fmt = AV_PIX_FMT_YUV420P10;
539         s->hshift[1] =
540         s->vshift[1] =
541         s->hshift[2] =
542         s->vshift[2] = 1;
543         s->bps = 10;
544         break;
545     default:
546         avpriv_request_sample(avctx, "Format 0x%X", format);
547         return AVERROR_PATCHWELCOME;
548     }
549     s->max = 1 << s->bps;
550     s->magy_decode_slice = s->bps == 8 ? magy_decode_slice : magy_decode_slice10;
551     s->planes = av_pix_fmt_count_planes(avctx->pix_fmt);
552
553     bytestream2_skip(&gbyte, 1);
554     s->color_matrix = bytestream2_get_byte(&gbyte);
555     s->flags        = bytestream2_get_byte(&gbyte);
556     s->interlaced   = !!(s->flags & 2);
557     bytestream2_skip(&gbyte, 3);
558
559     width  = bytestream2_get_le32(&gbyte);
560     height = bytestream2_get_le32(&gbyte);
561     ret = ff_set_dimensions(avctx, width, height);
562     if (ret < 0)
563         return ret;
564
565     slice_width = bytestream2_get_le32(&gbyte);
566     if (slice_width != avctx->coded_width) {
567         avpriv_request_sample(avctx, "Slice width %"PRIu32, slice_width);
568         return AVERROR_PATCHWELCOME;
569     }
570     s->slice_height = bytestream2_get_le32(&gbyte);
571     if (s->slice_height <= 0 || s->slice_height > INT_MAX - avctx->coded_height) {
572         av_log(avctx, AV_LOG_ERROR,
573                "invalid slice height: %d\n", s->slice_height);
574         return AVERROR_INVALIDDATA;
575     }
576
577     bytestream2_skip(&gbyte, 4);
578
579     s->nb_slices = (avctx->coded_height + s->slice_height - 1) / s->slice_height;
580     if (s->nb_slices > INT_MAX / sizeof(Slice)) {
581         av_log(avctx, AV_LOG_ERROR,
582                "invalid number of slices: %d\n", s->nb_slices);
583         return AVERROR_INVALIDDATA;
584     }
585
586     if (s->interlaced) {
587         if ((s->slice_height >> s->vshift[1]) < 2) {
588             av_log(avctx, AV_LOG_ERROR, "impossible slice height\n");
589             return AVERROR_INVALIDDATA;
590         }
591         if ((avctx->coded_height % s->slice_height) && ((avctx->coded_height % s->slice_height) >> s->vshift[1]) < 2) {
592             av_log(avctx, AV_LOG_ERROR, "impossible height\n");
593             return AVERROR_INVALIDDATA;
594         }
595     }
596
597     for (i = 0; i < s->planes; i++) {
598         av_fast_malloc(&s->slices[i], &s->slices_size[i], s->nb_slices * sizeof(Slice));
599         if (!s->slices[i])
600             return AVERROR(ENOMEM);
601
602         offset = bytestream2_get_le32(&gbyte);
603         if (offset >= avpkt->size - header_size)
604             return AVERROR_INVALIDDATA;
605
606         if (i == 0)
607             first_offset = offset;
608
609         for (j = 0; j < s->nb_slices - 1; j++) {
610             s->slices[i][j].start = offset + header_size;
611
612             next_offset = bytestream2_get_le32(&gbyte);
613             if (next_offset <= offset || next_offset >= avpkt->size - header_size)
614                 return AVERROR_INVALIDDATA;
615
616             s->slices[i][j].size = next_offset - offset;
617             offset = next_offset;
618         }
619
620         s->slices[i][j].start = offset + header_size;
621         s->slices[i][j].size  = avpkt->size - s->slices[i][j].start;
622     }
623
624     if (bytestream2_get_byte(&gbyte) != s->planes)
625         return AVERROR_INVALIDDATA;
626
627     bytestream2_skip(&gbyte, s->nb_slices * s->planes);
628
629     table_size = header_size + first_offset - bytestream2_tell(&gbyte);
630     if (table_size < 2)
631         return AVERROR_INVALIDDATA;
632
633     ret = init_get_bits8(&gbit, avpkt->data + bytestream2_tell(&gbyte), table_size);
634     if (ret < 0)
635         return ret;
636
637     ret = build_huffman(avctx, &gbit, s->max);
638     if (ret < 0)
639         return ret;
640
641     p->pict_type = AV_PICTURE_TYPE_I;
642     p->key_frame = 1;
643
644     if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
645         return ret;
646
647     s->buf = avpkt->data;
648     s->p = p;
649     avctx->execute2(avctx, s->magy_decode_slice, NULL, NULL, s->nb_slices);
650
651     if (avctx->pix_fmt == AV_PIX_FMT_GBRP   ||
652         avctx->pix_fmt == AV_PIX_FMT_GBRAP  ||
653         avctx->pix_fmt == AV_PIX_FMT_GBRP10 ||
654         avctx->pix_fmt == AV_PIX_FMT_GBRAP10||
655         avctx->pix_fmt == AV_PIX_FMT_GBRAP12||
656         avctx->pix_fmt == AV_PIX_FMT_GBRP12) {
657         FFSWAP(uint8_t*, p->data[0], p->data[1]);
658         FFSWAP(int, p->linesize[0], p->linesize[1]);
659     } else {
660         switch (s->color_matrix) {
661         case 1:
662             p->colorspace = AVCOL_SPC_BT470BG;
663             break;
664         case 2:
665             p->colorspace = AVCOL_SPC_BT709;
666             break;
667         }
668         p->color_range = (s->flags & 4) ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
669     }
670
671     *got_frame = 1;
672
673     return avpkt->size;
674 }
675
676 static av_cold int magy_decode_init(AVCodecContext *avctx)
677 {
678     MagicYUVContext *s = avctx->priv_data;
679     ff_llviddsp_init(&s->llviddsp);
680     return 0;
681 }
682
683 static av_cold int magy_decode_end(AVCodecContext *avctx)
684 {
685     MagicYUVContext * const s = avctx->priv_data;
686     int i;
687
688     for (i = 0; i < FF_ARRAY_ELEMS(s->slices); i++) {
689         av_freep(&s->slices[i]);
690         s->slices_size[i] = 0;
691         ff_free_vlc(&s->vlc[i]);
692     }
693
694     return 0;
695 }
696
697 AVCodec ff_magicyuv_decoder = {
698     .name             = "magicyuv",
699     .long_name        = NULL_IF_CONFIG_SMALL("MagicYUV video"),
700     .type             = AVMEDIA_TYPE_VIDEO,
701     .id               = AV_CODEC_ID_MAGICYUV,
702     .priv_data_size   = sizeof(MagicYUVContext),
703     .init             = magy_decode_init,
704     .close            = magy_decode_end,
705     .decode           = magy_decode_frame,
706     .capabilities     = AV_CODEC_CAP_DR1 |
707                         AV_CODEC_CAP_FRAME_THREADS |
708                         AV_CODEC_CAP_SLICE_THREADS,
709     .caps_internal    = FF_CODEC_CAP_INIT_THREADSAFE,
710 };