You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1646 lines
52KB

  1. /*
  2. * Go2Webinar / Go2Meeting decoder
  3. * Copyright (c) 2012 Konstantin Shishkov
  4. * Copyright (c) 2013 Maxim Poliakovski
  5. *
  6. * This file is part of FFmpeg.
  7. *
  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.
  12. *
  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.
  17. *
  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
  21. */
  22. /**
  23. * @file
  24. * Go2Webinar / Go2Meeting decoder
  25. */
  26. #include <inttypes.h>
  27. #include <zlib.h>
  28. #include "libavutil/intreadwrite.h"
  29. #include "avcodec.h"
  30. #include "blockdsp.h"
  31. #include "bytestream.h"
  32. #include "elsdec.h"
  33. #include "get_bits.h"
  34. #include "idctdsp.h"
  35. #include "internal.h"
  36. #include "jpegtables.h"
  37. #include "mjpeg.h"
  38. #define EPIC_PIX_STACK_SIZE 1024
  39. #define EPIC_PIX_STACK_MAX (EPIC_PIX_STACK_SIZE - 1)
  40. enum ChunkType {
  41. DISPLAY_INFO = 0xC8,
  42. TILE_DATA,
  43. CURSOR_POS,
  44. CURSOR_SHAPE,
  45. CHUNK_CC,
  46. CHUNK_CD
  47. };
  48. enum Compression {
  49. COMPR_EPIC_J_B = 2,
  50. COMPR_KEMPF_J_B,
  51. };
  52. static const uint8_t luma_quant[64] = {
  53. 8, 6, 5, 8, 12, 20, 26, 31,
  54. 6, 6, 7, 10, 13, 29, 30, 28,
  55. 7, 7, 8, 12, 20, 29, 35, 28,
  56. 7, 9, 11, 15, 26, 44, 40, 31,
  57. 9, 11, 19, 28, 34, 55, 52, 39,
  58. 12, 18, 28, 32, 41, 52, 57, 46,
  59. 25, 32, 39, 44, 52, 61, 60, 51,
  60. 36, 46, 48, 49, 56, 50, 52, 50
  61. };
  62. static const uint8_t chroma_quant[64] = {
  63. 9, 9, 12, 24, 50, 50, 50, 50,
  64. 9, 11, 13, 33, 50, 50, 50, 50,
  65. 12, 13, 28, 50, 50, 50, 50, 50,
  66. 24, 33, 50, 50, 50, 50, 50, 50,
  67. 50, 50, 50, 50, 50, 50, 50, 50,
  68. 50, 50, 50, 50, 50, 50, 50, 50,
  69. 50, 50, 50, 50, 50, 50, 50, 50,
  70. 50, 50, 50, 50, 50, 50, 50, 50,
  71. };
  72. typedef struct ePICPixListElem {
  73. struct ePICPixListElem *next;
  74. uint32_t pixel;
  75. uint8_t rung;
  76. } ePICPixListElem;
  77. typedef struct ePICPixHashElem {
  78. uint32_t pix_id;
  79. struct ePICPixListElem *list;
  80. } ePICPixHashElem;
  81. #define EPIC_HASH_SIZE 256
  82. typedef struct ePICPixHash {
  83. ePICPixHashElem *bucket[EPIC_HASH_SIZE];
  84. int bucket_size[EPIC_HASH_SIZE];
  85. int bucket_fill[EPIC_HASH_SIZE];
  86. } ePICPixHash;
  87. typedef struct ePICContext {
  88. ElsDecCtx els_ctx;
  89. int next_run_pos;
  90. ElsUnsignedRung unsigned_rung;
  91. uint8_t W_flag_rung;
  92. uint8_t N_flag_rung;
  93. uint8_t W_ctx_rung[256];
  94. uint8_t N_ctx_rung[512];
  95. uint8_t nw_pred_rung[256];
  96. uint8_t ne_pred_rung[256];
  97. uint8_t prev_row_rung[14];
  98. uint8_t runlen_zeroes[14];
  99. uint8_t runlen_one;
  100. int stack_pos;
  101. uint32_t stack[EPIC_PIX_STACK_SIZE];
  102. ePICPixHash hash;
  103. } ePICContext;
  104. typedef struct JPGContext {
  105. BlockDSPContext bdsp;
  106. IDCTDSPContext idsp;
  107. ScanTable scantable;
  108. VLC dc_vlc[2], ac_vlc[2];
  109. int prev_dc[3];
  110. DECLARE_ALIGNED(16, int16_t, block)[6][64];
  111. uint8_t *buf;
  112. } JPGContext;
  113. typedef struct G2MContext {
  114. ePICContext ec;
  115. JPGContext jc;
  116. int version;
  117. int compression;
  118. int width, height, bpp;
  119. int orig_width, orig_height;
  120. int tile_width, tile_height;
  121. int tiles_x, tiles_y, tile_x, tile_y;
  122. int got_header;
  123. uint8_t *framebuf;
  124. int framebuf_stride, old_width, old_height;
  125. uint8_t *synth_tile, *jpeg_tile, *epic_buf, *epic_buf_base;
  126. int tile_stride, epic_buf_stride, old_tile_w, old_tile_h;
  127. int swapuv;
  128. uint8_t *kempf_buf, *kempf_flags;
  129. uint8_t *cursor;
  130. int cursor_stride;
  131. int cursor_fmt;
  132. int cursor_w, cursor_h, cursor_x, cursor_y;
  133. int cursor_hot_x, cursor_hot_y;
  134. } G2MContext;
  135. static av_cold int build_vlc(VLC *vlc, const uint8_t *bits_table,
  136. const uint8_t *val_table, int nb_codes,
  137. int is_ac)
  138. {
  139. uint8_t huff_size[256] = { 0 };
  140. uint16_t huff_code[256];
  141. uint16_t huff_sym[256];
  142. int i;
  143. ff_mjpeg_build_huffman_codes(huff_size, huff_code, bits_table, val_table);
  144. for (i = 0; i < 256; i++)
  145. huff_sym[i] = i + 16 * is_ac;
  146. if (is_ac)
  147. huff_sym[0] = 16 * 256;
  148. return ff_init_vlc_sparse(vlc, 9, nb_codes, huff_size, 1, 1,
  149. huff_code, 2, 2, huff_sym, 2, 2, 0);
  150. }
  151. static av_cold int jpg_init(AVCodecContext *avctx, JPGContext *c)
  152. {
  153. int ret;
  154. ret = build_vlc(&c->dc_vlc[0], avpriv_mjpeg_bits_dc_luminance,
  155. avpriv_mjpeg_val_dc, 12, 0);
  156. if (ret)
  157. return ret;
  158. ret = build_vlc(&c->dc_vlc[1], avpriv_mjpeg_bits_dc_chrominance,
  159. avpriv_mjpeg_val_dc, 12, 0);
  160. if (ret)
  161. return ret;
  162. ret = build_vlc(&c->ac_vlc[0], avpriv_mjpeg_bits_ac_luminance,
  163. avpriv_mjpeg_val_ac_luminance, 251, 1);
  164. if (ret)
  165. return ret;
  166. ret = build_vlc(&c->ac_vlc[1], avpriv_mjpeg_bits_ac_chrominance,
  167. avpriv_mjpeg_val_ac_chrominance, 251, 1);
  168. if (ret)
  169. return ret;
  170. ff_blockdsp_init(&c->bdsp, avctx);
  171. ff_idctdsp_init(&c->idsp, avctx);
  172. ff_init_scantable(c->idsp.idct_permutation, &c->scantable,
  173. ff_zigzag_direct);
  174. return 0;
  175. }
  176. static av_cold void jpg_free_context(JPGContext *ctx)
  177. {
  178. int i;
  179. for (i = 0; i < 2; i++) {
  180. ff_free_vlc(&ctx->dc_vlc[i]);
  181. ff_free_vlc(&ctx->ac_vlc[i]);
  182. }
  183. av_freep(&ctx->buf);
  184. }
  185. static void jpg_unescape(const uint8_t *src, int src_size,
  186. uint8_t *dst, int *dst_size)
  187. {
  188. const uint8_t *src_end = src + src_size;
  189. uint8_t *dst_start = dst;
  190. while (src < src_end) {
  191. uint8_t x = *src++;
  192. *dst++ = x;
  193. if (x == 0xFF && !*src)
  194. src++;
  195. }
  196. *dst_size = dst - dst_start;
  197. }
  198. static int jpg_decode_block(JPGContext *c, GetBitContext *gb,
  199. int plane, int16_t *block)
  200. {
  201. int dc, val, pos;
  202. const int is_chroma = !!plane;
  203. const uint8_t *qmat = is_chroma ? chroma_quant : luma_quant;
  204. c->bdsp.clear_block(block);
  205. dc = get_vlc2(gb, c->dc_vlc[is_chroma].table, 9, 3);
  206. if (dc < 0)
  207. return AVERROR_INVALIDDATA;
  208. if (dc)
  209. dc = get_xbits(gb, dc);
  210. dc = dc * qmat[0] + c->prev_dc[plane];
  211. block[0] = dc;
  212. c->prev_dc[plane] = dc;
  213. pos = 0;
  214. while (pos < 63) {
  215. val = get_vlc2(gb, c->ac_vlc[is_chroma].table, 9, 3);
  216. if (val < 0)
  217. return AVERROR_INVALIDDATA;
  218. pos += val >> 4;
  219. val &= 0xF;
  220. if (pos > 63)
  221. return val ? AVERROR_INVALIDDATA : 0;
  222. if (val) {
  223. int nbits = val;
  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. static inline void yuv2rgb(uint8_t *out, int ridx, int Y, int U, int V)
  232. {
  233. out[ridx] = av_clip_uint8(Y + (91881 * V + 32768 >> 16));
  234. out[1] = av_clip_uint8(Y + (-22554 * U - 46802 * V + 32768 >> 16));
  235. out[2 - ridx] = av_clip_uint8(Y + (116130 * U + 32768 >> 16));
  236. }
  237. static int jpg_decode_data(JPGContext *c, int width, int height,
  238. const uint8_t *src, int src_size,
  239. uint8_t *dst, int dst_stride,
  240. const uint8_t *mask, int mask_stride, int num_mbs,
  241. int swapuv)
  242. {
  243. GetBitContext gb;
  244. int mb_w, mb_h, mb_x, mb_y, i, j;
  245. int bx, by;
  246. int unesc_size;
  247. int ret;
  248. const int ridx = swapuv ? 2 : 0;
  249. if ((ret = av_reallocp(&c->buf,
  250. src_size + AV_INPUT_BUFFER_PADDING_SIZE)) < 0)
  251. return ret;
  252. jpg_unescape(src, src_size, c->buf, &unesc_size);
  253. memset(c->buf + unesc_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
  254. if((ret = init_get_bits8(&gb, c->buf, unesc_size)) < 0)
  255. return ret;
  256. width = FFALIGN(width, 16);
  257. mb_w = width >> 4;
  258. mb_h = (height + 15) >> 4;
  259. if (!num_mbs)
  260. num_mbs = mb_w * mb_h * 4;
  261. for (i = 0; i < 3; i++)
  262. c->prev_dc[i] = 1024;
  263. bx =
  264. by = 0;
  265. c->bdsp.clear_blocks(c->block[0]);
  266. for (mb_y = 0; mb_y < mb_h; mb_y++) {
  267. for (mb_x = 0; mb_x < mb_w; mb_x++) {
  268. if (mask && !mask[mb_x * 2] && !mask[mb_x * 2 + 1] &&
  269. !mask[mb_x * 2 + mask_stride] &&
  270. !mask[mb_x * 2 + 1 + mask_stride]) {
  271. bx += 16;
  272. continue;
  273. }
  274. for (j = 0; j < 2; j++) {
  275. for (i = 0; i < 2; i++) {
  276. if (mask && !mask[mb_x * 2 + i + j * mask_stride])
  277. continue;
  278. num_mbs--;
  279. if ((ret = jpg_decode_block(c, &gb, 0,
  280. c->block[i + j * 2])) != 0)
  281. return ret;
  282. c->idsp.idct(c->block[i + j * 2]);
  283. }
  284. }
  285. for (i = 1; i < 3; i++) {
  286. if ((ret = jpg_decode_block(c, &gb, i, c->block[i + 3])) != 0)
  287. return ret;
  288. c->idsp.idct(c->block[i + 3]);
  289. }
  290. for (j = 0; j < 16; j++) {
  291. uint8_t *out = dst + bx * 3 + (by + j) * dst_stride;
  292. for (i = 0; i < 16; i++) {
  293. int Y, U, V;
  294. Y = c->block[(j >> 3) * 2 + (i >> 3)][(i & 7) + (j & 7) * 8];
  295. U = c->block[4][(i >> 1) + (j >> 1) * 8] - 128;
  296. V = c->block[5][(i >> 1) + (j >> 1) * 8] - 128;
  297. yuv2rgb(out + i * 3, ridx, Y, U, V);
  298. }
  299. }
  300. if (!num_mbs)
  301. return 0;
  302. bx += 16;
  303. }
  304. bx = 0;
  305. by += 16;
  306. if (mask)
  307. mask += mask_stride * 2;
  308. }
  309. return 0;
  310. }
  311. #define LOAD_NEIGHBOURS(x) \
  312. W = curr_row[(x) - 1]; \
  313. N = above_row[(x)]; \
  314. WW = curr_row[(x) - 2]; \
  315. NW = above_row[(x) - 1]; \
  316. NE = above_row[(x) + 1]; \
  317. NN = above2_row[(x)]; \
  318. NNW = above2_row[(x) - 1]; \
  319. NWW = above_row[(x) - 2]; \
  320. NNE = above2_row[(x) + 1]
  321. #define UPDATE_NEIGHBOURS(x) \
  322. NNW = NN; \
  323. NN = NNE; \
  324. NWW = NW; \
  325. NW = N; \
  326. N = NE; \
  327. NE = above_row[(x) + 1]; \
  328. NNE = above2_row[(x) + 1]
  329. #define R_shift 16
  330. #define G_shift 8
  331. #define B_shift 0
  332. /* improved djb2 hash from http://www.cse.yorku.ca/~oz/hash.html */
  333. static int djb2_hash(uint32_t key)
  334. {
  335. uint32_t h = 5381;
  336. h = (h * 33) ^ ((key >> 24) & 0xFF); // xxx: probably not needed at all
  337. h = (h * 33) ^ ((key >> 16) & 0xFF);
  338. h = (h * 33) ^ ((key >> 8) & 0xFF);
  339. h = (h * 33) ^ (key & 0xFF);
  340. return h & (EPIC_HASH_SIZE - 1);
  341. }
  342. static void epic_hash_init(ePICPixHash *hash)
  343. {
  344. memset(hash, 0, sizeof(*hash));
  345. }
  346. static ePICPixHashElem *epic_hash_find(const ePICPixHash *hash, uint32_t key)
  347. {
  348. int i, idx = djb2_hash(key);
  349. ePICPixHashElem *bucket = hash->bucket[idx];
  350. for (i = 0; i < hash->bucket_fill[idx]; i++)
  351. if (bucket[i].pix_id == key)
  352. return &bucket[i];
  353. return NULL;
  354. }
  355. static ePICPixHashElem *epic_hash_add(ePICPixHash *hash, uint32_t key)
  356. {
  357. ePICPixHashElem *bucket, *ret;
  358. int idx = djb2_hash(key);
  359. if (hash->bucket_size[idx] > INT_MAX / sizeof(**hash->bucket))
  360. return NULL;
  361. if (!(hash->bucket_fill[idx] < hash->bucket_size[idx])) {
  362. int new_size = hash->bucket_size[idx] + 16;
  363. bucket = av_realloc(hash->bucket[idx], new_size * sizeof(*bucket));
  364. if (!bucket)
  365. return NULL;
  366. hash->bucket[idx] = bucket;
  367. hash->bucket_size[idx] = new_size;
  368. }
  369. ret = &hash->bucket[idx][hash->bucket_fill[idx]++];
  370. memset(ret, 0, sizeof(*ret));
  371. ret->pix_id = key;
  372. return ret;
  373. }
  374. static int epic_add_pixel_to_cache(ePICPixHash *hash, uint32_t key, uint32_t pix)
  375. {
  376. ePICPixListElem *new_elem;
  377. ePICPixHashElem *hash_elem = epic_hash_find(hash, key);
  378. if (!hash_elem) {
  379. if (!(hash_elem = epic_hash_add(hash, key)))
  380. return AVERROR(ENOMEM);
  381. }
  382. new_elem = av_mallocz(sizeof(*new_elem));
  383. if (!new_elem)
  384. return AVERROR(ENOMEM);
  385. new_elem->pixel = pix;
  386. new_elem->next = hash_elem->list;
  387. hash_elem->list = new_elem;
  388. return 0;
  389. }
  390. static inline int epic_cache_entries_for_pixel(const ePICPixHash *hash,
  391. uint32_t pix)
  392. {
  393. ePICPixHashElem *hash_elem = epic_hash_find(hash, pix);
  394. if (hash_elem != NULL && hash_elem->list != NULL)
  395. return 1;
  396. return 0;
  397. }
  398. static void epic_free_pixel_cache(ePICPixHash *hash)
  399. {
  400. int i, j;
  401. for (i = 0; i < EPIC_HASH_SIZE; i++) {
  402. for (j = 0; j < hash->bucket_fill[i]; j++) {
  403. ePICPixListElem *list_elem = hash->bucket[i][j].list;
  404. while (list_elem) {
  405. ePICPixListElem *tmp = list_elem->next;
  406. av_free(list_elem);
  407. list_elem = tmp;
  408. }
  409. }
  410. av_freep(&hash->bucket[i]);
  411. hash->bucket_size[i] =
  412. hash->bucket_fill[i] = 0;
  413. }
  414. }
  415. static inline int is_pixel_on_stack(const ePICContext *dc, uint32_t pix)
  416. {
  417. int i;
  418. for (i = 0; i < dc->stack_pos; i++)
  419. if (dc->stack[i] == pix)
  420. break;
  421. return i != dc->stack_pos;
  422. }
  423. #define TOSIGNED(val) (((val) >> 1) ^ -((val) & 1))
  424. static inline int epic_decode_component_pred(ePICContext *dc,
  425. int N, int W, int NW)
  426. {
  427. unsigned delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
  428. return mid_pred(N, N + W - NW, W) - TOSIGNED(delta);
  429. }
  430. static uint32_t epic_decode_pixel_pred(ePICContext *dc, int x, int y,
  431. const uint32_t *curr_row,
  432. const uint32_t *above_row)
  433. {
  434. uint32_t N, W, NW, pred;
  435. unsigned delta;
  436. int GN, GW, GNW, R, G, B;
  437. if (x && y) {
  438. W = curr_row[x - 1];
  439. N = above_row[x];
  440. NW = above_row[x - 1];
  441. GN = (N >> G_shift) & 0xFF;
  442. GW = (W >> G_shift) & 0xFF;
  443. GNW = (NW >> G_shift) & 0xFF;
  444. G = epic_decode_component_pred(dc, GN, GW, GNW);
  445. R = G + epic_decode_component_pred(dc,
  446. ((N >> R_shift) & 0xFF) - GN,
  447. ((W >> R_shift) & 0xFF) - GW,
  448. ((NW >> R_shift) & 0xFF) - GNW);
  449. B = G + epic_decode_component_pred(dc,
  450. ((N >> B_shift) & 0xFF) - GN,
  451. ((W >> B_shift) & 0xFF) - GW,
  452. ((NW >> B_shift) & 0xFF) - GNW);
  453. } else {
  454. if (x)
  455. pred = curr_row[x - 1];
  456. else
  457. pred = above_row[x];
  458. delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
  459. R = ((pred >> R_shift) & 0xFF) - TOSIGNED(delta);
  460. delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
  461. G = ((pred >> G_shift) & 0xFF) - TOSIGNED(delta);
  462. delta = ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung);
  463. B = ((pred >> B_shift) & 0xFF) - TOSIGNED(delta);
  464. }
  465. if (R<0 || G<0 || B<0 || R > 255 || G > 255 || B > 255) {
  466. av_log(NULL, AV_LOG_ERROR, "RGB %d %d %d is out of range\n", R, G, B);
  467. return 0;
  468. }
  469. return (R << R_shift) | (G << G_shift) | (B << B_shift);
  470. }
  471. static int epic_predict_pixel(ePICContext *dc, uint8_t *rung,
  472. uint32_t *pPix, uint32_t pix)
  473. {
  474. if (!ff_els_decode_bit(&dc->els_ctx, rung)) {
  475. *pPix = pix;
  476. return 1;
  477. }
  478. dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = pix;
  479. return 0;
  480. }
  481. static int epic_handle_edges(ePICContext *dc, int x, int y,
  482. const uint32_t *curr_row,
  483. const uint32_t *above_row, uint32_t *pPix)
  484. {
  485. uint32_t pix;
  486. if (!x && !y) { /* special case: top-left pixel */
  487. /* the top-left pixel is coded independently with 3 unsigned numbers */
  488. *pPix = (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << R_shift) |
  489. (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << G_shift) |
  490. (ff_els_decode_unsigned(&dc->els_ctx, &dc->unsigned_rung) << B_shift);
  491. return 1;
  492. }
  493. if (x) { /* predict from W first */
  494. pix = curr_row[x - 1];
  495. if (epic_predict_pixel(dc, &dc->W_flag_rung, pPix, pix))
  496. return 1;
  497. }
  498. if (y) { /* then try to predict from N */
  499. pix = above_row[x];
  500. if (!dc->stack_pos || dc->stack[0] != pix) {
  501. if (epic_predict_pixel(dc, &dc->N_flag_rung, pPix, pix))
  502. return 1;
  503. }
  504. }
  505. return 0;
  506. }
  507. static int epic_decode_run_length(ePICContext *dc, int x, int y, int tile_width,
  508. const uint32_t *curr_row,
  509. const uint32_t *above_row,
  510. const uint32_t *above2_row,
  511. uint32_t *pPix, int *pRun)
  512. {
  513. int idx, got_pixel = 0, WWneW, old_WWneW = 0;
  514. uint32_t W, WW, N, NN, NW, NE, NWW, NNW, NNE;
  515. *pRun = 0;
  516. LOAD_NEIGHBOURS(x);
  517. if (dc->next_run_pos == x) {
  518. /* can't reuse W for the new pixel in this case */
  519. WWneW = 1;
  520. } else {
  521. idx = (WW != W) << 7 |
  522. (NW != W) << 6 |
  523. (N != NE) << 5 |
  524. (NW != N) << 4 |
  525. (NWW != NW) << 3 |
  526. (NNE != NE) << 2 |
  527. (NN != N) << 1 |
  528. (NNW != NW);
  529. WWneW = ff_els_decode_bit(&dc->els_ctx, &dc->W_ctx_rung[idx]);
  530. if (WWneW < 0)
  531. return WWneW;
  532. }
  533. if (WWneW)
  534. dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = W;
  535. else {
  536. *pPix = W;
  537. got_pixel = 1;
  538. }
  539. do {
  540. int NWneW = 1;
  541. if (got_pixel) // pixel value already known (derived from either W or N)
  542. NWneW = *pPix != N;
  543. else { // pixel value is unknown and will be decoded later
  544. NWneW = *pRun ? NWneW : NW != W;
  545. /* TODO: RFC this mess! */
  546. switch (((NW != N) << 2) | (NWneW << 1) | WWneW) {
  547. case 0:
  548. break; // do nothing here
  549. case 3:
  550. case 5:
  551. case 6:
  552. case 7:
  553. if (!is_pixel_on_stack(dc, N)) {
  554. idx = WWneW << 8 |
  555. (*pRun ? old_WWneW : WW != W) << 7 |
  556. NWneW << 6 |
  557. (N != NE) << 5 |
  558. (NW != N) << 4 |
  559. (NWW != NW) << 3 |
  560. (NNE != NE) << 2 |
  561. (NN != N) << 1 |
  562. (NNW != NW);
  563. if (!ff_els_decode_bit(&dc->els_ctx, &dc->N_ctx_rung[idx])) {
  564. NWneW = 0;
  565. *pPix = N;
  566. got_pixel = 1;
  567. break;
  568. }
  569. }
  570. /* fall through */
  571. default:
  572. NWneW = 1;
  573. old_WWneW = WWneW;
  574. if (!is_pixel_on_stack(dc, N))
  575. dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = N;
  576. }
  577. }
  578. (*pRun)++;
  579. if (x + *pRun >= tile_width - 1)
  580. break;
  581. UPDATE_NEIGHBOURS(x + *pRun);
  582. if (!NWneW && NW == N && N == NE) {
  583. int pos, run, rle;
  584. int start_pos = x + *pRun;
  585. /* scan for a run of pix in the line above */
  586. uint32_t pix = above_row[start_pos + 1];
  587. for (pos = start_pos + 2; pos < tile_width; pos++)
  588. if (!(above_row[pos] == pix))
  589. break;
  590. run = pos - start_pos - 1;
  591. idx = av_ceil_log2(run);
  592. if (ff_els_decode_bit(&dc->els_ctx, &dc->prev_row_rung[idx]))
  593. *pRun += run;
  594. else {
  595. int flag;
  596. /* run-length is coded as plain binary number of idx - 1 bits */
  597. for (pos = idx - 1, rle = 0, flag = 0; pos >= 0; pos--) {
  598. if ((1 << pos) + rle < run &&
  599. ff_els_decode_bit(&dc->els_ctx,
  600. flag ? &dc->runlen_one
  601. : &dc->runlen_zeroes[pos])) {
  602. flag = 1;
  603. rle |= 1 << pos;
  604. }
  605. }
  606. *pRun += rle;
  607. break; // return immediately
  608. }
  609. if (x + *pRun >= tile_width - 1)
  610. break;
  611. LOAD_NEIGHBOURS(x + *pRun);
  612. WWneW = 0;
  613. NWneW = 0;
  614. }
  615. idx = WWneW << 7 |
  616. NWneW << 6 |
  617. (N != NE) << 5 |
  618. (NW != N) << 4 |
  619. (NWW != NW) << 3 |
  620. (NNE != NE) << 2 |
  621. (NN != N) << 1 |
  622. (NNW != NW);
  623. WWneW = ff_els_decode_bit(&dc->els_ctx, &dc->W_ctx_rung[idx]);
  624. } while (!WWneW);
  625. dc->next_run_pos = x + *pRun;
  626. return got_pixel;
  627. }
  628. static int epic_predict_pixel2(ePICContext *dc, uint8_t *rung,
  629. uint32_t *pPix, uint32_t pix)
  630. {
  631. if (ff_els_decode_bit(&dc->els_ctx, rung)) {
  632. *pPix = pix;
  633. return 1;
  634. }
  635. dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = pix;
  636. return 0;
  637. }
  638. static int epic_predict_from_NW_NE(ePICContext *dc, int x, int y, int run,
  639. int tile_width, const uint32_t *curr_row,
  640. const uint32_t *above_row, uint32_t *pPix)
  641. {
  642. int pos;
  643. /* try to reuse the NW pixel first */
  644. if (x && y) {
  645. uint32_t NW = above_row[x - 1];
  646. if (NW != curr_row[x - 1] && NW != above_row[x] && !is_pixel_on_stack(dc, NW)) {
  647. if (epic_predict_pixel2(dc, &dc->nw_pred_rung[NW & 0xFF], pPix, NW))
  648. return 1;
  649. }
  650. }
  651. /* try to reuse the NE[x + run, y] pixel */
  652. pos = x + run - 1;
  653. if (pos < tile_width - 1 && y) {
  654. uint32_t NE = above_row[pos + 1];
  655. if (NE != above_row[pos] && !is_pixel_on_stack(dc, NE)) {
  656. if (epic_predict_pixel2(dc, &dc->ne_pred_rung[NE & 0xFF], pPix, NE))
  657. return 1;
  658. }
  659. }
  660. return 0;
  661. }
  662. static int epic_decode_from_cache(ePICContext *dc, uint32_t W, uint32_t *pPix)
  663. {
  664. ePICPixListElem *list, *prev = NULL;
  665. ePICPixHashElem *hash_elem = epic_hash_find(&dc->hash, W);
  666. if (!hash_elem || !hash_elem->list)
  667. return 0;
  668. list = hash_elem->list;
  669. while (list) {
  670. if (!is_pixel_on_stack(dc, list->pixel)) {
  671. if (ff_els_decode_bit(&dc->els_ctx, &list->rung)) {
  672. *pPix = list->pixel;
  673. if (list != hash_elem->list) {
  674. prev->next = list->next;
  675. list->next = hash_elem->list;
  676. hash_elem->list = list;
  677. }
  678. return 1;
  679. }
  680. dc->stack[dc->stack_pos++ & EPIC_PIX_STACK_MAX] = list->pixel;
  681. }
  682. prev = list;
  683. list = list->next;
  684. }
  685. return 0;
  686. }
  687. static int epic_decode_tile(ePICContext *dc, uint8_t *out, int tile_height,
  688. int tile_width, int stride)
  689. {
  690. int x, y;
  691. uint32_t pix;
  692. uint32_t *curr_row = NULL, *above_row = NULL, *above2_row;
  693. for (y = 0; y < tile_height; y++, out += stride) {
  694. above2_row = above_row;
  695. above_row = curr_row;
  696. curr_row = (uint32_t *) out;
  697. for (x = 0, dc->next_run_pos = 0; x < tile_width;) {
  698. if (dc->els_ctx.err)
  699. return AVERROR_INVALIDDATA; // bail out in the case of ELS overflow
  700. pix = curr_row[x - 1]; // get W pixel
  701. if (y >= 1 && x >= 2 &&
  702. pix != curr_row[x - 2] && pix != above_row[x - 1] &&
  703. pix != above_row[x - 2] && pix != above_row[x] &&
  704. !epic_cache_entries_for_pixel(&dc->hash, pix)) {
  705. curr_row[x] = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);
  706. x++;
  707. } else {
  708. int got_pixel, run;
  709. dc->stack_pos = 0; // empty stack
  710. if (y < 2 || x < 2 || x == tile_width - 1) {
  711. run = 1;
  712. got_pixel = epic_handle_edges(dc, x, y, curr_row, above_row, &pix);
  713. } else {
  714. got_pixel = epic_decode_run_length(dc, x, y, tile_width,
  715. curr_row, above_row,
  716. above2_row, &pix, &run);
  717. if (got_pixel < 0)
  718. return got_pixel;
  719. }
  720. if (!got_pixel && !epic_predict_from_NW_NE(dc, x, y, run,
  721. tile_width, curr_row,
  722. above_row, &pix)) {
  723. uint32_t ref_pix = curr_row[x - 1];
  724. if (!x || !epic_decode_from_cache(dc, ref_pix, &pix)) {
  725. pix = epic_decode_pixel_pred(dc, x, y, curr_row, above_row);
  726. if (x) {
  727. int ret = epic_add_pixel_to_cache(&dc->hash,
  728. ref_pix,
  729. pix);
  730. if (ret)
  731. return ret;
  732. }
  733. }
  734. }
  735. for (; run > 0; x++, run--)
  736. curr_row[x] = pix;
  737. }
  738. }
  739. }
  740. return 0;
  741. }
  742. static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y,
  743. const uint8_t *src, size_t src_size,
  744. AVCodecContext *avctx)
  745. {
  746. uint8_t prefix, mask = 0x80;
  747. int extrabytes, tile_width, tile_height, awidth, aheight;
  748. size_t els_dsize;
  749. uint8_t *dst;
  750. if (!src_size)
  751. return 0;
  752. /* get data size of the ELS partition as unsigned variable-length integer */
  753. prefix = *src++;
  754. src_size--;
  755. for (extrabytes = 0; (prefix & mask) && (extrabytes < 7); extrabytes++)
  756. mask >>= 1;
  757. if (extrabytes > 3 || src_size < extrabytes) {
  758. av_log(avctx, AV_LOG_ERROR, "ePIC: invalid data size VLI\n");
  759. return AVERROR_INVALIDDATA;
  760. }
  761. els_dsize = prefix & ((0x80 >> extrabytes) - 1); // mask out the length prefix
  762. while (extrabytes-- > 0) {
  763. els_dsize = (els_dsize << 8) | *src++;
  764. src_size--;
  765. }
  766. if (src_size < els_dsize) {
  767. av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %zu, got %zu\n",
  768. els_dsize, src_size);
  769. return AVERROR_INVALIDDATA;
  770. }
  771. tile_width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
  772. tile_height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
  773. awidth = FFALIGN(tile_width, 16);
  774. aheight = FFALIGN(tile_height, 16);
  775. if (els_dsize) {
  776. int ret, i, j, k;
  777. uint8_t tr_r, tr_g, tr_b, *buf;
  778. uint32_t *in;
  779. /* ELS decoder initializations */
  780. memset(&c->ec, 0, sizeof(c->ec));
  781. ff_els_decoder_init(&c->ec.els_ctx, src, els_dsize);
  782. epic_hash_init(&c->ec.hash);
  783. /* decode transparent pixel value */
  784. tr_r = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
  785. tr_g = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
  786. tr_b = ff_els_decode_unsigned(&c->ec.els_ctx, &c->ec.unsigned_rung);
  787. if (c->ec.els_ctx.err != 0) {
  788. av_log(avctx, AV_LOG_ERROR,
  789. "ePIC: couldn't decode transparency pixel!\n");
  790. ff_els_decoder_uninit(&c->ec.unsigned_rung);
  791. return AVERROR_INVALIDDATA;
  792. }
  793. ret = epic_decode_tile(&c->ec, c->epic_buf, tile_height, tile_width,
  794. c->epic_buf_stride);
  795. epic_free_pixel_cache(&c->ec.hash);
  796. ff_els_decoder_uninit(&c->ec.unsigned_rung);
  797. if (ret) {
  798. av_log(avctx, AV_LOG_ERROR,
  799. "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
  800. avctx->frame_number, tile_x, tile_y);
  801. return AVERROR_INVALIDDATA;
  802. }
  803. buf = c->epic_buf;
  804. dst = c->framebuf + tile_x * c->tile_width * 3 +
  805. tile_y * c->tile_height * c->framebuf_stride;
  806. for (j = 0; j < tile_height; j++) {
  807. uint8_t *out = dst;
  808. in = (uint32_t *) buf;
  809. for (i = 0; i < tile_width; i++) {
  810. out[0] = (in[i] >> R_shift) & 0xFF;
  811. out[1] = (in[i] >> G_shift) & 0xFF;
  812. out[2] = (in[i] >> B_shift) & 0xFF;
  813. out += 3;
  814. }
  815. buf += c->epic_buf_stride;
  816. dst += c->framebuf_stride;
  817. }
  818. if (src_size > els_dsize) {
  819. uint8_t *jpg;
  820. uint32_t tr;
  821. int bstride = FFALIGN(tile_width, 16) >> 3;
  822. int nblocks = 0;
  823. int estride = c->epic_buf_stride >> 2;
  824. src += els_dsize;
  825. src_size -= els_dsize;
  826. in = (uint32_t *) c->epic_buf;
  827. tr = (tr_r << R_shift) | (tr_g << G_shift) | (tr_b << B_shift);
  828. memset(c->kempf_flags, 0,
  829. (aheight >> 3) * bstride * sizeof(*c->kempf_flags));
  830. for (j = 0; j < tile_height; j += 8) {
  831. for (i = 0; i < tile_width; i += 8) {
  832. c->kempf_flags[(i >> 3) + (j >> 3) * bstride] = 0;
  833. for (k = 0; k < 8 * 8; k++) {
  834. if (in[i + (k & 7) + (k >> 3) * estride] == tr) {
  835. c->kempf_flags[(i >> 3) + (j >> 3) * bstride] = 1;
  836. nblocks++;
  837. break;
  838. }
  839. }
  840. }
  841. in += 8 * estride;
  842. }
  843. memset(c->jpeg_tile, 0, c->tile_stride * aheight);
  844. jpg_decode_data(&c->jc, awidth, aheight, src, src_size,
  845. c->jpeg_tile, c->tile_stride,
  846. c->kempf_flags, bstride, nblocks, c->swapuv);
  847. in = (uint32_t *) c->epic_buf;
  848. dst = c->framebuf + tile_x * c->tile_width * 3 +
  849. tile_y * c->tile_height * c->framebuf_stride;
  850. jpg = c->jpeg_tile;
  851. for (j = 0; j < tile_height; j++) {
  852. for (i = 0; i < tile_width; i++)
  853. if (in[i] == tr)
  854. memcpy(dst + i * 3, jpg + i * 3, 3);
  855. in += c->epic_buf_stride >> 2;
  856. dst += c->framebuf_stride;
  857. jpg += c->tile_stride;
  858. }
  859. }
  860. } else {
  861. dst = c->framebuf + tile_x * c->tile_width * 3 +
  862. tile_y * c->tile_height * c->framebuf_stride;
  863. return jpg_decode_data(&c->jc, tile_width, tile_height, src, src_size,
  864. dst, c->framebuf_stride, NULL, 0, 0, c->swapuv);
  865. }
  866. return 0;
  867. }
  868. static int kempf_restore_buf(const uint8_t *src, int len,
  869. uint8_t *dst, int stride,
  870. const uint8_t *jpeg_tile, int tile_stride,
  871. int width, int height,
  872. const uint8_t *pal, int npal, int tidx)
  873. {
  874. GetBitContext gb;
  875. int i, j, nb, col;
  876. int ret;
  877. int align_width = FFALIGN(width, 16);
  878. if ((ret = init_get_bits8(&gb, src, len)) < 0)
  879. return ret;
  880. if (npal <= 2) nb = 1;
  881. else if (npal <= 4) nb = 2;
  882. else if (npal <= 16) nb = 4;
  883. else nb = 8;
  884. for (j = 0; j < height; j++, dst += stride, jpeg_tile += tile_stride) {
  885. if (get_bits(&gb, 8))
  886. continue;
  887. for (i = 0; i < width; i++) {
  888. col = get_bits(&gb, nb);
  889. if (col != tidx)
  890. memcpy(dst + i * 3, pal + col * 3, 3);
  891. else
  892. memcpy(dst + i * 3, jpeg_tile + i * 3, 3);
  893. }
  894. skip_bits_long(&gb, nb * (align_width - width));
  895. }
  896. return 0;
  897. }
  898. static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y,
  899. const uint8_t *src, int src_size)
  900. {
  901. int width, height;
  902. int hdr, zsize, npal, tidx = -1, ret;
  903. int i, j;
  904. const uint8_t *src_end = src + src_size;
  905. uint8_t pal[768], transp[3];
  906. uLongf dlen = (c->tile_width + 1) * c->tile_height;
  907. int sub_type;
  908. int nblocks, cblocks, bstride;
  909. int bits, bitbuf, coded;
  910. uint8_t *dst = c->framebuf + tile_x * c->tile_width * 3 +
  911. tile_y * c->tile_height * c->framebuf_stride;
  912. if (src_size < 2)
  913. return AVERROR_INVALIDDATA;
  914. width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
  915. height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
  916. hdr = *src++;
  917. sub_type = hdr >> 5;
  918. if (sub_type == 0) {
  919. int j;
  920. memcpy(transp, src, 3);
  921. src += 3;
  922. for (j = 0; j < height; j++, dst += c->framebuf_stride)
  923. for (i = 0; i < width; i++)
  924. memcpy(dst + i * 3, transp, 3);
  925. return 0;
  926. } else if (sub_type == 1) {
  927. return jpg_decode_data(&c->jc, width, height, src, src_end - src,
  928. dst, c->framebuf_stride, NULL, 0, 0, 0);
  929. }
  930. if (sub_type != 2) {
  931. memcpy(transp, src, 3);
  932. src += 3;
  933. }
  934. npal = *src++ + 1;
  935. if (src_end - src < npal * 3)
  936. return AVERROR_INVALIDDATA;
  937. memcpy(pal, src, npal * 3);
  938. src += npal * 3;
  939. if (sub_type != 2) {
  940. for (i = 0; i < npal; i++) {
  941. if (!memcmp(pal + i * 3, transp, 3)) {
  942. tidx = i;
  943. break;
  944. }
  945. }
  946. }
  947. if (src_end - src < 2)
  948. return 0;
  949. zsize = (src[0] << 8) | src[1];
  950. src += 2;
  951. if (src_end - src < zsize + (sub_type != 2))
  952. return AVERROR_INVALIDDATA;
  953. ret = uncompress(c->kempf_buf, &dlen, src, zsize);
  954. if (ret)
  955. return AVERROR_INVALIDDATA;
  956. src += zsize;
  957. if (sub_type == 2) {
  958. kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
  959. NULL, 0, width, height, pal, npal, tidx);
  960. return 0;
  961. }
  962. nblocks = *src++ + 1;
  963. cblocks = 0;
  964. bstride = FFALIGN(width, 16) >> 3;
  965. // blocks are coded LSB and we need normal bitreader for JPEG data
  966. bits = 0;
  967. for (i = 0; i < (FFALIGN(height, 16) >> 4); i++) {
  968. for (j = 0; j < (FFALIGN(width, 16) >> 4); j++) {
  969. if (!bits) {
  970. if (src >= src_end)
  971. return AVERROR_INVALIDDATA;
  972. bitbuf = *src++;
  973. bits = 8;
  974. }
  975. coded = bitbuf & 1;
  976. bits--;
  977. bitbuf >>= 1;
  978. cblocks += coded;
  979. if (cblocks > nblocks)
  980. return AVERROR_INVALIDDATA;
  981. c->kempf_flags[j * 2 + i * 2 * bstride] =
  982. c->kempf_flags[j * 2 + 1 + i * 2 * bstride] =
  983. c->kempf_flags[j * 2 + (i * 2 + 1) * bstride] =
  984. c->kempf_flags[j * 2 + 1 + (i * 2 + 1) * bstride] = coded;
  985. }
  986. }
  987. memset(c->jpeg_tile, 0, c->tile_stride * height);
  988. jpg_decode_data(&c->jc, width, height, src, src_end - src,
  989. c->jpeg_tile, c->tile_stride,
  990. c->kempf_flags, bstride, nblocks * 4, 0);
  991. kempf_restore_buf(c->kempf_buf, dlen, dst, c->framebuf_stride,
  992. c->jpeg_tile, c->tile_stride,
  993. width, height, pal, npal, tidx);
  994. return 0;
  995. }
  996. static int g2m_init_buffers(G2MContext *c)
  997. {
  998. int aligned_height;
  999. if (!c->framebuf || c->old_width < c->width || c->old_height < c->height) {
  1000. c->framebuf_stride = FFALIGN(c->width + 15, 16) * 3;
  1001. aligned_height = c->height + 15;
  1002. av_free(c->framebuf);
  1003. c->framebuf = av_mallocz_array(c->framebuf_stride, aligned_height);
  1004. if (!c->framebuf)
  1005. return AVERROR(ENOMEM);
  1006. }
  1007. if (!c->synth_tile || !c->jpeg_tile ||
  1008. (c->compression == 2 && !c->epic_buf_base) ||
  1009. c->old_tile_w < c->tile_width ||
  1010. c->old_tile_h < c->tile_height) {
  1011. c->tile_stride = FFALIGN(c->tile_width, 16) * 3;
  1012. c->epic_buf_stride = FFALIGN(c->tile_width * 4, 16);
  1013. aligned_height = FFALIGN(c->tile_height, 16);
  1014. av_freep(&c->synth_tile);
  1015. av_freep(&c->jpeg_tile);
  1016. av_freep(&c->kempf_buf);
  1017. av_freep(&c->kempf_flags);
  1018. av_freep(&c->epic_buf_base);
  1019. c->epic_buf = NULL;
  1020. c->synth_tile = av_mallocz(c->tile_stride * aligned_height);
  1021. c->jpeg_tile = av_mallocz(c->tile_stride * aligned_height);
  1022. c->kempf_buf = av_mallocz((c->tile_width + 1) * aligned_height +
  1023. AV_INPUT_BUFFER_PADDING_SIZE);
  1024. c->kempf_flags = av_mallocz(c->tile_width * aligned_height);
  1025. if (!c->synth_tile || !c->jpeg_tile ||
  1026. !c->kempf_buf || !c->kempf_flags)
  1027. return AVERROR(ENOMEM);
  1028. if (c->compression == 2) {
  1029. c->epic_buf_base = av_mallocz(c->epic_buf_stride * aligned_height + 4);
  1030. if (!c->epic_buf_base)
  1031. return AVERROR(ENOMEM);
  1032. c->epic_buf = c->epic_buf_base + 4;
  1033. }
  1034. }
  1035. return 0;
  1036. }
  1037. static int g2m_load_cursor(AVCodecContext *avctx, G2MContext *c,
  1038. GetByteContext *gb)
  1039. {
  1040. int i, j, k;
  1041. uint8_t *dst;
  1042. uint32_t bits;
  1043. uint32_t cur_size, cursor_w, cursor_h, cursor_stride;
  1044. uint32_t cursor_hot_x, cursor_hot_y;
  1045. int cursor_fmt, err;
  1046. cur_size = bytestream2_get_be32(gb);
  1047. cursor_w = bytestream2_get_byte(gb);
  1048. cursor_h = bytestream2_get_byte(gb);
  1049. cursor_hot_x = bytestream2_get_byte(gb);
  1050. cursor_hot_y = bytestream2_get_byte(gb);
  1051. cursor_fmt = bytestream2_get_byte(gb);
  1052. cursor_stride = FFALIGN(cursor_w, cursor_fmt==1 ? 32 : 1) * 4;
  1053. if (cursor_w < 1 || cursor_w > 256 ||
  1054. cursor_h < 1 || cursor_h > 256) {
  1055. av_log(avctx, AV_LOG_ERROR, "Invalid cursor dimensions %"PRIu32"x%"PRIu32"\n",
  1056. cursor_w, cursor_h);
  1057. return AVERROR_INVALIDDATA;
  1058. }
  1059. if (cursor_hot_x > cursor_w || cursor_hot_y > cursor_h) {
  1060. av_log(avctx, AV_LOG_WARNING, "Invalid hotspot position %"PRIu32",%"PRIu32"\n",
  1061. cursor_hot_x, cursor_hot_y);
  1062. cursor_hot_x = FFMIN(cursor_hot_x, cursor_w - 1);
  1063. cursor_hot_y = FFMIN(cursor_hot_y, cursor_h - 1);
  1064. }
  1065. if (cur_size - 9 > bytestream2_get_bytes_left(gb) ||
  1066. c->cursor_w * c->cursor_h / 4 > cur_size) {
  1067. av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"/%u\n",
  1068. cur_size, bytestream2_get_bytes_left(gb));
  1069. return AVERROR_INVALIDDATA;
  1070. }
  1071. if (cursor_fmt != 1 && cursor_fmt != 32) {
  1072. avpriv_report_missing_feature(avctx, "Cursor format %d",
  1073. cursor_fmt);
  1074. return AVERROR_PATCHWELCOME;
  1075. }
  1076. if ((err = av_reallocp(&c->cursor, cursor_stride * cursor_h)) < 0) {
  1077. av_log(avctx, AV_LOG_ERROR, "Cannot allocate cursor buffer\n");
  1078. return err;
  1079. }
  1080. c->cursor_w = cursor_w;
  1081. c->cursor_h = cursor_h;
  1082. c->cursor_hot_x = cursor_hot_x;
  1083. c->cursor_hot_y = cursor_hot_y;
  1084. c->cursor_fmt = cursor_fmt;
  1085. c->cursor_stride = cursor_stride;
  1086. dst = c->cursor;
  1087. switch (c->cursor_fmt) {
  1088. case 1: // old monochrome
  1089. for (j = 0; j < c->cursor_h; j++) {
  1090. for (i = 0; i < c->cursor_w; i += 32) {
  1091. bits = bytestream2_get_be32(gb);
  1092. for (k = 0; k < 32; k++) {
  1093. dst[0] = !!(bits & 0x80000000);
  1094. dst += 4;
  1095. bits <<= 1;
  1096. }
  1097. }
  1098. }
  1099. dst = c->cursor;
  1100. for (j = 0; j < c->cursor_h; j++) {
  1101. for (i = 0; i < c->cursor_w; i += 32) {
  1102. bits = bytestream2_get_be32(gb);
  1103. for (k = 0; k < 32; k++) {
  1104. int mask_bit = !!(bits & 0x80000000);
  1105. switch (dst[0] * 2 + mask_bit) {
  1106. case 0:
  1107. dst[0] = 0xFF;
  1108. dst[1] = 0x00;
  1109. dst[2] = 0x00;
  1110. dst[3] = 0x00;
  1111. break;
  1112. case 1:
  1113. dst[0] = 0xFF;
  1114. dst[1] = 0xFF;
  1115. dst[2] = 0xFF;
  1116. dst[3] = 0xFF;
  1117. break;
  1118. default:
  1119. dst[0] = 0x00;
  1120. dst[1] = 0x00;
  1121. dst[2] = 0x00;
  1122. dst[3] = 0x00;
  1123. }
  1124. dst += 4;
  1125. bits <<= 1;
  1126. }
  1127. }
  1128. }
  1129. break;
  1130. case 32: // full colour
  1131. /* skip monochrome version of the cursor and decode RGBA instead */
  1132. bytestream2_skip(gb, c->cursor_h * (FFALIGN(c->cursor_w, 32) >> 3));
  1133. for (j = 0; j < c->cursor_h; j++) {
  1134. for (i = 0; i < c->cursor_w; i++) {
  1135. int val = bytestream2_get_be32(gb);
  1136. *dst++ = val >> 0;
  1137. *dst++ = val >> 8;
  1138. *dst++ = val >> 16;
  1139. *dst++ = val >> 24;
  1140. }
  1141. }
  1142. break;
  1143. default:
  1144. return AVERROR_PATCHWELCOME;
  1145. }
  1146. return 0;
  1147. }
  1148. #define APPLY_ALPHA(src, new, alpha) \
  1149. src = (src * (256 - alpha) + new * alpha) >> 8
  1150. static void g2m_paint_cursor(G2MContext *c, uint8_t *dst, int stride)
  1151. {
  1152. int i, j;
  1153. int x, y, w, h;
  1154. const uint8_t *cursor;
  1155. if (!c->cursor)
  1156. return;
  1157. x = c->cursor_x - c->cursor_hot_x;
  1158. y = c->cursor_y - c->cursor_hot_y;
  1159. cursor = c->cursor;
  1160. w = c->cursor_w;
  1161. h = c->cursor_h;
  1162. if (x + w > c->width)
  1163. w = c->width - x;
  1164. if (y + h > c->height)
  1165. h = c->height - y;
  1166. if (x < 0) {
  1167. w += x;
  1168. cursor += -x * 4;
  1169. } else {
  1170. dst += x * 3;
  1171. }
  1172. if (y < 0)
  1173. h += y;
  1174. if (w < 0 || h < 0)
  1175. return;
  1176. if (y < 0) {
  1177. cursor += -y * c->cursor_stride;
  1178. } else {
  1179. dst += y * stride;
  1180. }
  1181. for (j = 0; j < h; j++) {
  1182. for (i = 0; i < w; i++) {
  1183. uint8_t alpha = cursor[i * 4];
  1184. APPLY_ALPHA(dst[i * 3 + 0], cursor[i * 4 + 1], alpha);
  1185. APPLY_ALPHA(dst[i * 3 + 1], cursor[i * 4 + 2], alpha);
  1186. APPLY_ALPHA(dst[i * 3 + 2], cursor[i * 4 + 3], alpha);
  1187. }
  1188. dst += stride;
  1189. cursor += c->cursor_stride;
  1190. }
  1191. }
  1192. static int g2m_decode_frame(AVCodecContext *avctx, void *data,
  1193. int *got_picture_ptr, AVPacket *avpkt)
  1194. {
  1195. const uint8_t *buf = avpkt->data;
  1196. int buf_size = avpkt->size;
  1197. G2MContext *c = avctx->priv_data;
  1198. AVFrame *pic = data;
  1199. GetByteContext bc, tbc;
  1200. int magic;
  1201. int got_header = 0;
  1202. uint32_t chunk_size, r_mask, g_mask, b_mask;
  1203. int chunk_type, chunk_start;
  1204. int i;
  1205. int ret;
  1206. if (buf_size < 12) {
  1207. av_log(avctx, AV_LOG_ERROR,
  1208. "Frame should have at least 12 bytes, got %d instead\n",
  1209. buf_size);
  1210. return AVERROR_INVALIDDATA;
  1211. }
  1212. bytestream2_init(&bc, buf, buf_size);
  1213. magic = bytestream2_get_be32(&bc);
  1214. if ((magic & ~0xF) != MKBETAG('G', '2', 'M', '0') ||
  1215. (magic & 0xF) < 2 || (magic & 0xF) > 5) {
  1216. av_log(avctx, AV_LOG_ERROR, "Wrong magic %08X\n", magic);
  1217. return AVERROR_INVALIDDATA;
  1218. }
  1219. c->swapuv = magic == MKBETAG('G', '2', 'M', '2');
  1220. while (bytestream2_get_bytes_left(&bc) > 5) {
  1221. chunk_size = bytestream2_get_le32(&bc) - 1;
  1222. chunk_type = bytestream2_get_byte(&bc);
  1223. chunk_start = bytestream2_tell(&bc);
  1224. if (chunk_size > bytestream2_get_bytes_left(&bc)) {
  1225. av_log(avctx, AV_LOG_ERROR, "Invalid chunk size %"PRIu32" type %02X\n",
  1226. chunk_size, chunk_type);
  1227. break;
  1228. }
  1229. switch (chunk_type) {
  1230. case DISPLAY_INFO:
  1231. got_header =
  1232. c->got_header = 0;
  1233. if (chunk_size < 21) {
  1234. av_log(avctx, AV_LOG_ERROR, "Invalid display info size %"PRIu32"\n",
  1235. chunk_size);
  1236. break;
  1237. }
  1238. c->width = bytestream2_get_be32(&bc);
  1239. c->height = bytestream2_get_be32(&bc);
  1240. if (c->width < 16 || c->width > c->orig_width ||
  1241. c->height < 16 || c->height > c->orig_height) {
  1242. av_log(avctx, AV_LOG_ERROR,
  1243. "Invalid frame dimensions %dx%d\n",
  1244. c->width, c->height);
  1245. ret = AVERROR_INVALIDDATA;
  1246. goto header_fail;
  1247. }
  1248. if (c->width != avctx->width || c->height != avctx->height) {
  1249. ret = ff_set_dimensions(avctx, c->width, c->height);
  1250. if (ret < 0)
  1251. goto header_fail;
  1252. }
  1253. c->compression = bytestream2_get_be32(&bc);
  1254. if (c->compression != 2 && c->compression != 3) {
  1255. av_log(avctx, AV_LOG_ERROR,
  1256. "Unknown compression method %d\n",
  1257. c->compression);
  1258. ret = AVERROR_PATCHWELCOME;
  1259. goto header_fail;
  1260. }
  1261. c->tile_width = bytestream2_get_be32(&bc);
  1262. c->tile_height = bytestream2_get_be32(&bc);
  1263. if (c->tile_width <= 0 || c->tile_height <= 0 ||
  1264. ((c->tile_width | c->tile_height) & 0xF) ||
  1265. c->tile_width * (uint64_t)c->tile_height >= INT_MAX / 4
  1266. ) {
  1267. av_log(avctx, AV_LOG_ERROR,
  1268. "Invalid tile dimensions %dx%d\n",
  1269. c->tile_width, c->tile_height);
  1270. ret = AVERROR_INVALIDDATA;
  1271. goto header_fail;
  1272. }
  1273. c->tiles_x = (c->width + c->tile_width - 1) / c->tile_width;
  1274. c->tiles_y = (c->height + c->tile_height - 1) / c->tile_height;
  1275. c->bpp = bytestream2_get_byte(&bc);
  1276. if (c->bpp == 32) {
  1277. if (bytestream2_get_bytes_left(&bc) < 16 ||
  1278. (chunk_size - 21) < 16) {
  1279. av_log(avctx, AV_LOG_ERROR,
  1280. "Display info: missing bitmasks!\n");
  1281. ret = AVERROR_INVALIDDATA;
  1282. goto header_fail;
  1283. }
  1284. r_mask = bytestream2_get_be32(&bc);
  1285. g_mask = bytestream2_get_be32(&bc);
  1286. b_mask = bytestream2_get_be32(&bc);
  1287. if (r_mask != 0xFF0000 || g_mask != 0xFF00 || b_mask != 0xFF) {
  1288. av_log(avctx, AV_LOG_ERROR,
  1289. "Invalid or unsupported bitmasks: R=%"PRIX32", G=%"PRIX32", B=%"PRIX32"\n",
  1290. r_mask, g_mask, b_mask);
  1291. ret = AVERROR_PATCHWELCOME;
  1292. goto header_fail;
  1293. }
  1294. } else {
  1295. avpriv_request_sample(avctx, "bpp=%d", c->bpp);
  1296. ret = AVERROR_PATCHWELCOME;
  1297. goto header_fail;
  1298. }
  1299. if (g2m_init_buffers(c)) {
  1300. ret = AVERROR(ENOMEM);
  1301. goto header_fail;
  1302. }
  1303. got_header = 1;
  1304. break;
  1305. case TILE_DATA:
  1306. if (!c->tiles_x || !c->tiles_y) {
  1307. av_log(avctx, AV_LOG_WARNING,
  1308. "No display info - skipping tile\n");
  1309. break;
  1310. }
  1311. if (chunk_size < 2) {
  1312. av_log(avctx, AV_LOG_ERROR, "Invalid tile data size %"PRIu32"\n",
  1313. chunk_size);
  1314. break;
  1315. }
  1316. c->tile_x = bytestream2_get_byte(&bc);
  1317. c->tile_y = bytestream2_get_byte(&bc);
  1318. if (c->tile_x >= c->tiles_x || c->tile_y >= c->tiles_y) {
  1319. av_log(avctx, AV_LOG_ERROR,
  1320. "Invalid tile pos %d,%d (in %dx%d grid)\n",
  1321. c->tile_x, c->tile_y, c->tiles_x, c->tiles_y);
  1322. break;
  1323. }
  1324. ret = 0;
  1325. switch (c->compression) {
  1326. case COMPR_EPIC_J_B:
  1327. ret = epic_jb_decode_tile(c, c->tile_x, c->tile_y,
  1328. buf + bytestream2_tell(&bc),
  1329. chunk_size - 2, avctx);
  1330. break;
  1331. case COMPR_KEMPF_J_B:
  1332. ret = kempf_decode_tile(c, c->tile_x, c->tile_y,
  1333. buf + bytestream2_tell(&bc),
  1334. chunk_size - 2);
  1335. break;
  1336. }
  1337. if (ret && c->framebuf)
  1338. av_log(avctx, AV_LOG_ERROR, "Error decoding tile %d,%d\n",
  1339. c->tile_x, c->tile_y);
  1340. break;
  1341. case CURSOR_POS:
  1342. if (chunk_size < 5) {
  1343. av_log(avctx, AV_LOG_ERROR, "Invalid cursor pos size %"PRIu32"\n",
  1344. chunk_size);
  1345. break;
  1346. }
  1347. c->cursor_x = bytestream2_get_be16(&bc);
  1348. c->cursor_y = bytestream2_get_be16(&bc);
  1349. break;
  1350. case CURSOR_SHAPE:
  1351. if (chunk_size < 8) {
  1352. av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size %"PRIu32"\n",
  1353. chunk_size);
  1354. break;
  1355. }
  1356. bytestream2_init(&tbc, buf + bytestream2_tell(&bc),
  1357. chunk_size - 4);
  1358. g2m_load_cursor(avctx, c, &tbc);
  1359. break;
  1360. case CHUNK_CC:
  1361. case CHUNK_CD:
  1362. break;
  1363. default:
  1364. av_log(avctx, AV_LOG_WARNING, "Skipping chunk type %02d\n",
  1365. chunk_type);
  1366. }
  1367. /* navigate to next chunk */
  1368. bytestream2_skip(&bc, chunk_start + chunk_size - bytestream2_tell(&bc));
  1369. }
  1370. if (got_header)
  1371. c->got_header = 1;
  1372. if (c->width && c->height && c->framebuf) {
  1373. if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
  1374. return ret;
  1375. pic->key_frame = got_header;
  1376. pic->pict_type = got_header ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  1377. for (i = 0; i < avctx->height; i++)
  1378. memcpy(pic->data[0] + i * pic->linesize[0],
  1379. c->framebuf + i * c->framebuf_stride,
  1380. c->width * 3);
  1381. g2m_paint_cursor(c, pic->data[0], pic->linesize[0]);
  1382. *got_picture_ptr = 1;
  1383. }
  1384. return buf_size;
  1385. header_fail:
  1386. c->width =
  1387. c->height = 0;
  1388. c->tiles_x =
  1389. c->tiles_y = 0;
  1390. c->tile_width =
  1391. c->tile_height = 0;
  1392. return ret;
  1393. }
  1394. static av_cold int g2m_decode_init(AVCodecContext *avctx)
  1395. {
  1396. G2MContext *const c = avctx->priv_data;
  1397. int ret;
  1398. if ((ret = jpg_init(avctx, &c->jc)) != 0) {
  1399. av_log(avctx, AV_LOG_ERROR, "Cannot initialise VLCs\n");
  1400. jpg_free_context(&c->jc);
  1401. return AVERROR(ENOMEM);
  1402. }
  1403. avctx->pix_fmt = AV_PIX_FMT_RGB24;
  1404. // store original sizes and check against those if resize happens
  1405. c->orig_width = avctx->width;
  1406. c->orig_height = avctx->height;
  1407. return 0;
  1408. }
  1409. static av_cold int g2m_decode_end(AVCodecContext *avctx)
  1410. {
  1411. G2MContext *const c = avctx->priv_data;
  1412. jpg_free_context(&c->jc);
  1413. av_freep(&c->epic_buf_base);
  1414. c->epic_buf = NULL;
  1415. av_freep(&c->kempf_buf);
  1416. av_freep(&c->kempf_flags);
  1417. av_freep(&c->synth_tile);
  1418. av_freep(&c->jpeg_tile);
  1419. av_freep(&c->cursor);
  1420. av_freep(&c->framebuf);
  1421. return 0;
  1422. }
  1423. AVCodec ff_g2m_decoder = {
  1424. .name = "g2m",
  1425. .long_name = NULL_IF_CONFIG_SMALL("Go2Meeting"),
  1426. .type = AVMEDIA_TYPE_VIDEO,
  1427. .id = AV_CODEC_ID_G2M,
  1428. .priv_data_size = sizeof(G2MContext),
  1429. .init = g2m_decode_init,
  1430. .close = g2m_decode_end,
  1431. .decode = g2m_decode_frame,
  1432. .capabilities = AV_CODEC_CAP_DR1,
  1433. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
  1434. };