]> git.sesse.net Git - ffmpeg/blob - libavcodec/g2meet.c
avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for AVC chroma mc functions
[ffmpeg] / libavcodec / g2meet.c
1 /*
2  * Go2Webinar decoder
3  * Copyright (c) 2012 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  * Go2Webinar decoder
25  */
26
27 #include <inttypes.h>
28 #include <zlib.h>
29
30 #include "libavutil/intreadwrite.h"
31
32 #include "avcodec.h"
33 #include "blockdsp.h"
34 #include "bytestream.h"
35 #include "get_bits.h"
36 #include "idctdsp.h"
37 #include "internal.h"
38 #include "jpegtables.h"
39 #include "mjpeg.h"
40
41 enum ChunkType {
42     DISPLAY_INFO = 0xC8,
43     TILE_DATA,
44     CURSOR_POS,
45     CURSOR_SHAPE,
46     CHUNK_CC,
47     CHUNK_CD
48 };
49
50 enum Compression {
51     COMPR_EPIC_J_B = 2,
52     COMPR_KEMPF_J_B,
53 };
54
55 static const uint8_t luma_quant[64] = {
56      8,  6,  5,  8, 12, 20, 26, 31,
57      6,  6,  7, 10, 13, 29, 30, 28,
58      7,  7,  8, 12, 20, 29, 35, 28,
59      7,  9, 11, 15, 26, 44, 40, 31,
60      9, 11, 19, 28, 34, 55, 52, 39,
61     12, 18, 28, 32, 41, 52, 57, 46,
62     25, 32, 39, 44, 52, 61, 60, 51,
63     36, 46, 48, 49, 56, 50, 52, 50
64 };
65
66 static const uint8_t chroma_quant[64] = {
67      9,  9, 12, 24, 50, 50, 50, 50,
68      9, 11, 13, 33, 50, 50, 50, 50,
69     12, 13, 28, 50, 50, 50, 50, 50,
70     24, 33, 50, 50, 50, 50, 50, 50,
71     50, 50, 50, 50, 50, 50, 50, 50,
72     50, 50, 50, 50, 50, 50, 50, 50,
73     50, 50, 50, 50, 50, 50, 50, 50,
74     50, 50, 50, 50, 50, 50, 50, 50,
75 };
76
77 typedef struct JPGContext {
78     BlockDSPContext bdsp;
79     IDCTDSPContext idsp;
80     ScanTable  scantable;
81
82     VLC        dc_vlc[2], ac_vlc[2];
83     int        prev_dc[3];
84     DECLARE_ALIGNED(16, int16_t, block)[6][64];
85
86     uint8_t    *buf;
87 } JPGContext;
88
89 typedef struct G2MContext {
90     JPGContext jc;
91     int        version;
92
93     int        compression;
94     int        width, height, bpp;
95     int        orig_width, orig_height;
96     int        tile_width, tile_height;
97     int        tiles_x, tiles_y, tile_x, tile_y;
98
99     int        got_header;
100
101     uint8_t    *framebuf;
102     int        framebuf_stride, old_width, old_height;
103
104     uint8_t    *synth_tile, *jpeg_tile;
105     int        tile_stride, old_tile_w, old_tile_h;
106
107     uint8_t    *kempf_buf, *kempf_flags;
108
109     uint8_t    *cursor;
110     int        cursor_stride;
111     int        cursor_fmt;
112     int        cursor_w, cursor_h, cursor_x, cursor_y;
113     int        cursor_hot_x, cursor_hot_y;
114 } G2MContext;
115
116 static av_cold int build_vlc(VLC *vlc, const uint8_t *bits_table,
117                              const uint8_t *val_table, int nb_codes,
118                              int is_ac)
119 {
120     uint8_t  huff_size[256] = { 0 };
121     uint16_t huff_code[256];
122     uint16_t huff_sym[256];
123     int i;
124
125     ff_mjpeg_build_huffman_codes(huff_size, huff_code, bits_table, val_table);
126
127     for (i = 0; i < 256; i++)
128         huff_sym[i] = i + 16 * is_ac;
129
130     if (is_ac)
131         huff_sym[0] = 16 * 256;
132
133     return ff_init_vlc_sparse(vlc, 9, nb_codes, huff_size, 1, 1,
134                               huff_code, 2, 2, huff_sym, 2, 2, 0);
135 }
136
137 static av_cold int jpg_init(AVCodecContext *avctx, JPGContext *c)
138 {
139     int ret;
140
141     ret = build_vlc(&c->dc_vlc[0], avpriv_mjpeg_bits_dc_luminance,
142                     avpriv_mjpeg_val_dc, 12, 0);
143     if (ret)
144         return ret;
145     ret = build_vlc(&c->dc_vlc[1], avpriv_mjpeg_bits_dc_chrominance,
146                     avpriv_mjpeg_val_dc, 12, 0);
147     if (ret)
148         return ret;
149     ret = build_vlc(&c->ac_vlc[0], avpriv_mjpeg_bits_ac_luminance,
150                     avpriv_mjpeg_val_ac_luminance, 251, 1);
151     if (ret)
152         return ret;
153     ret = build_vlc(&c->ac_vlc[1], avpriv_mjpeg_bits_ac_chrominance,
154                     avpriv_mjpeg_val_ac_chrominance, 251, 1);
155     if (ret)
156         return ret;
157
158     ff_blockdsp_init(&c->bdsp, avctx);
159     ff_idctdsp_init(&c->idsp, avctx);
160     ff_init_scantable(c->idsp.idct_permutation, &c->scantable,
161                       ff_zigzag_direct);
162
163     return 0;
164 }
165
166 static av_cold void jpg_free_context(JPGContext *ctx)
167 {
168     int i;
169
170     for (i = 0; i < 2; i++) {
171         ff_free_vlc(&ctx->dc_vlc[i]);
172         ff_free_vlc(&ctx->ac_vlc[i]);
173     }
174
175     av_freep(&ctx->buf);
176 }
177
178 static void jpg_unescape(const uint8_t *src, int src_size,
179                          uint8_t *dst, int *dst_size)
180 {
181     const uint8_t *src_end = src + src_size;
182     uint8_t *dst_start = dst;
183
184     while (src < src_end) {
185         uint8_t x = *src++;
186
187         *dst++ = x;
188
189         if (x == 0xFF && !*src)
190             src++;
191     }
192     *dst_size = dst - dst_start;
193 }
194
195 static int jpg_decode_block(JPGContext *c, GetBitContext *gb,
196                             int plane, int16_t *block)
197 {
198     int dc, val, pos;
199     const int is_chroma = !!plane;
200     const uint8_t *qmat = is_chroma ? chroma_quant : luma_quant;
201
202     c->bdsp.clear_block(block);
203     dc = get_vlc2(gb, c->dc_vlc[is_chroma].table, 9, 3);
204     if (dc < 0)
205         return AVERROR_INVALIDDATA;
206     if (dc)
207         dc = get_xbits(gb, dc);
208     dc                = dc * qmat[0] + c->prev_dc[plane];
209     block[0]          = dc;
210     c->prev_dc[plane] = dc;
211
212     pos = 0;
213     while (pos < 63) {
214         val = get_vlc2(gb, c->ac_vlc[is_chroma].table, 9, 3);
215         if (val < 0)
216             return AVERROR_INVALIDDATA;
217         pos += val >> 4;
218         val &= 0xF;
219         if (pos > 63)
220             return val ? AVERROR_INVALIDDATA : 0;
221         if (val) {
222             int nbits = val;
223
224             val                                 = get_xbits(gb, nbits);
225             val                                *= qmat[ff_zigzag_direct[pos]];
226             block[c->scantable.permutated[pos]] = val;
227         }
228     }
229     return 0;
230 }
231
232 static inline void yuv2rgb(uint8_t *out, int Y, int U, int V)
233 {
234     out[0] = av_clip_uint8(Y + (             91881 * V + 32768 >> 16));
235     out[1] = av_clip_uint8(Y + (-22554 * U - 46802 * V + 32768 >> 16));
236     out[2] = av_clip_uint8(Y + (116130 * U             + 32768 >> 16));
237 }
238
239 static int jpg_decode_data(JPGContext *c, int width, int height,
240                            const uint8_t *src, int src_size,
241                            uint8_t *dst, int dst_stride,
242                            const uint8_t *mask, int mask_stride, int num_mbs,
243                            int swapuv)
244 {
245     GetBitContext gb;
246     int mb_w, mb_h, mb_x, mb_y, i, j;
247     int bx, by;
248     int unesc_size;
249     int ret;
250
251     if ((ret = av_reallocp(&c->buf,
252                            src_size + FF_INPUT_BUFFER_PADDING_SIZE)) < 0)
253         return ret;
254     jpg_unescape(src, src_size, c->buf, &unesc_size);
255     memset(c->buf + unesc_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
256     if((ret = init_get_bits8(&gb, c->buf, unesc_size)) < 0)
257         return ret;
258
259     width = FFALIGN(width, 16);
260     mb_w  =  width        >> 4;
261     mb_h  = (height + 15) >> 4;
262
263     if (!num_mbs)
264         num_mbs = mb_w * mb_h * 4;
265
266     for (i = 0; i < 3; i++)
267         c->prev_dc[i] = 1024;
268     bx =
269     by = 0;
270     c->bdsp.clear_blocks(c->block[0]);
271     for (mb_y = 0; mb_y < mb_h; mb_y++) {
272         for (mb_x = 0; mb_x < mb_w; mb_x++) {
273             if (mask && !mask[mb_x * 2] && !mask[mb_x * 2 + 1] &&
274                 !mask[mb_x * 2 +     mask_stride] &&
275                 !mask[mb_x * 2 + 1 + mask_stride]) {
276                 bx += 16;
277                 continue;
278             }
279             for (j = 0; j < 2; j++) {
280                 for (i = 0; i < 2; i++) {
281                     if (mask && !mask[mb_x * 2 + i + j * mask_stride])
282                         continue;
283                     num_mbs--;
284                     if ((ret = jpg_decode_block(c, &gb, 0,
285                                                 c->block[i + j * 2])) != 0)
286                         return ret;
287                     c->idsp.idct(c->block[i + j * 2]);
288                 }
289             }
290             for (i = 1; i < 3; i++) {
291                 if ((ret = jpg_decode_block(c, &gb, i, c->block[i + 3])) != 0)
292                     return ret;
293                 c->idsp.idct(c->block[i + 3]);
294             }
295
296             for (j = 0; j < 16; j++) {
297                 uint8_t *out = dst + bx * 3 + (by + j) * dst_stride;
298                 for (i = 0; i < 16; i++) {
299                     int Y, U, V;
300
301                     Y = c->block[(j >> 3) * 2 + (i >> 3)][(i & 7) + (j & 7) * 8];
302                     U = c->block[4 ^ swapuv][(i >> 1) + (j >> 1) * 8] - 128;
303                     V = c->block[5 ^ swapuv][(i >> 1) + (j >> 1) * 8] - 128;
304                     yuv2rgb(out + i * 3, Y, U, V);
305                 }
306             }
307
308             if (!num_mbs)
309                 return 0;
310             bx += 16;
311         }
312         bx  = 0;
313         by += 16;
314         if (mask)
315             mask += mask_stride * 2;
316     }
317
318     return 0;
319 }
320
321 static int kempf_restore_buf(const uint8_t *src, int len,
322                               uint8_t *dst, int stride,
323                               const uint8_t *jpeg_tile, int tile_stride,
324                               int width, int height,
325                               const uint8_t *pal, int npal, int tidx)
326 {
327     GetBitContext gb;
328     int i, j, nb, col;
329     int ret;
330
331     if ((ret = init_get_bits8(&gb, src, len)) < 0)
332         return ret;
333
334     if (npal <= 2)       nb = 1;
335     else if (npal <= 4)  nb = 2;
336     else if (npal <= 16) nb = 4;
337     else                 nb = 8;
338
339     for (j = 0; j < height; j++, dst += stride, jpeg_tile += tile_stride) {
340         if (get_bits(&gb, 8))
341             continue;
342         for (i = 0; i < width; i++) {
343             col = get_bits(&gb, nb);
344             if (col != tidx)
345                 memcpy(dst + i * 3, pal + col * 3, 3);
346             else
347                 memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
348         }
349     }
350
351     return 0;
352 }
353
354 static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y,
355                              const uint8_t *src, int src_size)
356 {
357     int width, height;
358     int hdr, zsize, npal, tidx = -1, ret;
359     int i, j;
360     const uint8_t *src_end = src + src_size;
361     uint8_t pal[768], transp[3];
362     uLongf dlen = (c->tile_width + 1) * c->tile_height;
363     int sub_type;
364     int nblocks, cblocks, bstride;
365     int bits, bitbuf, coded;
366     uint8_t *dst = c->framebuf + tile_x * c->tile_width * 3 +
367                    tile_y * c->tile_height * c->framebuf_stride;
368
369     if (src_size < 2)
370         return AVERROR_INVALIDDATA;
371
372     width  = FFMIN(c->width  - tile_x * c->tile_width,  c->tile_width);
373     height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
374
375     hdr      = *src++;
376     sub_type = hdr >> 5;
377     if (sub_type == 0) {
378         int j;
379         memcpy(transp, src, 3);
380         src += 3;
381         for (j = 0; j < height; j++, dst += c->framebuf_stride)
382             for (i = 0; i < width; i++)
383                 memcpy(dst + i * 3, transp, 3);
384         return 0;
385     } else if (sub_type == 1) {
386         return jpg_decode_data(&c->jc, width, height, src, src_end - src,
387                                dst, c->framebuf_stride, NULL, 0, 0, 0);
388     }
389
390     if (sub_type != 2) {
391         memcpy(transp, src, 3);
392         src += 3;
393     }
394     npal = *src++ + 1;
395     if (src_end - src < npal * 3)
396         return AVERROR_INVALIDDATA;
397     memcpy(pal, src, npal * 3);
398     src += npal * 3;
399     if (sub_type != 2) {
400         for (i = 0; i < npal; i++) {
401             if (!memcmp(pal + i * 3, transp, 3)) {
402                 tidx = i;
403                 break;
404             }
405         }
406     }
407
408     if (src_end - src < 2)
409         return 0;
410     zsize = (src[0] << 8) | src[1];
411     src  += 2;
412
413     if (src_end - src < zsize + (sub_type != 2))
414         return AVERROR_INVALIDDATA;
415
416     ret = uncompress(c->kempf_buf, &dlen, src, zsize);
417     if (ret)
418         return AVERROR_INVALIDDATA;
419     src += zsize;
420
421     if (sub_type == 2) {
422         kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
423                           NULL, 0, width, height, pal, npal, tidx);
424         return 0;
425     }
426
427     nblocks = *src++ + 1;
428     cblocks = 0;
429     bstride = FFALIGN(width, 16) >> 3;
430     // blocks are coded LSB and we need normal bitreader for JPEG data
431     bits = 0;
432     for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
433         for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
434             if (!bits) {
435                 if (src >= src_end)
436                     return AVERROR_INVALIDDATA;
437                 bitbuf = *src++;
438                 bits   = 8;
439             }
440             coded = bitbuf & 1;
441             bits--;
442             bitbuf >>= 1;
443             cblocks += coded;
444             if (cblocks > nblocks)
445                 return AVERROR_INVALIDDATA;
446             c->kempf_flags[j * 2 +      i * 2      * bstride] =
447             c->kempf_flags[j * 2 + 1 +  i * 2      * bstride] =
448             c->kempf_flags[j * 2 +     (i * 2 + 1) * bstride] =
449             c->kempf_flags[j * 2 + 1 + (i * 2 + 1) * bstride] = coded;
450         }
451     }
452
453     memset(c->jpeg_tile, 0, c->tile_stride * height);
454     jpg_decode_data(&c->jc, width, height, src, src_end - src,
455                     c->jpeg_tile, c->tile_stride,
456                     c->kempf_flags, bstride, nblocks * 4, 0);
457
458     kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
459                       c->jpeg_tile, c->tile_stride,
460                       width, height, pal, npal, tidx);
461
462     return 0;
463 }
464
465 static int g2m_init_buffers(G2MContext *c)
466 {
467     int aligned_height;
468
469     if (!c->framebuf || c->old_width < c->width || c->old_height < c->height) {
470         c->framebuf_stride = FFALIGN(c->width + 15, 16) * 3;
471         aligned_height     = c->height + 15;
472         av_free(c->framebuf);
473         c->framebuf = av_mallocz_array(c->framebuf_stride, aligned_height);
474         if (!c->framebuf)
475             return AVERROR(ENOMEM);
476     }
477     if (!c->synth_tile || !c->jpeg_tile ||
478         c->old_tile_w < c->tile_width ||
479         c->old_tile_h < c->tile_height) {
480         c->tile_stride = FFALIGN(c->tile_width, 16) * 3;
481         aligned_height = FFALIGN(c->tile_height,    16);
482         av_free(c->synth_tile);
483         av_free(c->jpeg_tile);
484         av_free(c->kempf_buf);
485         av_free(c->kempf_flags);
486         c->synth_tile  = av_mallocz(c->tile_stride      * aligned_height);
487         c->jpeg_tile   = av_mallocz(c->tile_stride      * aligned_height);
488         c->kempf_buf   = av_mallocz((c->tile_width + 1) * aligned_height
489                                     + FF_INPUT_BUFFER_PADDING_SIZE);
490         c->kempf_flags = av_mallocz( c->tile_width      * aligned_height);
491         if (!c->synth_tile || !c->jpeg_tile ||
492             !c->kempf_buf || !c->kempf_flags)
493             return AVERROR(ENOMEM);
494     }
495
496     return 0;
497 }
498
499 static int g2m_load_cursor(AVCodecContext *avctx, G2MContext *c,
500                            GetByteContext *gb)
501 {
502     int i, j, k;
503     uint8_t *dst;
504     uint32_t bits;
505     uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
506     uint32_t cursor_hot_x, cursor_hot_y;
507     int cursor_fmt, err;
508
509     cur_size     = bytestream2_get_be32(gb);
510     cursor_w     = bytestream2_get_byte(gb);
511     cursor_h     = bytestream2_get_byte(gb);
512     cursor_hot_x = bytestream2_get_byte(gb);
513     cursor_hot_y = bytestream2_get_byte(gb);
514     cursor_fmt   = bytestream2_get_byte(gb);
515
516     cursor_stride = FFALIGN(cursor_w, cursor_fmt==1 ? 32 : 1) * 4;
517
518     if (cursor_w < 1 || cursor_w > 256 ||
519         cursor_h < 1 || cursor_h > 256) {
520         av_log(avctx, AV_LOG_ERROR, "Invalid cursor dimensions %"PRIu32"x%"PRIu32"\n",
521                cursor_w, cursor_h);
522         return AVERROR_INVALIDDATA;
523     }
524     if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
525         av_log(avctx, AV_LOG_WARNING, "Invalid hotspot position %"PRIu32",%"PRIu32"\n",
526                cursor_hot_x, cursor_hot_y);
527         cursor_hot_x = FFMIN(cursor_hot_x, cursor_w - 1);
528         cursor_hot_y = FFMIN(cursor_hot_y, cursor_h - 1);
529     }
530     if (cur_size - 9 > bytestream2_get_bytes_left(gb) ||
531         c->cursor_w * c->cursor_h / 4 > cur_size) {
532         av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"/%u\n",
533                cur_size, bytestream2_get_bytes_left(gb));
534         return AVERROR_INVALIDDATA;
535     }
536     if (cursor_fmt != 1 && cursor_fmt != 32) {
537         avpriv_report_missing_feature(avctx, "Cursor format %d",
538                                       cursor_fmt);
539         return AVERROR_PATCHWELCOME;
540     }
541
542     if ((err = av_reallocp(&c->cursor, cursor_stride * cursor_h)) < 0) {
543         av_log(avctx, AV_LOG_ERROR, "Cannot allocate cursor buffer\n");
544         return err;
545     }
546
547     c->cursor_w      = cursor_w;
548     c->cursor_h      = cursor_h;
549     c->cursor_hot_x  = cursor_hot_x;
550     c->cursor_hot_y  = cursor_hot_y;
551     c->cursor_fmt    = cursor_fmt;
552     c->cursor_stride = cursor_stride;
553
554     dst = c->cursor;
555     switch (c->cursor_fmt) {
556     case 1: // old monochrome
557         for (j = 0; j < c->cursor_h; j++) {
558             for (i = 0; i < c->cursor_w; i += 32) {
559                 bits = bytestream2_get_be32(gb);
560                 for (k = 0; k < 32; k++) {
561                     dst[0] = !!(bits & 0x80000000);
562                     dst   += 4;
563                     bits <<= 1;
564                 }
565             }
566         }
567
568         dst = c->cursor;
569         for (j = 0; j < c->cursor_h; j++) {
570             for (i = 0; i < c->cursor_w; i += 32) {
571                 bits = bytestream2_get_be32(gb);
572                 for (k = 0; k < 32; k++) {
573                     int mask_bit = !!(bits & 0x80000000);
574                     switch (dst[0] * 2 + mask_bit) {
575                     case 0:
576                         dst[0] = 0xFF;
577                         dst[1] = 0x00;
578                         dst[2] = 0x00;
579                         dst[3] = 0x00;
580                         break;
581                     case 1:
582                         dst[0] = 0xFF;
583                         dst[1] = 0xFF;
584                         dst[2] = 0xFF;
585                         dst[3] = 0xFF;
586                         break;
587                     default:
588                         dst[0] = 0x00;
589                         dst[1] = 0x00;
590                         dst[2] = 0x00;
591                         dst[3] = 0x00;
592                     }
593                     dst   += 4;
594                     bits <<= 1;
595                 }
596             }
597         }
598         break;
599     case 32: // full colour
600         /* skip monochrome version of the cursor and decode RGBA instead */
601         bytestream2_skip(gb, c->cursor_h * (FFALIGN(c->cursor_w, 32) >> 3));
602         for (j = 0; j < c->cursor_h; j++) {
603             for (i = 0; i < c->cursor_w; i++) {
604                 int val = bytestream2_get_be32(gb);
605                 *dst++ = val >>  0;
606                 *dst++ = val >>  8;
607                 *dst++ = val >> 16;
608                 *dst++ = val >> 24;
609             }
610         }
611         break;
612     default:
613         return AVERROR_PATCHWELCOME;
614     }
615     return 0;
616 }
617
618 #define APPLY_ALPHA(src, new, alpha) \
619     src = (src * (256 - alpha) + new * alpha) >> 8
620
621 static void g2m_paint_cursor(G2MContext *c, uint8_t *dst, int stride)
622 {
623     int i, j;
624     int x, y, w, h;
625     const uint8_t *cursor;
626
627     if (!c->cursor)
628         return;
629
630     x = c->cursor_x - c->cursor_hot_x;
631     y = c->cursor_y - c->cursor_hot_y;
632
633     cursor = c->cursor;
634     w      = c->cursor_w;
635     h      = c->cursor_h;
636
637     if (x + w > c->width)
638         w = c->width - x;
639     if (y + h > c->height)
640         h = c->height - y;
641     if (x < 0) {
642         w      +=  x;
643         cursor += -x * 4;
644     } else {
645         dst    +=  x * 3;
646     }
647     if (y < 0) {
648         h      +=  y;
649         cursor += -y * c->cursor_stride;
650     } else {
651         dst    +=  y * stride;
652     }
653     if (w < 0 || h < 0)
654         return;
655
656     for (j = 0; j < h; j++) {
657         for (i = 0; i < w; i++) {
658             uint8_t alpha = cursor[i * 4];
659             APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
660             APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
661             APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
662         }
663         dst    += stride;
664         cursor += c->cursor_stride;
665     }
666 }
667
668 static int g2m_decode_frame(AVCodecContext *avctx, void *data,
669                             int *got_picture_ptr, AVPacket *avpkt)
670 {
671     const uint8_t *buf = avpkt->data;
672     int buf_size = avpkt->size;
673     G2MContext *c = avctx->priv_data;
674     AVFrame *pic = data;
675     GetByteContext bc, tbc;
676     int magic;
677     int got_header = 0;
678     uint32_t chunk_size, r_mask, g_mask, b_mask;
679     int chunk_type, chunk_start;
680     int i;
681     int ret;
682
683     if (buf_size < 12) {
684         av_log(avctx, AV_LOG_ERROR,
685                "Frame should have at least 12 bytes, got %d instead\n",
686                buf_size);
687         return AVERROR_INVALIDDATA;
688     }
689
690     bytestream2_init(&bc, buf, buf_size);
691
692     magic = bytestream2_get_be32(&bc);
693     if ((magic & ~0xF) != MKBETAG('G', '2', 'M', '0') ||
694         (magic & 0xF) < 2 || (magic & 0xF) > 5) {
695         av_log(avctx, AV_LOG_ERROR, "Wrong magic %08X\n", magic);
696         return AVERROR_INVALIDDATA;
697     }
698
699     if ((magic & 0xF) < 4) {
700         av_log(avctx, AV_LOG_ERROR, "G2M2 and G2M3 are not yet supported\n");
701         return AVERROR(ENOSYS);
702     }
703
704     while (bytestream2_get_bytes_left(&bc) > 5) {
705         chunk_size  = bytestream2_get_le32(&bc) - 1;
706         chunk_type  = bytestream2_get_byte(&bc);
707         chunk_start = bytestream2_tell(&bc);
708         if (chunk_size > bytestream2_get_bytes_left(&bc)) {
709             av_log(avctx, AV_LOG_ERROR, "Invalid chunk size %"PRIu32" type %02X\n",
710                    chunk_size, chunk_type);
711             break;
712         }
713         switch (chunk_type) {
714         case DISPLAY_INFO:
715             got_header =
716             c->got_header = 0;
717             if (chunk_size < 21) {
718                 av_log(avctx, AV_LOG_ERROR, "Invalid display info size %"PRIu32"\n",
719                        chunk_size);
720                 break;
721             }
722             c->width  = bytestream2_get_be32(&bc);
723             c->height = bytestream2_get_be32(&bc);
724             if (c->width  < 16 || c->width  > c->orig_width ||
725                 c->height < 16 || c->height > c->orig_height) {
726                 av_log(avctx, AV_LOG_ERROR,
727                        "Invalid frame dimensions %dx%d\n",
728                        c->width, c->height);
729                 ret = AVERROR_INVALIDDATA;
730                 goto header_fail;
731             }
732             if (c->width != avctx->width || c->height != avctx->height) {
733                 ret = ff_set_dimensions(avctx, c->width, c->height);
734                 if (ret < 0)
735                     goto header_fail;
736             }
737             c->compression = bytestream2_get_be32(&bc);
738             if (c->compression != 2 && c->compression != 3) {
739                 av_log(avctx, AV_LOG_ERROR,
740                        "Unknown compression method %d\n",
741                        c->compression);
742                 ret = AVERROR_PATCHWELCOME;
743                 goto header_fail;
744             }
745             c->tile_width  = bytestream2_get_be32(&bc);
746             c->tile_height = bytestream2_get_be32(&bc);
747             if (c->tile_width <= 0 || c->tile_height <= 0 ||
748                 ((c->tile_width | c->tile_height) & 0xF) ||
749                 c->tile_width * 4LL * c->tile_height >= INT_MAX
750             ) {
751                 av_log(avctx, AV_LOG_ERROR,
752                        "Invalid tile dimensions %dx%d\n",
753                        c->tile_width, c->tile_height);
754                 ret = AVERROR_INVALIDDATA;
755                 goto header_fail;
756             }
757             c->tiles_x = (c->width  + c->tile_width  - 1) / c->tile_width;
758             c->tiles_y = (c->height + c->tile_height - 1) / c->tile_height;
759             c->bpp     = bytestream2_get_byte(&bc);
760             if (c->bpp == 32) {
761                 if (bytestream2_get_bytes_left(&bc) < 16 ||
762                     (chunk_size - 21) < 16) {
763                     av_log(avctx, AV_LOG_ERROR,
764                            "Display info: missing bitmasks!\n");
765                     ret = AVERROR_INVALIDDATA;
766                     goto header_fail;
767                 }
768                 r_mask = bytestream2_get_be32(&bc);
769                 g_mask = bytestream2_get_be32(&bc);
770                 b_mask = bytestream2_get_be32(&bc);
771                 if (r_mask != 0xFF0000 || g_mask != 0xFF00 || b_mask != 0xFF) {
772                     av_log(avctx, AV_LOG_ERROR,
773                            "Invalid or unsupported bitmasks: R=%"PRIX32", G=%"PRIX32", B=%"PRIX32"\n",
774                            r_mask, g_mask, b_mask);
775                     ret = AVERROR_PATCHWELCOME;
776                     goto header_fail;
777                 }
778             } else {
779                 avpriv_request_sample(avctx, "bpp=%d", c->bpp);
780                 ret = AVERROR_PATCHWELCOME;
781                 goto header_fail;
782             }
783             if (g2m_init_buffers(c)) {
784                 ret = AVERROR(ENOMEM);
785                 goto header_fail;
786             }
787             got_header = 1;
788             break;
789         case TILE_DATA:
790             if (!c->tiles_x || !c->tiles_y) {
791                 av_log(avctx, AV_LOG_WARNING,
792                        "No display info - skipping tile\n");
793                 break;
794             }
795             if (chunk_size < 2) {
796                 av_log(avctx, AV_LOG_ERROR, "Invalid tile data size %"PRIu32"\n",
797                        chunk_size);
798                 break;
799             }
800             c->tile_x = bytestream2_get_byte(&bc);
801             c->tile_y = bytestream2_get_byte(&bc);
802             if (c->tile_x >= c->tiles_x || c->tile_y >= c->tiles_y) {
803                 av_log(avctx, AV_LOG_ERROR,
804                        "Invalid tile pos %d,%d (in %dx%d grid)\n",
805                        c->tile_x, c->tile_y, c->tiles_x, c->tiles_y);
806                 break;
807             }
808             ret = 0;
809             switch (c->compression) {
810             case COMPR_EPIC_J_B:
811                 av_log(avctx, AV_LOG_ERROR,
812                        "ePIC j-b compression is not implemented yet\n");
813                 return AVERROR(ENOSYS);
814             case COMPR_KEMPF_J_B:
815                 ret = kempf_decode_tile(c, c->tile_x, c->tile_y,
816                                         buf + bytestream2_tell(&bc),
817                                         chunk_size - 2);
818                 break;
819             }
820             if (ret && c->framebuf)
821                 av_log(avctx, AV_LOG_ERROR, "Error decoding tile %d,%d\n",
822                        c->tile_x, c->tile_y);
823             break;
824         case CURSOR_POS:
825             if (chunk_size < 5) {
826                 av_log(avctx, AV_LOG_ERROR, "Invalid cursor pos size %"PRIu32"\n",
827                        chunk_size);
828                 break;
829             }
830             c->cursor_x = bytestream2_get_be16(&bc);
831             c->cursor_y = bytestream2_get_be16(&bc);
832             break;
833         case CURSOR_SHAPE:
834             if (chunk_size < 8) {
835                 av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"\n",
836                        chunk_size);
837                 break;
838             }
839             bytestream2_init(&tbc, buf + bytestream2_tell(&bc),
840                              chunk_size - 4);
841             g2m_load_cursor(avctx, c, &tbc);
842             break;
843         case CHUNK_CC:
844         case CHUNK_CD:
845             break;
846         default:
847             av_log(avctx, AV_LOG_WARNING, "Skipping chunk type %02d\n",
848                    chunk_type);
849         }
850
851         /* navigate to next chunk */
852         bytestream2_skip(&bc, chunk_start + chunk_size - bytestream2_tell(&bc));
853     }
854     if (got_header)
855         c->got_header = 1;
856
857     if (c->width && c->height && c->framebuf) {
858         if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
859             return ret;
860
861         pic->key_frame = got_header;
862         pic->pict_type = got_header ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
863
864         for (i = 0; i < avctx->height; i++)
865             memcpy(pic->data[0] + i * pic->linesize[0],
866                    c->framebuf + i * c->framebuf_stride,
867                    c->width * 3);
868         g2m_paint_cursor(c, pic->data[0], pic->linesize[0]);
869
870         *got_picture_ptr = 1;
871     }
872
873     return buf_size;
874
875 header_fail:
876     c->width   =
877     c->height  = 0;
878     c->tiles_x =
879     c->tiles_y = 0;
880     return ret;
881 }
882
883 static av_cold int g2m_decode_init(AVCodecContext *avctx)
884 {
885     G2MContext *const c = avctx->priv_data;
886     int ret;
887
888     if ((ret = jpg_init(avctx, &c->jc)) != 0) {
889         av_log(avctx, AV_LOG_ERROR, "Cannot initialise VLCs\n");
890         jpg_free_context(&c->jc);
891         return AVERROR(ENOMEM);
892     }
893
894     avctx->pix_fmt = AV_PIX_FMT_RGB24;
895
896     // store original sizes and check against those if resize happens
897     c->orig_width  = avctx->width;
898     c->orig_height = avctx->height;
899
900     return 0;
901 }
902
903 static av_cold int g2m_decode_end(AVCodecContext *avctx)
904 {
905     G2MContext *const c = avctx->priv_data;
906
907     jpg_free_context(&c->jc);
908
909     av_freep(&c->kempf_buf);
910     av_freep(&c->kempf_flags);
911     av_freep(&c->synth_tile);
912     av_freep(&c->jpeg_tile);
913     av_freep(&c->cursor);
914     av_freep(&c->framebuf);
915
916     return 0;
917 }
918
919 AVCodec ff_g2m_decoder = {
920     .name           = "g2m",
921     .long_name      = NULL_IF_CONFIG_SMALL("Go2Meeting"),
922     .type           = AVMEDIA_TYPE_VIDEO,
923     .id             = AV_CODEC_ID_G2M,
924     .priv_data_size = sizeof(G2MContext),
925     .init           = g2m_decode_init,
926     .close          = g2m_decode_end,
927     .decode         = g2m_decode_frame,
928     .capabilities   = CODEC_CAP_DR1,
929 };