OSDN Git Service

avcodec/vorbisenc: Include bufqueue and afqueue
[android-x86/external-ffmpeg.git] / libavcodec / lagarith.c
1 /*
2  * Lagarith lossless decoder
3  * Copyright (c) 2009 Nathan Caldwell <saintdev (at) gmail.com>
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  * Lagarith lossless decoder
25  * @author Nathan Caldwell
26  */
27
28 #include <inttypes.h>
29
30 #include "avcodec.h"
31 #include "get_bits.h"
32 #include "mathops.h"
33 #include "lagarithrac.h"
34 #include "lossless_videodsp.h"
35 #include "thread.h"
36
37 enum LagarithFrameType {
38     FRAME_RAW           = 1,    /**< uncompressed */
39     FRAME_U_RGB24       = 2,    /**< unaligned RGB24 */
40     FRAME_ARITH_YUY2    = 3,    /**< arithmetic coded YUY2 */
41     FRAME_ARITH_RGB24   = 4,    /**< arithmetic coded RGB24 */
42     FRAME_SOLID_GRAY    = 5,    /**< solid grayscale color frame */
43     FRAME_SOLID_COLOR   = 6,    /**< solid non-grayscale color frame */
44     FRAME_OLD_ARITH_RGB = 7,    /**< obsolete arithmetic coded RGB (no longer encoded by upstream since version 1.1.0) */
45     FRAME_ARITH_RGBA    = 8,    /**< arithmetic coded RGBA */
46     FRAME_SOLID_RGBA    = 9,    /**< solid RGBA color frame */
47     FRAME_ARITH_YV12    = 10,   /**< arithmetic coded YV12 */
48     FRAME_REDUCED_RES   = 11,   /**< reduced resolution YV12 frame */
49 };
50
51 typedef struct LagarithContext {
52     AVCodecContext *avctx;
53     LLVidDSPContext llviddsp;
54     int zeros;                  /**< number of consecutive zero bytes encountered */
55     int zeros_rem;              /**< number of zero bytes remaining to output */
56     uint8_t *rgb_planes;
57     int      rgb_planes_allocated;
58     int rgb_stride;
59 } LagarithContext;
60
61 /**
62  * Compute the 52-bit mantissa of 1/(double)denom.
63  * This crazy format uses floats in an entropy coder and we have to match x86
64  * rounding exactly, thus ordinary floats aren't portable enough.
65  * @param denom denominator
66  * @return 52-bit mantissa
67  * @see softfloat_mul
68  */
69 static uint64_t softfloat_reciprocal(uint32_t denom)
70 {
71     int shift = av_log2(denom - 1) + 1;
72     uint64_t ret = (1ULL << 52) / denom;
73     uint64_t err = (1ULL << 52) - ret * denom;
74     ret <<= shift;
75     err <<= shift;
76     err +=  denom / 2;
77     return ret + err / denom;
78 }
79
80 /**
81  * (uint32_t)(x*f), where f has the given mantissa, and exponent 0
82  * Used in combination with softfloat_reciprocal computes x/(double)denom.
83  * @param x 32-bit integer factor
84  * @param mantissa mantissa of f with exponent 0
85  * @return 32-bit integer value (x*f)
86  * @see softfloat_reciprocal
87  */
88 static uint32_t softfloat_mul(uint32_t x, uint64_t mantissa)
89 {
90     uint64_t l = x * (mantissa & 0xffffffff);
91     uint64_t h = x * (mantissa >> 32);
92     h += l >> 32;
93     l &= 0xffffffff;
94     l += 1LL << av_log2(h >> 21);
95     h += l >> 32;
96     return h >> 20;
97 }
98
99 static uint8_t lag_calc_zero_run(int8_t x)
100 {
101     return (x * 2) ^ (x >> 7);
102 }
103
104 static int lag_decode_prob(GetBitContext *gb, uint32_t *value)
105 {
106     static const uint8_t series[] = { 1, 2, 3, 5, 8, 13, 21 };
107     int i;
108     int bit     = 0;
109     int bits    = 0;
110     int prevbit = 0;
111     unsigned val;
112
113     for (i = 0; i < 7; i++) {
114         if (prevbit && bit)
115             break;
116         prevbit = bit;
117         bit = get_bits1(gb);
118         if (bit && !prevbit)
119             bits += series[i];
120     }
121     bits--;
122     if (bits < 0 || bits > 31) {
123         *value = 0;
124         return -1;
125     } else if (bits == 0) {
126         *value = 0;
127         return 0;
128     }
129
130     val  = get_bits_long(gb, bits);
131     val |= 1U << bits;
132
133     *value = val - 1;
134
135     return 0;
136 }
137
138 static int lag_read_prob_header(lag_rac *rac, GetBitContext *gb)
139 {
140     int i, j, scale_factor;
141     unsigned prob, cumulative_target;
142     unsigned cumul_prob = 0;
143     unsigned scaled_cumul_prob = 0;
144
145     rac->prob[0] = 0;
146     rac->prob[257] = UINT_MAX;
147     /* Read probabilities from bitstream */
148     for (i = 1; i < 257; i++) {
149         if (lag_decode_prob(gb, &rac->prob[i]) < 0) {
150             av_log(rac->avctx, AV_LOG_ERROR, "Invalid probability encountered.\n");
151             return -1;
152         }
153         if ((uint64_t)cumul_prob + rac->prob[i] > UINT_MAX) {
154             av_log(rac->avctx, AV_LOG_ERROR, "Integer overflow encountered in cumulative probability calculation.\n");
155             return -1;
156         }
157         cumul_prob += rac->prob[i];
158         if (!rac->prob[i]) {
159             if (lag_decode_prob(gb, &prob)) {
160                 av_log(rac->avctx, AV_LOG_ERROR, "Invalid probability run encountered.\n");
161                 return -1;
162             }
163             if (prob > 256 - i)
164                 prob = 256 - i;
165             for (j = 0; j < prob; j++)
166                 rac->prob[++i] = 0;
167         }
168     }
169
170     if (!cumul_prob) {
171         av_log(rac->avctx, AV_LOG_ERROR, "All probabilities are 0!\n");
172         return -1;
173     }
174
175     /* Scale probabilities so cumulative probability is an even power of 2. */
176     scale_factor = av_log2(cumul_prob);
177
178     if (cumul_prob & (cumul_prob - 1)) {
179         uint64_t mul = softfloat_reciprocal(cumul_prob);
180         for (i = 1; i <= 128; i++) {
181             rac->prob[i] = softfloat_mul(rac->prob[i], mul);
182             scaled_cumul_prob += rac->prob[i];
183         }
184         if (scaled_cumul_prob <= 0) {
185             av_log(rac->avctx, AV_LOG_ERROR, "Scaled probabilities invalid\n");
186             return AVERROR_INVALIDDATA;
187         }
188         for (; i < 257; i++) {
189             rac->prob[i] = softfloat_mul(rac->prob[i], mul);
190             scaled_cumul_prob += rac->prob[i];
191         }
192
193         scale_factor++;
194         if (scale_factor >= 32U)
195             return AVERROR_INVALIDDATA;
196         cumulative_target = 1U << scale_factor;
197
198         if (scaled_cumul_prob > cumulative_target) {
199             av_log(rac->avctx, AV_LOG_ERROR,
200                    "Scaled probabilities are larger than target!\n");
201             return -1;
202         }
203
204         scaled_cumul_prob = cumulative_target - scaled_cumul_prob;
205
206         for (i = 1; scaled_cumul_prob; i = (i & 0x7f) + 1) {
207             if (rac->prob[i]) {
208                 rac->prob[i]++;
209                 scaled_cumul_prob--;
210             }
211             /* Comment from reference source:
212              * if (b & 0x80 == 0) {     // order of operations is 'wrong'; it has been left this way
213              *                          // since the compression change is negligible and fixing it
214              *                          // breaks backwards compatibility
215              *      b =- (signed int)b;
216              *      b &= 0xFF;
217              * } else {
218              *      b++;
219              *      b &= 0x7f;
220              * }
221              */
222         }
223     }
224
225     rac->scale = scale_factor;
226
227     /* Fill probability array with cumulative probability for each symbol. */
228     for (i = 1; i < 257; i++)
229         rac->prob[i] += rac->prob[i - 1];
230
231     return 0;
232 }
233
234 static void add_lag_median_prediction(uint8_t *dst, uint8_t *src1,
235                                       uint8_t *diff, int w, int *left,
236                                       int *left_top)
237 {
238     /* This is almost identical to add_hfyu_median_pred in huffyuvdsp.h.
239      * However the &0xFF on the gradient predictor yields incorrect output
240      * for lagarith.
241      */
242     int i;
243     uint8_t l, lt;
244
245     l  = *left;
246     lt = *left_top;
247
248     for (i = 0; i < w; i++) {
249         l = mid_pred(l, src1[i], l + src1[i] - lt) + diff[i];
250         lt = src1[i];
251         dst[i] = l;
252     }
253
254     *left     = l;
255     *left_top = lt;
256 }
257
258 static void lag_pred_line(LagarithContext *l, uint8_t *buf,
259                           int width, int stride, int line)
260 {
261     int L, TL;
262
263     if (!line) {
264         /* Left prediction only for first line */
265         L = l->llviddsp.add_left_pred(buf, buf, width, 0);
266     } else {
267         /* Left pixel is actually prev_row[width] */
268         L = buf[width - stride - 1];
269
270         if (line == 1) {
271             /* Second line, left predict first pixel, the rest of the line is median predicted
272              * NOTE: In the case of RGB this pixel is top predicted */
273             TL = l->avctx->pix_fmt == AV_PIX_FMT_YUV420P ? buf[-stride] : L;
274         } else {
275             /* Top left is 2 rows back, last pixel */
276             TL = buf[width - (2 * stride) - 1];
277         }
278
279         add_lag_median_prediction(buf, buf - stride, buf,
280                                   width, &L, &TL);
281     }
282 }
283
284 static void lag_pred_line_yuy2(LagarithContext *l, uint8_t *buf,
285                                int width, int stride, int line,
286                                int is_luma)
287 {
288     int L, TL;
289
290     if (!line) {
291         L= buf[0];
292         if (is_luma)
293             buf[0] = 0;
294         l->llviddsp.add_left_pred(buf, buf, width, 0);
295         if (is_luma)
296             buf[0] = L;
297         return;
298     }
299     if (line == 1) {
300         const int HEAD = is_luma ? 4 : 2;
301         int i;
302
303         L  = buf[width - stride - 1];
304         TL = buf[HEAD  - stride - 1];
305         for (i = 0; i < HEAD; i++) {
306             L += buf[i];
307             buf[i] = L;
308         }
309         for (; i < width; i++) {
310             L      = mid_pred(L & 0xFF, buf[i - stride], (L + buf[i - stride] - TL) & 0xFF) + buf[i];
311             TL     = buf[i - stride];
312             buf[i] = L;
313         }
314     } else {
315         TL = buf[width - (2 * stride) - 1];
316         L  = buf[width - stride - 1];
317         l->llviddsp.add_median_pred(buf, buf - stride, buf, width, &L, &TL);
318     }
319 }
320
321 static int lag_decode_line(LagarithContext *l, lag_rac *rac,
322                            uint8_t *dst, int width, int stride,
323                            int esc_count)
324 {
325     int i = 0;
326     int ret = 0;
327
328     if (!esc_count)
329         esc_count = -1;
330
331     /* Output any zeros remaining from the previous run */
332 handle_zeros:
333     if (l->zeros_rem) {
334         int count = FFMIN(l->zeros_rem, width - i);
335         memset(dst + i, 0, count);
336         i += count;
337         l->zeros_rem -= count;
338     }
339
340     while (i < width) {
341         dst[i] = lag_get_rac(rac);
342         ret++;
343
344         if (dst[i])
345             l->zeros = 0;
346         else
347             l->zeros++;
348
349         i++;
350         if (l->zeros == esc_count) {
351             int index = lag_get_rac(rac);
352             ret++;
353
354             l->zeros = 0;
355
356             l->zeros_rem = lag_calc_zero_run(index);
357             goto handle_zeros;
358         }
359     }
360     return ret;
361 }
362
363 static int lag_decode_zero_run_line(LagarithContext *l, uint8_t *dst,
364                                     const uint8_t *src, const uint8_t *src_end,
365                                     int width, int esc_count)
366 {
367     int i = 0;
368     int count;
369     uint8_t zero_run = 0;
370     const uint8_t *src_start = src;
371     uint8_t mask1 = -(esc_count < 2);
372     uint8_t mask2 = -(esc_count < 3);
373     uint8_t *end = dst + (width - 2);
374
375     avpriv_request_sample(l->avctx, "zero_run_line");
376
377     memset(dst, 0, width);
378
379 output_zeros:
380     if (l->zeros_rem) {
381         count = FFMIN(l->zeros_rem, width - i);
382         if (end - dst < count) {
383             av_log(l->avctx, AV_LOG_ERROR, "Too many zeros remaining.\n");
384             return AVERROR_INVALIDDATA;
385         }
386
387         memset(dst, 0, count);
388         l->zeros_rem -= count;
389         dst += count;
390     }
391
392     while (dst < end) {
393         i = 0;
394         while (!zero_run && dst + i < end) {
395             i++;
396             if (i+2 >= src_end - src)
397                 return AVERROR_INVALIDDATA;
398             zero_run =
399                 !(src[i] | (src[i + 1] & mask1) | (src[i + 2] & mask2));
400         }
401         if (zero_run) {
402             zero_run = 0;
403             i += esc_count;
404             memcpy(dst, src, i);
405             dst += i;
406             l->zeros_rem = lag_calc_zero_run(src[i]);
407
408             src += i + 1;
409             goto output_zeros;
410         } else {
411             memcpy(dst, src, i);
412             src += i;
413             dst += i;
414         }
415     }
416     return  src - src_start;
417 }
418
419
420
421 static int lag_decode_arith_plane(LagarithContext *l, uint8_t *dst,
422                                   int width, int height, int stride,
423                                   const uint8_t *src, int src_size)
424 {
425     int i = 0;
426     int read = 0;
427     uint32_t length;
428     uint32_t offset = 1;
429     int esc_count;
430     GetBitContext gb;
431     lag_rac rac;
432     const uint8_t *src_end = src + src_size;
433     int ret;
434
435     rac.avctx = l->avctx;
436     l->zeros = 0;
437
438     if(src_size < 2)
439         return AVERROR_INVALIDDATA;
440
441     esc_count = src[0];
442     if (esc_count < 4) {
443         length = width * height;
444         if(src_size < 5)
445             return AVERROR_INVALIDDATA;
446         if (esc_count && AV_RL32(src + 1) < length) {
447             length = AV_RL32(src + 1);
448             offset += 4;
449         }
450
451         if ((ret = init_get_bits8(&gb, src + offset, src_size - offset)) < 0)
452             return ret;
453
454         if (lag_read_prob_header(&rac, &gb) < 0)
455             return -1;
456
457         ff_lag_rac_init(&rac, &gb, length - stride);
458
459         for (i = 0; i < height; i++)
460             read += lag_decode_line(l, &rac, dst + (i * stride), width,
461                                     stride, esc_count);
462
463         if (read > length)
464             av_log(l->avctx, AV_LOG_WARNING,
465                    "Output more bytes than length (%d of %"PRIu32")\n", read,
466                    length);
467     } else if (esc_count < 8) {
468         esc_count -= 4;
469         src ++;
470         src_size --;
471         if (esc_count > 0) {
472             /* Zero run coding only, no range coding. */
473             for (i = 0; i < height; i++) {
474                 int res = lag_decode_zero_run_line(l, dst + (i * stride), src,
475                                                    src_end, width, esc_count);
476                 if (res < 0)
477                     return res;
478                 src += res;
479             }
480         } else {
481             if (src_size < width * height)
482                 return AVERROR_INVALIDDATA; // buffer not big enough
483             /* Plane is stored uncompressed */
484             for (i = 0; i < height; i++) {
485                 memcpy(dst + (i * stride), src, width);
486                 src += width;
487             }
488         }
489     } else if (esc_count == 0xff) {
490         /* Plane is a solid run of given value */
491         for (i = 0; i < height; i++)
492             memset(dst + i * stride, src[1], width);
493         /* Do not apply prediction.
494            Note: memset to 0 above, setting first value to src[1]
495            and applying prediction gives the same result. */
496         return 0;
497     } else {
498         av_log(l->avctx, AV_LOG_ERROR,
499                "Invalid zero run escape code! (%#x)\n", esc_count);
500         return -1;
501     }
502
503     if (l->avctx->pix_fmt != AV_PIX_FMT_YUV422P) {
504         for (i = 0; i < height; i++) {
505             lag_pred_line(l, dst, width, stride, i);
506             dst += stride;
507         }
508     } else {
509         for (i = 0; i < height; i++) {
510             lag_pred_line_yuy2(l, dst, width, stride, i,
511                                width == l->avctx->width);
512             dst += stride;
513         }
514     }
515
516     return 0;
517 }
518
519 /**
520  * Decode a frame.
521  * @param avctx codec context
522  * @param data output AVFrame
523  * @param data_size size of output data or 0 if no picture is returned
524  * @param avpkt input packet
525  * @return number of consumed bytes on success or negative if decode fails
526  */
527 static int lag_decode_frame(AVCodecContext *avctx,
528                             void *data, int *got_frame, AVPacket *avpkt)
529 {
530     const uint8_t *buf = avpkt->data;
531     unsigned int buf_size = avpkt->size;
532     LagarithContext *l = avctx->priv_data;
533     ThreadFrame frame = { .f = data };
534     AVFrame *const p  = data;
535     uint8_t frametype = 0;
536     uint32_t offset_gu = 0, offset_bv = 0, offset_ry = 9;
537     uint32_t offs[4];
538     uint8_t *srcs[4], *dst;
539     int i, j, planes = 3;
540     int ret;
541
542     p->key_frame = 1;
543
544     frametype = buf[0];
545
546     offset_gu = AV_RL32(buf + 1);
547     offset_bv = AV_RL32(buf + 5);
548
549     switch (frametype) {
550     case FRAME_SOLID_RGBA:
551         avctx->pix_fmt = AV_PIX_FMT_RGB32;
552     case FRAME_SOLID_GRAY:
553         if (frametype == FRAME_SOLID_GRAY)
554             if (avctx->bits_per_coded_sample == 24) {
555                 avctx->pix_fmt = AV_PIX_FMT_RGB24;
556             } else {
557                 avctx->pix_fmt = AV_PIX_FMT_0RGB32;
558                 planes = 4;
559             }
560
561         if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
562             return ret;
563
564         dst = p->data[0];
565         if (frametype == FRAME_SOLID_RGBA) {
566         for (j = 0; j < avctx->height; j++) {
567             for (i = 0; i < avctx->width; i++)
568                 AV_WN32(dst + i * 4, offset_gu);
569             dst += p->linesize[0];
570         }
571         } else {
572             for (j = 0; j < avctx->height; j++) {
573                 memset(dst, buf[1], avctx->width * planes);
574                 dst += p->linesize[0];
575             }
576         }
577         break;
578     case FRAME_SOLID_COLOR:
579         if (avctx->bits_per_coded_sample == 24) {
580             avctx->pix_fmt = AV_PIX_FMT_RGB24;
581         } else {
582             avctx->pix_fmt = AV_PIX_FMT_RGB32;
583             offset_gu |= 0xFFU << 24;
584         }
585
586         if ((ret = ff_thread_get_buffer(avctx, &frame,0)) < 0)
587             return ret;
588
589         dst = p->data[0];
590         for (j = 0; j < avctx->height; j++) {
591             for (i = 0; i < avctx->width; i++)
592                 if (avctx->bits_per_coded_sample == 24) {
593                     AV_WB24(dst + i * 3, offset_gu);
594                 } else {
595                     AV_WN32(dst + i * 4, offset_gu);
596                 }
597             dst += p->linesize[0];
598         }
599         break;
600     case FRAME_ARITH_RGBA:
601         avctx->pix_fmt = AV_PIX_FMT_RGB32;
602         planes = 4;
603         offset_ry += 4;
604         offs[3] = AV_RL32(buf + 9);
605     case FRAME_ARITH_RGB24:
606     case FRAME_U_RGB24:
607         if (frametype == FRAME_ARITH_RGB24 || frametype == FRAME_U_RGB24)
608             avctx->pix_fmt = AV_PIX_FMT_RGB24;
609
610         if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
611             return ret;
612
613         offs[0] = offset_bv;
614         offs[1] = offset_gu;
615         offs[2] = offset_ry;
616
617         l->rgb_stride = FFALIGN(avctx->width, 16);
618         av_fast_malloc(&l->rgb_planes, &l->rgb_planes_allocated,
619                        l->rgb_stride * avctx->height * planes + 1);
620         if (!l->rgb_planes) {
621             av_log(avctx, AV_LOG_ERROR, "cannot allocate temporary buffer\n");
622             return AVERROR(ENOMEM);
623         }
624         for (i = 0; i < planes; i++)
625             srcs[i] = l->rgb_planes + (i + 1) * l->rgb_stride * avctx->height - l->rgb_stride;
626         for (i = 0; i < planes; i++)
627             if (buf_size <= offs[i]) {
628                 av_log(avctx, AV_LOG_ERROR,
629                         "Invalid frame offsets\n");
630                 return AVERROR_INVALIDDATA;
631             }
632
633         for (i = 0; i < planes; i++)
634             lag_decode_arith_plane(l, srcs[i],
635                                    avctx->width, avctx->height,
636                                    -l->rgb_stride, buf + offs[i],
637                                    buf_size - offs[i]);
638         dst = p->data[0];
639         for (i = 0; i < planes; i++)
640             srcs[i] = l->rgb_planes + i * l->rgb_stride * avctx->height;
641         for (j = 0; j < avctx->height; j++) {
642             for (i = 0; i < avctx->width; i++) {
643                 uint8_t r, g, b, a;
644                 r = srcs[0][i];
645                 g = srcs[1][i];
646                 b = srcs[2][i];
647                 r += g;
648                 b += g;
649                 if (frametype == FRAME_ARITH_RGBA) {
650                     a = srcs[3][i];
651                     AV_WN32(dst + i * 4, MKBETAG(a, r, g, b));
652                 } else {
653                     dst[i * 3 + 0] = r;
654                     dst[i * 3 + 1] = g;
655                     dst[i * 3 + 2] = b;
656                 }
657             }
658             dst += p->linesize[0];
659             for (i = 0; i < planes; i++)
660                 srcs[i] += l->rgb_stride;
661         }
662         break;
663     case FRAME_ARITH_YUY2:
664         avctx->pix_fmt = AV_PIX_FMT_YUV422P;
665
666         if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
667             return ret;
668
669         if (offset_ry >= buf_size ||
670             offset_gu >= buf_size ||
671             offset_bv >= buf_size) {
672             av_log(avctx, AV_LOG_ERROR,
673                    "Invalid frame offsets\n");
674             return AVERROR_INVALIDDATA;
675         }
676
677         lag_decode_arith_plane(l, p->data[0], avctx->width, avctx->height,
678                                p->linesize[0], buf + offset_ry,
679                                buf_size - offset_ry);
680         lag_decode_arith_plane(l, p->data[1], (avctx->width + 1) / 2,
681                                avctx->height, p->linesize[1],
682                                buf + offset_gu, buf_size - offset_gu);
683         lag_decode_arith_plane(l, p->data[2], (avctx->width + 1) / 2,
684                                avctx->height, p->linesize[2],
685                                buf + offset_bv, buf_size - offset_bv);
686         break;
687     case FRAME_ARITH_YV12:
688         avctx->pix_fmt = AV_PIX_FMT_YUV420P;
689
690         if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
691             return ret;
692         if (buf_size <= offset_ry || buf_size <= offset_gu || buf_size <= offset_bv) {
693             return AVERROR_INVALIDDATA;
694         }
695
696         if (offset_ry >= buf_size ||
697             offset_gu >= buf_size ||
698             offset_bv >= buf_size) {
699             av_log(avctx, AV_LOG_ERROR,
700                    "Invalid frame offsets\n");
701             return AVERROR_INVALIDDATA;
702         }
703
704         lag_decode_arith_plane(l, p->data[0], avctx->width, avctx->height,
705                                p->linesize[0], buf + offset_ry,
706                                buf_size - offset_ry);
707         lag_decode_arith_plane(l, p->data[2], (avctx->width + 1) / 2,
708                                (avctx->height + 1) / 2, p->linesize[2],
709                                buf + offset_gu, buf_size - offset_gu);
710         lag_decode_arith_plane(l, p->data[1], (avctx->width + 1) / 2,
711                                (avctx->height + 1) / 2, p->linesize[1],
712                                buf + offset_bv, buf_size - offset_bv);
713         break;
714     default:
715         av_log(avctx, AV_LOG_ERROR,
716                "Unsupported Lagarith frame type: %#"PRIx8"\n", frametype);
717         return AVERROR_PATCHWELCOME;
718     }
719
720     *got_frame = 1;
721
722     return buf_size;
723 }
724
725 static av_cold int lag_decode_init(AVCodecContext *avctx)
726 {
727     LagarithContext *l = avctx->priv_data;
728     l->avctx = avctx;
729
730     ff_llviddsp_init(&l->llviddsp);
731
732     return 0;
733 }
734
735 #if HAVE_THREADS
736 static av_cold int lag_decode_init_thread_copy(AVCodecContext *avctx)
737 {
738     LagarithContext *l = avctx->priv_data;
739     l->avctx = avctx;
740
741     return 0;
742 }
743 #endif
744
745 static av_cold int lag_decode_end(AVCodecContext *avctx)
746 {
747     LagarithContext *l = avctx->priv_data;
748
749     av_freep(&l->rgb_planes);
750
751     return 0;
752 }
753
754 AVCodec ff_lagarith_decoder = {
755     .name           = "lagarith",
756     .long_name      = NULL_IF_CONFIG_SMALL("Lagarith lossless"),
757     .type           = AVMEDIA_TYPE_VIDEO,
758     .id             = AV_CODEC_ID_LAGARITH,
759     .priv_data_size = sizeof(LagarithContext),
760     .init           = lag_decode_init,
761     .init_thread_copy = ONLY_IF_THREADS_ENABLED(lag_decode_init_thread_copy),
762     .close          = lag_decode_end,
763     .decode         = lag_decode_frame,
764     .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
765 };