2 * Go2Webinar / Go2Meeting decoder
3 * Copyright (c) 2012 Konstantin Shishkov
4 * Copyright (c) 2013 Maxim Poliakovski
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 * Go2Webinar / Go2Meeting decoder
31 #include "libavutil/imgutils.h"
32 #include "libavutil/intreadwrite.h"
36 #include "bytestream.h"
41 #include "jpegtables.h"
44 #define EPIC_PIX_STACK_SIZE 1024
45 #define EPIC_PIX_STACK_MAX (EPIC_PIX_STACK_SIZE - 1)
61 static const uint8_t luma_quant[64] = {
62 8, 6, 5, 8, 12, 20, 26, 31,
63 6, 6, 7, 10, 13, 29, 30, 28,
64 7, 7, 8, 12, 20, 29, 35, 28,
65 7, 9, 11, 15, 26, 44, 40, 31,
66 9, 11, 19, 28, 34, 55, 52, 39,
67 12, 18, 28, 32, 41, 52, 57, 46,
68 25, 32, 39, 44, 52, 61, 60, 51,
69 36, 46, 48, 49, 56, 50, 52, 50
72 static const uint8_t chroma_quant[64] = {
73 9, 9, 12, 24, 50, 50, 50, 50,
74 9, 11, 13, 33, 50, 50, 50, 50,
75 12, 13, 28, 50, 50, 50, 50, 50,
76 24, 33, 50, 50, 50, 50, 50, 50,
77 50, 50, 50, 50, 50, 50, 50, 50,
78 50, 50, 50, 50, 50, 50, 50, 50,
79 50, 50, 50, 50, 50, 50, 50, 50,
80 50, 50, 50, 50, 50, 50, 50, 50,
83 typedef struct ePICPixListElem {
84 struct ePICPixListElem *next;
89 typedef struct ePICPixHashElem {
91 struct ePICPixListElem *list;
94 #define EPIC_HASH_SIZE 256
95 typedef struct ePICPixHash {
96 ePICPixHashElem *bucket[EPIC_HASH_SIZE];
97 int bucket_size[EPIC_HASH_SIZE];
98 int bucket_fill[EPIC_HASH_SIZE];
101 typedef struct ePICContext {
104 ElsUnsignedRung unsigned_rung;
107 uint8_t W_ctx_rung[256];
108 uint8_t N_ctx_rung[512];
109 uint8_t nw_pred_rung[256];
110 uint8_t ne_pred_rung[256];
111 uint8_t prev_row_rung[14];
112 uint8_t runlen_zeroes[14];
115 uint32_t stack[EPIC_PIX_STACK_SIZE];
119 typedef struct JPGContext {
120 BlockDSPContext bdsp;
124 VLC dc_vlc[2], ac_vlc[2];
126 DECLARE_ALIGNED(32, int16_t, block)[6][64];
131 typedef struct G2MContext {
138 int width, height, bpp;
139 int orig_width, orig_height;
140 int tile_width, tile_height;
141 int tiles_x, tiles_y, tile_x, tile_y;
146 int framebuf_stride, old_width, old_height;
148 uint8_t *synth_tile, *jpeg_tile, *epic_buf, *epic_buf_base;
149 int tile_stride, epic_buf_stride, old_tile_w, old_tile_h;
152 uint8_t *kempf_buf, *kempf_flags;
157 int cursor_w, cursor_h, cursor_x, cursor_y;
158 int cursor_hot_x, cursor_hot_y;
161 static av_cold int build_vlc(VLC *vlc, const uint8_t *bits_table,
162 const uint8_t *val_table, int nb_codes,
165 uint8_t huff_size[256] = { 0 };
166 uint16_t huff_code[256];
167 uint16_t huff_sym[256];
170 ff_mjpeg_build_huffman_codes(huff_size, huff_code, bits_table, val_table);
172 for (i = 0; i < 256; i++)
173 huff_sym[i] = i + 16 * is_ac;
176 huff_sym[0] = 16 * 256;
178 return ff_init_vlc_sparse(vlc, 9, nb_codes, huff_size, 1, 1,
179 huff_code, 2, 2, huff_sym, 2, 2, 0);
182 static av_cold int jpg_init(AVCodecContext *avctx, JPGContext *c)
186 ret = build_vlc(&c->dc_vlc[0], avpriv_mjpeg_bits_dc_luminance,
187 avpriv_mjpeg_val_dc, 12, 0);
190 ret = build_vlc(&c->dc_vlc[1], avpriv_mjpeg_bits_dc_chrominance,
191 avpriv_mjpeg_val_dc, 12, 0);
194 ret = build_vlc(&c->ac_vlc[0], avpriv_mjpeg_bits_ac_luminance,
195 avpriv_mjpeg_val_ac_luminance, 251, 1);
198 ret = build_vlc(&c->ac_vlc[1], avpriv_mjpeg_bits_ac_chrominance,
199 avpriv_mjpeg_val_ac_chrominance, 251, 1);
203 ff_blockdsp_init(&c->bdsp, avctx);
204 ff_idctdsp_init(&c->idsp, avctx);
205 ff_init_scantable(c->idsp.idct_permutation, &c->scantable,
211 static av_cold void jpg_free_context(JPGContext *ctx)
215 for (i = 0; i < 2; i++) {
216 ff_free_vlc(&ctx->dc_vlc[i]);
217 ff_free_vlc(&ctx->ac_vlc[i]);
223 static void jpg_unescape(const uint8_t *src, int src_size,
224 uint8_t *dst, int *dst_size)
226 const uint8_t *src_end = src + src_size;
227 uint8_t *dst_start = dst;
229 while (src < src_end) {
234 if (x == 0xFF && !*src)
237 *dst_size = dst - dst_start;
240 static int jpg_decode_block(JPGContext *c, GetBitContext *gb,
241 int plane, int16_t *block)
244 const int is_chroma = !!plane;
245 const uint8_t *qmat = is_chroma ? chroma_quant : luma_quant;
247 c->bdsp.clear_block(block);
248 dc = get_vlc2(gb, c->dc_vlc[is_chroma].table, 9, 3);
250 return AVERROR_INVALIDDATA;
252 dc = get_xbits(gb, dc);
253 dc = dc * qmat[0] + c->prev_dc[plane];
255 c->prev_dc[plane] = dc;
259 val = get_vlc2(gb, c->ac_vlc[is_chroma].table, 9, 3);
261 return AVERROR_INVALIDDATA;
265 return val ? AVERROR_INVALIDDATA : 0;
269 val = get_xbits(gb, nbits);
270 val *= qmat[ff_zigzag_direct[pos]];
271 block[c->scantable.permutated[pos]] = val;
277 static inline void yuv2rgb(uint8_t *out, int ridx, int Y, int U, int V)
279 out[ridx] = av_clip_uint8(Y + (91881 * V + 32768 >> 16));
280 out[1] = av_clip_uint8(Y + (-22554 * U - 46802 * V + 32768 >> 16));
281 out[2 - ridx] = av_clip_uint8(Y + (116130 * U + 32768 >> 16));
284 static int jpg_decode_data(JPGContext *c, int width, int height,
285 const uint8_t *src, int src_size,
286 uint8_t *dst, int dst_stride,
287 const uint8_t *mask, int mask_stride, int num_mbs,
291 int mb_w, mb_h, mb_x, mb_y, i, j;
295 const int ridx = swapuv ? 2 : 0;
297 if ((ret = av_reallocp(&c->buf,
298 src_size + AV_INPUT_BUFFER_PADDING_SIZE)) < 0)
300 jpg_unescape(src, src_size, c->buf, &unesc_size);
301 memset(c->buf + unesc_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
302 if((ret = init_get_bits8(&gb, c->buf, unesc_size)) < 0)
305 width = FFALIGN(width, 16);
307 mb_h = (height + 15) >> 4;
310 num_mbs = mb_w * mb_h * 4;
312 for (i = 0; i < 3; i++)
313 c->prev_dc[i] = 1024;
316 c->bdsp.clear_blocks(c->block[0]);
317 for (mb_y = 0; mb_y < mb_h; mb_y++) {
318 for (mb_x = 0; mb_x < mb_w; mb_x++) {
319 if (mask && !mask[mb_x * 2] && !mask[mb_x * 2 + 1] &&
320 !mask[mb_x * 2 + mask_stride] &&
321 !mask[mb_x * 2 + 1 + mask_stride]) {
325 for (j = 0; j < 2; j++) {
326 for (i = 0; i < 2; i++) {
327 if (mask && !mask[mb_x * 2 + i + j * mask_stride])
330 if ((ret = jpg_decode_block(c, &gb, 0,
331 c->block[i + j * 2])) != 0)
333 c->idsp.idct(c->block[i + j * 2]);
336 for (i = 1; i < 3; i++) {
337 if ((ret = jpg_decode_block(c, &gb, i, c->block[i + 3])) != 0)
339 c->idsp.idct(c->block[i + 3]);
342 for (j = 0; j < 16; j++) {
343 uint8_t *out = dst + bx * 3 + (by + j) * dst_stride;
344 for (i = 0; i < 16; i++) {
347 Y = c->block[(j >> 3) * 2 + (i >> 3)][(i & 7) + (j & 7) * 8];
348 U = c->block[4][(i >> 1) + (j >> 1) * 8] - 128;
349 V = c->block[5][(i >> 1) + (j >> 1) * 8] - 128;
350 yuv2rgb(out + i * 3, ridx, Y, U, V);
361 mask += mask_stride * 2;
367 #define LOAD_NEIGHBOURS(x) \
368 W = curr_row[(x) - 1]; \
369 N = above_row[(x)]; \
370 WW = curr_row[(x) - 2]; \
371 NW = above_row[(x) - 1]; \
372 NE = above_row[(x) + 1]; \
373 NN = above2_row[(x)]; \
374 NNW = above2_row[(x) - 1]; \
375 NWW = above_row[(x) - 2]; \
376 NNE = above2_row[(x) + 1]
378 #define UPDATE_NEIGHBOURS(x) \
384 NE = above_row[(x) + 1]; \
385 NNE = above2_row[(x) + 1]
391 /* improved djb2 hash from http://www.cse.yorku.ca/~oz/hash.html */
392 static int djb2_hash(uint32_t key)
396 h = (h * 33) ^ ((key >> 24) & 0xFF); // xxx: probably not needed at all
397 h = (h * 33) ^ ((key >> 16) & 0xFF);
398 h = (h * 33) ^ ((key >> 8) & 0xFF);
399 h = (h * 33) ^ (key & 0xFF);
401 return h & (EPIC_HASH_SIZE - 1);
404 static void epic_hash_init(ePICPixHash *hash)
406 memset(hash, 0, sizeof(*hash));
409 static ePICPixHashElem *epic_hash_find(const ePICPixHash *hash, uint32_t key)
411 int i, idx = djb2_hash(key);
412 ePICPixHashElem *bucket = hash->bucket[idx];
414 for (i = 0; i < hash->bucket_fill[idx]; i++)
415 if (bucket[i].pix_id == key)
421 static ePICPixHashElem *epic_hash_add(ePICPixHash *hash, uint32_t key)
423 ePICPixHashElem *bucket, *ret;
424 int idx = djb2_hash(key);
426 if (hash->bucket_size[idx] > INT_MAX / sizeof(**hash->bucket))
429 if (!(hash->bucket_fill[idx] < hash->bucket_size[idx])) {
430 int new_size = hash->bucket_size[idx] + 16;
431 bucket = av_realloc(hash->bucket[idx], new_size * sizeof(*bucket));
434 hash->bucket[idx] = bucket;
435 hash->bucket_size[idx] = new_size;
438 ret = &hash->bucket[idx][hash->bucket_fill[idx]++];
439 memset(ret, 0, sizeof(*ret));
444 static int epic_add_pixel_to_cache(ePICPixHash *hash, uint32_t key, uint32_t pix)
446 ePICPixListElem *new_elem;
447 ePICPixHashElem *hash_elem = epic_hash_find(hash, key);
450 if (!(hash_elem = epic_hash_add(hash, key)))
451 return AVERROR(ENOMEM);
454 new_elem = av_mallocz(sizeof(*new_elem));
456 return AVERROR(ENOMEM);
458 new_elem->pixel = pix;
459 new_elem->next = hash_elem->list;
460 hash_elem->list = new_elem;
465 static inline int epic_cache_entries_for_pixel(const ePICPixHash *hash,
468 ePICPixHashElem *hash_elem = epic_hash_find(hash, pix);
470 if (hash_elem != NULL && hash_elem->list != NULL)
476 static void epic_free_pixel_cache(ePICPixHash *hash)
480 for (i = 0; i < EPIC_HASH_SIZE; i++) {
481 for (j = 0; j < hash->bucket_fill[i]; j++) {
482 ePICPixListElem *list_elem = hash->bucket[i][j].list;
484 ePICPixListElem *tmp = list_elem->next;
489 av_freep(&hash->bucket[i]);
490 hash->bucket_size[i] =
491 hash->bucket_fill[i] = 0;
495 static inline int is_pixel_on_stack(const ePICContext *dc, uint32_t pix)
499 for (i = 0; i < dc->stack_pos; i++)
500 if (dc->stack[i] == pix)
503 return i != dc->stack_pos;
506 #define TOSIGNED(val) (((val) >> 1) ^ -((val) & 1))
508 static inline int epic_decode_component_pred(ePICContext *dc,
509 int N, int W, int NW)
511 unsigned delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
512 return mid_pred(N, N + W - NW, W) - TOSIGNED(delta);
515 static uint32_t epic_decode_pixel_pred(ePICContext *dc, int x, int y,
516 const uint32_t *curr_row,
517 const uint32_t *above_row)
519 uint32_t N, W, NW, pred;
521 int GN, GW, GNW, R, G, B;
526 NW = above_row[x - 1];
528 GN = (N >> G_shift) & 0xFF;
529 GW = (W >> G_shift) & 0xFF;
530 GNW = (NW >> G_shift) & 0xFF;
532 G = epic_decode_component_pred(dc, GN, GW, GNW);
534 R = G + epic_decode_component_pred(dc,
535 ((N >> R_shift) & 0xFF) - GN,
536 ((W >> R_shift) & 0xFF) - GW,
537 ((NW >> R_shift) & 0xFF) - GNW);
539 B = G + epic_decode_component_pred(dc,
540 ((N >> B_shift) & 0xFF) - GN,
541 ((W >> B_shift) & 0xFF) - GW,
542 ((NW >> B_shift) & 0xFF) - GNW);
545 pred = curr_row[x - 1];
549 delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
550 R = ((pred >> R_shift) & 0xFF) - TOSIGNED(delta);
552 delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
553 G = ((pred >> G_shift) & 0xFF) - TOSIGNED(delta);
555 delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
556 B = ((pred >> B_shift) & 0xFF) - TOSIGNED(delta);
559 if (R<0 || G<0 || B<0 || R > 255 || G > 255 || B > 255) {
560 avpriv_request_sample(NULL, "RGB %d %d %d is out of range\n", R, G, B);
564 return (R << R_shift) | (G << G_shift) | (B << B_shift);
567 static int epic_predict_pixel(ePICContext *dc, uint8_t *rung,
568 uint32_t *pPix, uint32_t pix)
570 if (!ff_els_decode_bit(&dc->els_ctx, rung)) {
574 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = pix;
578 static int epic_handle_edges(ePICContext *dc, int x, int y,
579 const uint32_t *curr_row,
580 const uint32_t *above_row, uint32_t *pPix)
584 if (!x && !y) { /* special case: top-left pixel */
585 /* the top-left pixel is coded independently with 3 unsigned numbers */
586 *pPix = (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << R_shift) |
587 (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << G_shift) |
588 (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << B_shift);
592 if (x) { /* predict from W first */
593 pix = curr_row[x - 1];
594 if (epic_predict_pixel(dc, &dc->W_flag_rung, pPix, pix))
598 if (y) { /* then try to predict from N */
600 if (!dc->stack_pos || dc->stack[0] != pix) {
601 if (epic_predict_pixel(dc, &dc->N_flag_rung, pPix, pix))
609 static int epic_decode_run_length(ePICContext *dc, int x, int y, int tile_width,
610 const uint32_t *curr_row,
611 const uint32_t *above_row,
612 const uint32_t *above2_row,
613 uint32_t *pPix, int *pRun)
615 int idx, got_pixel = 0, WWneW, old_WWneW = 0;
616 uint32_t W, WW, N, NN, NW, NE, NWW, NNW, NNE;
622 if (dc->next_run_pos == x) {
623 /* can't reuse W for the new pixel in this case */
626 idx = (WW != W) << 7 |
634 WWneW = ff_els_decode_bit(&dc->els_ctx, &dc->W_ctx_rung[idx]);
640 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = W;
648 if (got_pixel) // pixel value already known (derived from either W or N)
650 else { // pixel value is unknown and will be decoded later
651 NWneW = *pRun ? NWneW : NW != W;
653 /* TODO: RFC this mess! */
654 switch (((NW != N) << 2) | (NWneW << 1) | WWneW) {
656 break; // do nothing here
661 if (!is_pixel_on_stack(dc, N)) {
663 (*pRun ? old_WWneW : WW != W) << 7 |
671 if (!ff_els_decode_bit(&dc->els_ctx, &dc->N_ctx_rung[idx])) {
682 if (!is_pixel_on_stack(dc, N))
683 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = N;
688 if (x + *pRun >= tile_width - 1)
691 UPDATE_NEIGHBOURS(x + *pRun);
693 if (!NWneW && NW == N && N == NE) {
695 int start_pos = x + *pRun;
697 /* scan for a run of pix in the line above */
698 uint32_t pix = above_row[start_pos + 1];
699 for (pos = start_pos + 2; pos < tile_width; pos++)
700 if (!(above_row[pos] == pix))
702 run = pos - start_pos - 1;
703 idx = av_ceil_log2(run);
704 if (ff_els_decode_bit(&dc->els_ctx, &dc->prev_row_rung[idx]))
708 /* run-length is coded as plain binary number of idx - 1 bits */
709 for (pos = idx - 1, rle = 0, flag = 0; pos >= 0; pos--) {
710 if ((1 << pos) + rle < run &&
711 ff_els_decode_bit(&dc->els_ctx,
712 flag ? &dc->runlen_one
713 : &dc->runlen_zeroes[pos])) {
719 break; // return immediately
721 if (x + *pRun >= tile_width - 1)
724 LOAD_NEIGHBOURS(x + *pRun);
737 WWneW = ff_els_decode_bit(&dc->els_ctx, &dc->W_ctx_rung[idx]);
740 dc->next_run_pos = x + *pRun;
744 static int epic_predict_pixel2(ePICContext *dc, uint8_t *rung,
745 uint32_t *pPix, uint32_t pix)
747 if (ff_els_decode_bit(&dc->els_ctx, rung)) {
751 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = pix;
755 static int epic_predict_from_NW_NE(ePICContext *dc, int x, int y, int run,
756 int tile_width, const uint32_t *curr_row,
757 const uint32_t *above_row, uint32_t *pPix)
761 /* try to reuse the NW pixel first */
763 uint32_t NW = above_row[x - 1];
764 if (NW != curr_row[x - 1] && NW != above_row[x] && !is_pixel_on_stack(dc, NW)) {
765 if (epic_predict_pixel2(dc, &dc->nw_pred_rung[NW & 0xFF], pPix, NW))
770 /* try to reuse the NE[x + run, y] pixel */
772 if (pos < tile_width - 1 && y) {
773 uint32_t NE = above_row[pos + 1];
774 if (NE != above_row[pos] && !is_pixel_on_stack(dc, NE)) {
775 if (epic_predict_pixel2(dc, &dc->ne_pred_rung[NE & 0xFF], pPix, NE))
783 static int epic_decode_from_cache(ePICContext *dc, uint32_t W, uint32_t *pPix)
785 ePICPixListElem *list, *prev = NULL;
786 ePICPixHashElem *hash_elem = epic_hash_find(&dc->hash, W);
788 if (!hash_elem || !hash_elem->list)
791 list = hash_elem->list;
793 if (!is_pixel_on_stack(dc, list->pixel)) {
794 if (ff_els_decode_bit(&dc->els_ctx, &list->rung)) {
796 if (list != hash_elem->list) {
797 prev->next = list->next;
798 list->next = hash_elem->list;
799 hash_elem->list = list;
803 dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = list->pixel;
812 static int epic_decode_tile(ePICContext *dc, uint8_t *out, int tile_height,
813 int tile_width, int stride)
817 uint32_t *curr_row = NULL, *above_row = NULL, *above2_row;
819 for (y = 0; y < tile_height; y++, out += stride) {
820 above2_row = above_row;
821 above_row = curr_row;
822 curr_row = (uint32_t *) out;
824 for (x = 0, dc->next_run_pos = 0; x < tile_width;) {
826 return AVERROR_INVALIDDATA; // bail out in the case of ELS overflow
828 pix = curr_row[x - 1]; // get W pixel
830 if (y >= 1 && x >= 2 &&
831 pix != curr_row[x - 2] && pix != above_row[x - 1] &&
832 pix != above_row[x - 2] && pix != above_row[x] &&
833 !epic_cache_entries_for_pixel(&dc->hash, pix)) {
834 curr_row[x] = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);
838 dc->stack_pos = 0; // empty stack
840 if (y < 2 || x < 2 || x == tile_width - 1) {
842 got_pixel = epic_handle_edges(dc, x, y, curr_row, above_row, &pix);
844 got_pixel = epic_decode_run_length(dc, x, y, tile_width,
846 above2_row, &pix, &run);
851 if (!got_pixel && !epic_predict_from_NW_NE(dc, x, y, run,
852 tile_width, curr_row,
854 uint32_t ref_pix = curr_row[x - 1];
855 if (!x || !epic_decode_from_cache(dc, ref_pix, &pix)) {
856 pix = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);
858 int ret = epic_add_pixel_to_cache(&dc->hash,
866 for (; run > 0; x++, run--)
875 static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y,
876 const uint8_t *src, size_t src_size,
877 AVCodecContext *avctx)
879 uint8_t prefix, mask = 0x80;
880 int extrabytes, tile_width, tile_height, awidth, aheight;
887 /* get data size of the ELS partition as unsigned variable-length integer */
890 for (extrabytes = 0; (prefix & mask) && (extrabytes < 7); extrabytes++)
892 if (extrabytes > 3 || src_size < extrabytes) {
893 av_log(avctx, AV_LOG_ERROR, "ePIC: invalid data size VLI\n");
894 return AVERROR_INVALIDDATA;
897 els_dsize = prefix & ((0x80 >> extrabytes) - 1); // mask out the length prefix
898 while (extrabytes-- > 0) {
899 els_dsize = (els_dsize << 8) | *src++;
903 if (src_size < els_dsize) {
904 av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %"SIZE_SPECIFIER", got %"SIZE_SPECIFIER"\n",
905 els_dsize, src_size);
906 return AVERROR_INVALIDDATA;
909 tile_width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
910 tile_height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
911 awidth = FFALIGN(tile_width, 16);
912 aheight = FFALIGN(tile_height, 16);
916 uint8_t tr_r, tr_g, tr_b, *buf;
918 /* ELS decoder initializations */
919 memset(&c->ec, 0, sizeof(c->ec));
920 ff_els_decoder_init(&c->ec.els_ctx, src, els_dsize);
921 epic_hash_init(&c->ec.hash);
923 /* decode transparent pixel value */
924 tr_r = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
925 tr_g = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
926 tr_b = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
927 if (c->ec.els_ctx.err != 0) {
928 av_log(avctx, AV_LOG_ERROR,
929 "ePIC: couldn't decode transparency pixel!\n");
930 ff_els_decoder_uninit(&c->ec.unsigned_rung);
931 return AVERROR_INVALIDDATA;
934 ret = epic_decode_tile(&c->ec, c->epic_buf, tile_height, tile_width,
937 epic_free_pixel_cache(&c->ec.hash);
938 ff_els_decoder_uninit(&c->ec.unsigned_rung);
941 av_log(avctx, AV_LOG_ERROR,
942 "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
943 avctx->frame_number, tile_x, tile_y);
944 return AVERROR_INVALIDDATA;
948 dst = c->framebuf + tile_x * c->tile_width * 3 +
949 tile_y * c->tile_height * c->framebuf_stride;
951 for (j = 0; j < tile_height; j++) {
953 in = (uint32_t *) buf;
954 for (i = 0; i < tile_width; i++) {
955 out[0] = (in[i] >> R_shift) & 0xFF;
956 out[1] = (in[i] >> G_shift) & 0xFF;
957 out[2] = (in[i] >> B_shift) & 0xFF;
960 buf += c->epic_buf_stride;
961 dst += c->framebuf_stride;
964 if (src_size > els_dsize) {
967 int bstride = FFALIGN(tile_width, 16) >> 3;
969 int estride = c->epic_buf_stride >> 2;
972 src_size -= els_dsize;
974 in = (uint32_t *) c->epic_buf;
975 tr = (tr_r << R_shift) | (tr_g << G_shift) | (tr_b << B_shift);
977 memset(c->kempf_flags, 0,
978 (aheight >> 3) * bstride * sizeof(*c->kempf_flags));
979 for (j = 0; j < tile_height; j += 8) {
980 for (i = 0; i < tile_width; i += 8) {
981 c->kempf_flags[(i >> 3) + (j >> 3) * bstride] = 0;
982 for (k = 0; k < 8 * 8; k++) {
983 if (in[i + (k & 7) + (k >> 3) * estride] == tr) {
984 c->kempf_flags[(i >> 3) + (j >> 3) * bstride] = 1;
993 memset(c->jpeg_tile, 0, c->tile_stride * aheight);
994 jpg_decode_data(&c->jc, awidth, aheight, src, src_size,
995 c->jpeg_tile, c->tile_stride,
996 c->kempf_flags, bstride, nblocks, c->swapuv);
998 in = (uint32_t *) c->epic_buf;
999 dst = c->framebuf + tile_x * c->tile_width * 3 +
1000 tile_y * c->tile_height * c->framebuf_stride;
1002 for (j = 0; j < tile_height; j++) {
1003 for (i = 0; i < tile_width; i++)
1005 memcpy(dst + i * 3, jpg + i * 3, 3);
1006 in += c->epic_buf_stride >> 2;
1007 dst += c->framebuf_stride;
1008 jpg += c->tile_stride;
1012 dst = c->framebuf + tile_x * c->tile_width * 3 +
1013 tile_y * c->tile_height * c->framebuf_stride;
1014 return jpg_decode_data(&c->jc, tile_width, tile_height, src, src_size,
1015 dst, c->framebuf_stride, NULL, 0, 0, c->swapuv);
1021 static int kempf_restore_buf(const uint8_t *src, int len,
1022 uint8_t *dst, int stride,
1023 const uint8_t *jpeg_tile, int tile_stride,
1024 int width, int height,
1025 const uint8_t *pal, int npal, int tidx)
1030 int align_width = FFALIGN(width, 16);
1032 if ((ret = init_get_bits8(&gb, src, len)) < 0)
1035 if (npal <= 2) nb = 1;
1036 else if (npal <= 4) nb = 2;
1037 else if (npal <= 16) nb = 4;
1040 for (j = 0; j < height; j++, dst += stride, jpeg_tile += tile_stride) {
1041 if (get_bits(&gb, 8))
1043 for (i = 0; i < width; i++) {
1044 col = get_bits(&gb, nb);
1046 memcpy(dst + i * 3, pal + col * 3, 3);
1048 memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
1050 skip_bits_long(&gb, nb * (align_width - width));
1056 static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y,
1057 const uint8_t *src, int src_size)
1060 int hdr, zsize, npal, tidx = -1, ret;
1062 const uint8_t *src_end = src + src_size;
1063 uint8_t pal[768], transp[3];
1064 uLongf dlen = (c->tile_width + 1) * c->tile_height;
1066 int nblocks, cblocks, bstride;
1067 int bits, bitbuf, coded;
1068 uint8_t *dst = c->framebuf + tile_x * c->tile_width * 3 +
1069 tile_y * c->tile_height * c->framebuf_stride;
1072 return AVERROR_INVALIDDATA;
1074 width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
1075 height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
1078 sub_type = hdr >> 5;
1079 if (sub_type == 0) {
1081 memcpy(transp, src, 3);
1083 for (j = 0; j < height; j++, dst += c->framebuf_stride)
1084 for (i = 0; i < width; i++)
1085 memcpy(dst + i * 3, transp, 3);
1087 } else if (sub_type == 1) {
1088 return jpg_decode_data(&c->jc, width, height, src, src_end - src,
1089 dst, c->framebuf_stride, NULL, 0, 0, 0);
1092 if (sub_type != 2) {
1093 memcpy(transp, src, 3);
1097 if (src_end - src < npal * 3)
1098 return AVERROR_INVALIDDATA;
1099 memcpy(pal, src, npal * 3);
1101 if (sub_type != 2) {
1102 for (i = 0; i < npal; i++) {
1103 if (!memcmp(pal + i * 3, transp, 3)) {
1110 if (src_end - src < 2)
1112 zsize = (src[0] << 8) | src[1];
1115 if (src_end - src < zsize + (sub_type != 2))
1116 return AVERROR_INVALIDDATA;
1118 ret = uncompress(c->kempf_buf, &dlen, src, zsize);
1120 return AVERROR_INVALIDDATA;
1123 if (sub_type == 2) {
1124 kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
1125 NULL, 0, width, height, pal, npal, tidx);
1129 nblocks = *src++ + 1;
1131 bstride = FFALIGN(width, 16) >> 3;
1132 // blocks are coded LSB and we need normal bitreader for JPEG data
1134 for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
1135 for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
1138 return AVERROR_INVALIDDATA;
1146 if (cblocks > nblocks)
1147 return AVERROR_INVALIDDATA;
1148 c->kempf_flags[j * 2 + i * 2 * bstride] =
1149 c->kempf_flags[j * 2 + 1 + i * 2 * bstride] =
1150 c->kempf_flags[j * 2 + (i * 2 + 1) * bstride] =
1151 c->kempf_flags[j * 2 + 1 + (i * 2 + 1) * bstride] = coded;
1155 memset(c->jpeg_tile, 0, c->tile_stride * height);
1156 jpg_decode_data(&c->jc, width, height, src, src_end - src,
1157 c->jpeg_tile, c->tile_stride,
1158 c->kempf_flags, bstride, nblocks * 4, 0);
1160 kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
1161 c->jpeg_tile, c->tile_stride,
1162 width, height, pal, npal, tidx);
1167 static int g2m_init_buffers(G2MContext *c)
1171 if (!c->framebuf || c->old_width < c->width || c->old_height < c->height) {
1172 c->framebuf_stride = FFALIGN(c->width + 15, 16) * 3;
1173 aligned_height = c->height + 15;
1174 av_free(c->framebuf);
1175 c->framebuf = av_mallocz_array(c->framebuf_stride, aligned_height);
1177 return AVERROR(ENOMEM);
1179 if (!c->synth_tile || !c->jpeg_tile ||
1180 (c->compression == 2 && !c->epic_buf_base) ||
1181 c->old_tile_w < c->tile_width ||
1182 c->old_tile_h < c->tile_height) {
1183 c->tile_stride = FFALIGN(c->tile_width, 16) * 3;
1184 c->epic_buf_stride = FFALIGN(c->tile_width * 4, 16);
1185 aligned_height = FFALIGN(c->tile_height, 16);
1186 av_freep(&c->synth_tile);
1187 av_freep(&c->jpeg_tile);
1188 av_freep(&c->kempf_buf);
1189 av_freep(&c->kempf_flags);
1190 av_freep(&c->epic_buf_base);
1192 c->synth_tile = av_mallocz(c->tile_stride * aligned_height);
1193 c->jpeg_tile = av_mallocz(c->tile_stride * aligned_height);
1194 c->kempf_buf = av_mallocz((c->tile_width + 1) * aligned_height +
1195 AV_INPUT_BUFFER_PADDING_SIZE);
1196 c->kempf_flags = av_mallocz(c->tile_width * aligned_height);
1197 if (!c->synth_tile || !c->jpeg_tile ||
1198 !c->kempf_buf || !c->kempf_flags)
1199 return AVERROR(ENOMEM);
1200 if (c->compression == 2) {
1201 c->epic_buf_base = av_mallocz(c->epic_buf_stride * aligned_height + 4);
1202 if (!c->epic_buf_base)
1203 return AVERROR(ENOMEM);
1204 c->epic_buf = c->epic_buf_base + 4;
1211 static int g2m_load_cursor(AVCodecContext *avctx, G2MContext *c,
1217 uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
1218 uint32_t cursor_hot_x, cursor_hot_y;
1219 int cursor_fmt, err;
1221 cur_size = bytestream2_get_be32(gb);
1222 cursor_w = bytestream2_get_byte(gb);
1223 cursor_h = bytestream2_get_byte(gb);
1224 cursor_hot_x = bytestream2_get_byte(gb);
1225 cursor_hot_y = bytestream2_get_byte(gb);
1226 cursor_fmt = bytestream2_get_byte(gb);
1228 cursor_stride = FFALIGN(cursor_w, cursor_fmt==1 ? 32 : 1) * 4;
1230 if (cursor_w < 1 || cursor_w > 256 ||
1231 cursor_h < 1 || cursor_h > 256) {
1232 av_log(avctx, AV_LOG_ERROR, "Invalid cursor dimensions %"PRIu32"x%"PRIu32"\n",
1233 cursor_w, cursor_h);
1234 return AVERROR_INVALIDDATA;
1236 if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
1237 av_log(avctx, AV_LOG_WARNING, "Invalid hotspot position %"PRIu32",%"PRIu32"\n",
1238 cursor_hot_x, cursor_hot_y);
1239 cursor_hot_x = FFMIN(cursor_hot_x, cursor_w - 1);
1240 cursor_hot_y = FFMIN(cursor_hot_y, cursor_h - 1);
1242 if (cur_size - 9 > bytestream2_get_bytes_left(gb) ||
1243 c->cursor_w * c->cursor_h / 4 > cur_size) {
1244 av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"/%u\n",
1245 cur_size, bytestream2_get_bytes_left(gb));
1246 return AVERROR_INVALIDDATA;
1248 if (cursor_fmt != 1 && cursor_fmt != 32) {
1249 avpriv_report_missing_feature(avctx, "Cursor format %d",
1251 return AVERROR_PATCHWELCOME;
1254 if ((err = av_reallocp(&c->cursor, cursor_stride * cursor_h)) < 0) {
1255 av_log(avctx, AV_LOG_ERROR, "Cannot allocate cursor buffer\n");
1259 c->cursor_w = cursor_w;
1260 c->cursor_h = cursor_h;
1261 c->cursor_hot_x = cursor_hot_x;
1262 c->cursor_hot_y = cursor_hot_y;
1263 c->cursor_fmt = cursor_fmt;
1264 c->cursor_stride = cursor_stride;
1267 switch (c->cursor_fmt) {
1268 case 1: // old monochrome
1269 for (j = 0; j < c->cursor_h; j++) {
1270 for (i = 0; i < c->cursor_w; i += 32) {
1271 bits = bytestream2_get_be32(gb);
1272 for (k = 0; k < 32; k++) {
1273 dst[0] = !!(bits & 0x80000000);
1281 for (j = 0; j < c->cursor_h; j++) {
1282 for (i = 0; i < c->cursor_w; i += 32) {
1283 bits = bytestream2_get_be32(gb);
1284 for (k = 0; k < 32; k++) {
1285 int mask_bit = !!(bits & 0x80000000);
1286 switch (dst[0] * 2 + mask_bit) {
1311 case 32: // full colour
1312 /* skip monochrome version of the cursor and decode RGBA instead */
1313 bytestream2_skip(gb, c->cursor_h * (FFALIGN(c->cursor_w, 32) >> 3));
1314 for (j = 0; j < c->cursor_h; j++) {
1315 for (i = 0; i < c->cursor_w; i++) {
1316 int val = bytestream2_get_be32(gb);
1325 return AVERROR_PATCHWELCOME;
1330 #define APPLY_ALPHA(src, new, alpha) \
1331 src = (src * (256 - alpha) + new * alpha) >> 8
1333 static void g2m_paint_cursor(G2MContext *c, uint8_t *dst, int stride)
1337 const uint8_t *cursor;
1342 x = c->cursor_x - c->cursor_hot_x;
1343 y = c->cursor_y - c->cursor_hot_y;
1349 if (x + w > c->width)
1351 if (y + h > c->height)
1365 cursor += -y * c->cursor_stride;
1370 for (j = 0; j < h; j++) {
1371 for (i = 0; i < w; i++) {
1372 uint8_t alpha = cursor[i * 4];
1373 APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
1374 APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
1375 APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
1378 cursor += c->cursor_stride;
1382 static int g2m_decode_frame(AVCodecContext *avctx, void *data,
1383 int *got_picture_ptr, AVPacket *avpkt)
1385 const uint8_t *buf = avpkt->data;
1386 int buf_size = avpkt->size;
1387 G2MContext *c = avctx->priv_data;
1388 AVFrame *pic = data;
1389 GetByteContext bc, tbc;
1392 uint32_t chunk_size, r_mask, g_mask, b_mask;
1393 int chunk_type, chunk_start;
1397 if (buf_size < 12) {
1398 av_log(avctx, AV_LOG_ERROR,
1399 "Frame should have at least 12 bytes, got %d instead\n",
1401 return AVERROR_INVALIDDATA;
1404 bytestream2_init(&bc, buf, buf_size);
1406 magic = bytestream2_get_be32(&bc);
1407 if ((magic & ~0xF) != MKBETAG('G', '2', 'M', '0') ||
1408 (magic & 0xF) < 2 || (magic & 0xF) > 5) {
1409 av_log(avctx, AV_LOG_ERROR, "Wrong magic %08X\n", magic);
1410 return AVERROR_INVALIDDATA;
1413 c->swapuv = magic == MKBETAG('G', '2', 'M', '2');
1415 while (bytestream2_get_bytes_left(&bc) > 5) {
1416 chunk_size = bytestream2_get_le32(&bc) - 1;
1417 chunk_type = bytestream2_get_byte(&bc);
1418 chunk_start = bytestream2_tell(&bc);
1419 if (chunk_size > bytestream2_get_bytes_left(&bc)) {
1420 av_log(avctx, AV_LOG_ERROR, "Invalid chunk size %"PRIu32" type %02X\n",
1421 chunk_size, chunk_type);
1424 switch (chunk_type) {
1428 if (chunk_size < 21) {
1429 av_log(avctx, AV_LOG_ERROR, "Invalid display info size %"PRIu32"\n",
1433 c->width = bytestream2_get_be32(&bc);
1434 c->height = bytestream2_get_be32(&bc);
1435 if (c->width < 16 || c->height < 16) {
1436 av_log(avctx, AV_LOG_ERROR,
1437 "Invalid frame dimensions %dx%d\n",
1438 c->width, c->height);
1439 ret = AVERROR_INVALIDDATA;
1442 if (c->width != avctx->width || c->height != avctx->height) {
1443 ret = ff_set_dimensions(avctx, c->width, c->height);
1447 c->compression = bytestream2_get_be32(&bc);
1448 if (c->compression != 2 && c->compression != 3) {
1449 avpriv_report_missing_feature(avctx, "Compression method %d",
1451 ret = AVERROR_PATCHWELCOME;
1454 c->tile_width = bytestream2_get_be32(&bc);
1455 c->tile_height = bytestream2_get_be32(&bc);
1456 if (c->tile_width <= 0 || c->tile_height <= 0 ||
1457 ((c->tile_width | c->tile_height) & 0xF) ||
1458 c->tile_width * (uint64_t)c->tile_height >= INT_MAX / 4 ||
1459 av_image_check_size2(c->tile_width, c->tile_height, avctx->max_pixels, avctx->pix_fmt, 0, avctx) < 0
1461 av_log(avctx, AV_LOG_ERROR,
1462 "Invalid tile dimensions %dx%d\n",
1463 c->tile_width, c->tile_height);
1464 ret = AVERROR_INVALIDDATA;
1467 c->tiles_x = (c->width + c->tile_width - 1) / c->tile_width;
1468 c->tiles_y = (c->height + c->tile_height - 1) / c->tile_height;
1469 c->bpp = bytestream2_get_byte(&bc);
1471 if (bytestream2_get_bytes_left(&bc) < 16 ||
1472 (chunk_size - 21) < 16) {
1473 av_log(avctx, AV_LOG_ERROR,
1474 "Display info: missing bitmasks!\n");
1475 ret = AVERROR_INVALIDDATA;
1478 r_mask = bytestream2_get_be32(&bc);
1479 g_mask = bytestream2_get_be32(&bc);
1480 b_mask = bytestream2_get_be32(&bc);
1481 if (r_mask != 0xFF0000 || g_mask != 0xFF00 || b_mask != 0xFF) {
1482 avpriv_report_missing_feature(avctx,
1483 "Bitmasks: R=%"PRIX32", G=%"PRIX32", B=%"PRIX32,
1484 r_mask, g_mask, b_mask);
1485 ret = AVERROR_PATCHWELCOME;
1489 avpriv_request_sample(avctx, "bpp=%d", c->bpp);
1490 ret = AVERROR_PATCHWELCOME;
1493 if (g2m_init_buffers(c)) {
1494 ret = AVERROR(ENOMEM);
1500 if (!c->tiles_x || !c->tiles_y) {
1501 av_log(avctx, AV_LOG_WARNING,
1502 "No display info - skipping tile\n");
1505 if (chunk_size < 2) {
1506 av_log(avctx, AV_LOG_ERROR, "Invalid tile data size %"PRIu32"\n",
1510 c->tile_x = bytestream2_get_byte(&bc);
1511 c->tile_y = bytestream2_get_byte(&bc);
1512 if (c->tile_x >= c->tiles_x || c->tile_y >= c->tiles_y) {
1513 av_log(avctx, AV_LOG_ERROR,
1514 "Invalid tile pos %d,%d (in %dx%d grid)\n",
1515 c->tile_x, c->tile_y, c->tiles_x, c->tiles_y);
1519 switch (c->compression) {
1520 case COMPR_EPIC_J_B:
1521 ret = epic_jb_decode_tile(c, c->tile_x, c->tile_y,
1522 buf + bytestream2_tell(&bc),
1523 chunk_size - 2, avctx);
1525 case COMPR_KEMPF_J_B:
1526 ret = kempf_decode_tile(c, c->tile_x, c->tile_y,
1527 buf + bytestream2_tell(&bc),
1531 if (ret && c->framebuf)
1532 av_log(avctx, AV_LOG_ERROR, "Error decoding tile %d,%d\n",
1533 c->tile_x, c->tile_y);
1536 if (chunk_size < 5) {
1537 av_log(avctx, AV_LOG_ERROR, "Invalid cursor pos size %"PRIu32"\n",
1541 c->cursor_x = bytestream2_get_be16(&bc);
1542 c->cursor_y = bytestream2_get_be16(&bc);
1545 if (chunk_size < 8) {
1546 av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"\n",
1550 bytestream2_init(&tbc, buf + bytestream2_tell(&bc),
1552 g2m_load_cursor(avctx, c, &tbc);
1558 av_log(avctx, AV_LOG_WARNING, "Skipping chunk type %02d\n",
1562 /* navigate to next chunk */
1563 bytestream2_skip(&bc, chunk_start + chunk_size - bytestream2_tell(&bc));
1568 if (c->width && c->height && c->framebuf) {
1569 if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
1572 pic->key_frame = got_header;
1573 pic->pict_type = got_header ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
1575 for (i = 0; i < avctx->height; i++)
1576 memcpy(pic->data[0] + i * pic->linesize[0],
1577 c->framebuf + i * c->framebuf_stride,
1579 g2m_paint_cursor(c, pic->data[0], pic->linesize[0]);
1581 *got_picture_ptr = 1;
1596 static av_cold int g2m_decode_init(AVCodecContext *avctx)
1598 G2MContext *const c = avctx->priv_data;
1601 if ((ret = jpg_init(avctx, &c->jc)) != 0) {
1602 av_log(avctx, AV_LOG_ERROR, "Cannot initialise VLCs\n");
1603 jpg_free_context(&c->jc);
1604 return AVERROR(ENOMEM);
1607 avctx->pix_fmt = AV_PIX_FMT_RGB24;
1609 // store original sizes and check against those if resize happens
1610 c->orig_width = avctx->width;
1611 c->orig_height = avctx->height;
1616 static av_cold int g2m_decode_end(AVCodecContext *avctx)
1618 G2MContext *const c = avctx->priv_data;
1620 jpg_free_context(&c->jc);
1622 av_freep(&c->epic_buf_base);
1624 av_freep(&c->kempf_buf);
1625 av_freep(&c->kempf_flags);
1626 av_freep(&c->synth_tile);
1627 av_freep(&c->jpeg_tile);
1628 av_freep(&c->cursor);
1629 av_freep(&c->framebuf);
1634 AVCodec ff_g2m_decoder = {
1636 .long_name = NULL_IF_CONFIG_SMALL("Go2Meeting"),
1637 .type = AVMEDIA_TYPE_VIDEO,
1638 .id = AV_CODEC_ID_G2M,
1639 .priv_data_size = sizeof(G2MContext),
1640 .init = g2m_decode_init,
1641 .close = g2m_decode_end,
1642 .decode = g2m_decode_frame,
1643 .capabilities = AV_CODEC_CAP_DR1,
1644 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,