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.

1413 lines
58KB

  1. /*
  2. * common functions for Indeo Video Interactive codecs (Indeo4 and Indeo5)
  3. *
  4. * Copyright (c) 2009 Maxim Poliakovski
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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. * This file contains functions and data shared by both Indeo4 and
  25. * Indeo5 decoders.
  26. */
  27. #define BITSTREAM_READER_LE
  28. #include "libavutil/attributes.h"
  29. #include "avcodec.h"
  30. #include "get_bits.h"
  31. #include "internal.h"
  32. #include "mathops.h"
  33. #include "ivi_common.h"
  34. #include "ivi_dsp.h"
  35. extern const IVIHuffDesc ff_ivi_mb_huff_desc[8]; ///< static macroblock huffman tables
  36. extern const IVIHuffDesc ff_ivi_blk_huff_desc[8]; ///< static block huffman tables
  37. static VLC ivi_mb_vlc_tabs [8]; ///< static macroblock Huffman tables
  38. static VLC ivi_blk_vlc_tabs[8]; ///< static block Huffman tables
  39. typedef void (*ivi_mc_func) (int16_t *buf, const int16_t *ref_buf,
  40. uint32_t pitch, int mc_type);
  41. static int ivi_mc(ivi_mc_func mc, int16_t *buf, const int16_t *ref_buf,
  42. int offs, int mv_x, int mv_y, uint32_t pitch,
  43. int mc_type)
  44. {
  45. int ref_offs = offs + mv_y * pitch + mv_x;
  46. if (offs < 0 || ref_offs < 0 || !ref_buf)
  47. return AVERROR_INVALIDDATA;
  48. mc(buf + offs, ref_buf + ref_offs, pitch, mc_type);
  49. return 0;
  50. }
  51. /**
  52. * Reverse "nbits" bits of the value "val" and return the result
  53. * in the least significant bits.
  54. */
  55. static uint16_t inv_bits(uint16_t val, int nbits)
  56. {
  57. uint16_t res;
  58. if (nbits <= 8) {
  59. res = ff_reverse[val] >> (8 - nbits);
  60. } else
  61. res = ((ff_reverse[val & 0xFF] << 8) +
  62. (ff_reverse[val >> 8])) >> (16 - nbits);
  63. return res;
  64. }
  65. /*
  66. * Generate a huffman codebook from the given descriptor
  67. * and convert it into the Libav VLC table.
  68. *
  69. * @param[in] cb pointer to codebook descriptor
  70. * @param[out] vlc where to place the generated VLC table
  71. * @param[in] flag flag: 1 - for static or 0 for dynamic tables
  72. * @return result code: 0 - OK, -1 = error (invalid codebook descriptor)
  73. */
  74. static int ivi_create_huff_from_desc(const IVIHuffDesc *cb, VLC *vlc, int flag)
  75. {
  76. int pos, i, j, codes_per_row, prefix, not_last_row;
  77. uint16_t codewords[256]; /* FIXME: move this temporal storage out? */
  78. uint8_t bits[256];
  79. pos = 0; /* current position = 0 */
  80. for (i = 0; i < cb->num_rows; i++) {
  81. codes_per_row = 1 << cb->xbits[i];
  82. not_last_row = (i != cb->num_rows - 1);
  83. prefix = ((1 << i) - 1) << (cb->xbits[i] + not_last_row);
  84. for (j = 0; j < codes_per_row; j++) {
  85. if (pos >= 256) /* Some Indeo5 codebooks can have more than 256 */
  86. break; /* elements, but only 256 codes are allowed! */
  87. bits[pos] = i + cb->xbits[i] + not_last_row;
  88. if (bits[pos] > IVI_VLC_BITS)
  89. return AVERROR_INVALIDDATA; /* invalid descriptor */
  90. codewords[pos] = inv_bits((prefix | j), bits[pos]);
  91. if (!bits[pos])
  92. bits[pos] = 1;
  93. pos++;
  94. }//for j
  95. }//for i
  96. /* number of codewords = pos */
  97. return init_vlc(vlc, IVI_VLC_BITS, pos, bits, 1, 1, codewords, 2, 2,
  98. (flag ? INIT_VLC_USE_NEW_STATIC : 0) | INIT_VLC_LE);
  99. }
  100. av_cold void ff_ivi_init_static_vlc(void)
  101. {
  102. int i;
  103. static VLC_TYPE table_data[8192 * 16][2];
  104. static int initialized_vlcs = 0;
  105. if (initialized_vlcs)
  106. return;
  107. for (i = 0; i < 8; i++) {
  108. ivi_mb_vlc_tabs[i].table = table_data + i * 2 * 8192;
  109. ivi_mb_vlc_tabs[i].table_allocated = 8192;
  110. ivi_create_huff_from_desc(&ff_ivi_mb_huff_desc[i],
  111. &ivi_mb_vlc_tabs[i], 1);
  112. ivi_blk_vlc_tabs[i].table = table_data + (i * 2 + 1) * 8192;
  113. ivi_blk_vlc_tabs[i].table_allocated = 8192;
  114. ivi_create_huff_from_desc(&ff_ivi_blk_huff_desc[i],
  115. &ivi_blk_vlc_tabs[i], 1);
  116. }
  117. initialized_vlcs = 1;
  118. }
  119. /*
  120. * Copy huffman codebook descriptors.
  121. *
  122. * @param[out] dst ptr to the destination descriptor
  123. * @param[in] src ptr to the source descriptor
  124. */
  125. static void ivi_huff_desc_copy(IVIHuffDesc *dst, const IVIHuffDesc *src)
  126. {
  127. dst->num_rows = src->num_rows;
  128. memcpy(dst->xbits, src->xbits, src->num_rows);
  129. }
  130. /*
  131. * Compare two huffman codebook descriptors.
  132. *
  133. * @param[in] desc1 ptr to the 1st descriptor to compare
  134. * @param[in] desc2 ptr to the 2nd descriptor to compare
  135. * @return comparison result: 0 - equal, 1 - not equal
  136. */
  137. static int ivi_huff_desc_cmp(const IVIHuffDesc *desc1,
  138. const IVIHuffDesc *desc2)
  139. {
  140. return desc1->num_rows != desc2->num_rows ||
  141. memcmp(desc1->xbits, desc2->xbits, desc1->num_rows);
  142. }
  143. int ff_ivi_dec_huff_desc(GetBitContext *gb, int desc_coded, int which_tab,
  144. IVIHuffTab *huff_tab, AVCodecContext *avctx)
  145. {
  146. int i, result;
  147. IVIHuffDesc new_huff;
  148. if (!desc_coded) {
  149. /* select default table */
  150. huff_tab->tab = (which_tab) ? &ivi_blk_vlc_tabs[7]
  151. : &ivi_mb_vlc_tabs [7];
  152. return 0;
  153. }
  154. huff_tab->tab_sel = get_bits(gb, 3);
  155. if (huff_tab->tab_sel == 7) {
  156. /* custom huffman table (explicitly encoded) */
  157. new_huff.num_rows = get_bits(gb, 4);
  158. if (!new_huff.num_rows) {
  159. av_log(avctx, AV_LOG_ERROR, "Empty custom Huffman table!\n");
  160. return AVERROR_INVALIDDATA;
  161. }
  162. for (i = 0; i < new_huff.num_rows; i++)
  163. new_huff.xbits[i] = get_bits(gb, 4);
  164. /* Have we got the same custom table? Rebuild if not. */
  165. if (ivi_huff_desc_cmp(&new_huff, &huff_tab->cust_desc)) {
  166. ivi_huff_desc_copy(&huff_tab->cust_desc, &new_huff);
  167. if (huff_tab->cust_tab.table)
  168. ff_free_vlc(&huff_tab->cust_tab);
  169. result = ivi_create_huff_from_desc(&huff_tab->cust_desc,
  170. &huff_tab->cust_tab, 0);
  171. if (result) {
  172. // reset faulty description
  173. huff_tab->cust_desc.num_rows = 0;
  174. av_log(avctx, AV_LOG_ERROR,
  175. "Error while initializing custom vlc table!\n");
  176. return result;
  177. }
  178. }
  179. huff_tab->tab = &huff_tab->cust_tab;
  180. } else {
  181. /* select one of predefined tables */
  182. huff_tab->tab = (which_tab) ? &ivi_blk_vlc_tabs[huff_tab->tab_sel]
  183. : &ivi_mb_vlc_tabs [huff_tab->tab_sel];
  184. }
  185. return 0;
  186. }
  187. /*
  188. * Free planes, bands and macroblocks buffers.
  189. *
  190. * @param[in] planes pointer to the array of the plane descriptors
  191. */
  192. static av_cold void ivi_free_buffers(IVIPlaneDesc *planes)
  193. {
  194. int p, b, t;
  195. for (p = 0; p < 3; p++) {
  196. for (b = 0; b < planes[p].num_bands; b++) {
  197. av_freep(&planes[p].bands[b].bufs[0]);
  198. av_freep(&planes[p].bands[b].bufs[1]);
  199. av_freep(&planes[p].bands[b].bufs[2]);
  200. if (planes[p].bands[b].blk_vlc.cust_tab.table)
  201. ff_free_vlc(&planes[p].bands[b].blk_vlc.cust_tab);
  202. for (t = 0; t < planes[p].bands[b].num_tiles; t++)
  203. av_freep(&planes[p].bands[b].tiles[t].mbs);
  204. av_freep(&planes[p].bands[b].tiles);
  205. }
  206. av_freep(&planes[p].bands);
  207. }
  208. }
  209. av_cold int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg)
  210. {
  211. int p, b;
  212. uint32_t b_width, b_height, align_fac, width_aligned,
  213. height_aligned, buf_size;
  214. IVIBandDesc *band;
  215. ivi_free_buffers(planes);
  216. /* fill in the descriptor of the luminance plane */
  217. planes[0].width = cfg->pic_width;
  218. planes[0].height = cfg->pic_height;
  219. planes[0].num_bands = cfg->luma_bands;
  220. /* fill in the descriptors of the chrominance planes */
  221. planes[1].width = planes[2].width = (cfg->pic_width + 3) >> 2;
  222. planes[1].height = planes[2].height = (cfg->pic_height + 3) >> 2;
  223. planes[1].num_bands = planes[2].num_bands = cfg->chroma_bands;
  224. for (p = 0; p < 3; p++) {
  225. planes[p].bands = av_mallocz(planes[p].num_bands * sizeof(IVIBandDesc));
  226. if (!planes[p].bands)
  227. return AVERROR(ENOMEM);
  228. /* select band dimensions: if there is only one band then it
  229. * has the full size, if there are several bands each of them
  230. * has only half size */
  231. b_width = planes[p].num_bands == 1 ? planes[p].width
  232. : (planes[p].width + 1) >> 1;
  233. b_height = planes[p].num_bands == 1 ? planes[p].height
  234. : (planes[p].height + 1) >> 1;
  235. /* luma band buffers will be aligned on 16x16 (max macroblock size) */
  236. /* chroma band buffers will be aligned on 8x8 (max macroblock size) */
  237. align_fac = p ? 8 : 16;
  238. width_aligned = FFALIGN(b_width , align_fac);
  239. height_aligned = FFALIGN(b_height, align_fac);
  240. buf_size = width_aligned * height_aligned * sizeof(int16_t);
  241. for (b = 0; b < planes[p].num_bands; b++) {
  242. band = &planes[p].bands[b]; /* select appropriate plane/band */
  243. band->plane = p;
  244. band->band_num = b;
  245. band->width = b_width;
  246. band->height = b_height;
  247. band->pitch = width_aligned;
  248. band->aheight = height_aligned;
  249. band->bufs[0] = av_mallocz(buf_size);
  250. band->bufs[1] = av_mallocz(buf_size);
  251. if (!band->bufs[0] || !band->bufs[1])
  252. return AVERROR(ENOMEM);
  253. /* allocate the 3rd band buffer for scalability mode */
  254. if (cfg->luma_bands > 1) {
  255. band->bufs[2] = av_mallocz(buf_size);
  256. if (!band->bufs[2])
  257. return AVERROR(ENOMEM);
  258. }
  259. /* reset custom vlc */
  260. planes[p].bands[0].blk_vlc.cust_desc.num_rows = 0;
  261. }
  262. }
  263. return 0;
  264. }
  265. static int ivi_init_tiles(IVIBandDesc *band, IVITile *ref_tile,
  266. int p, int b, int t_height, int t_width)
  267. {
  268. int x, y;
  269. IVITile *tile = band->tiles;
  270. for (y = 0; y < band->height; y += t_height) {
  271. for (x = 0; x < band->width; x += t_width) {
  272. tile->xpos = x;
  273. tile->ypos = y;
  274. tile->mb_size = band->mb_size;
  275. tile->width = FFMIN(band->width - x, t_width);
  276. tile->height = FFMIN(band->height - y, t_height);
  277. tile->is_empty = tile->data_size = 0;
  278. /* calculate number of macroblocks */
  279. tile->num_MBs = IVI_MBs_PER_TILE(tile->width, tile->height,
  280. band->mb_size);
  281. av_freep(&tile->mbs);
  282. tile->mbs = av_malloc(tile->num_MBs * sizeof(IVIMbInfo));
  283. if (!tile->mbs)
  284. return AVERROR(ENOMEM);
  285. tile->ref_mbs = 0;
  286. if (p || b) {
  287. tile->ref_mbs = ref_tile->mbs;
  288. ref_tile++;
  289. }
  290. tile++;
  291. }
  292. }
  293. return 0;
  294. }
  295. av_cold int ff_ivi_init_tiles(IVIPlaneDesc *planes,
  296. int tile_width, int tile_height)
  297. {
  298. int p, b, x_tiles, y_tiles, t_width, t_height, ret;
  299. IVIBandDesc *band;
  300. for (p = 0; p < 3; p++) {
  301. t_width = !p ? tile_width : (tile_width + 3) >> 2;
  302. t_height = !p ? tile_height : (tile_height + 3) >> 2;
  303. if (!p && planes[0].num_bands == 4) {
  304. t_width >>= 1;
  305. t_height >>= 1;
  306. }
  307. for (b = 0; b < planes[p].num_bands; b++) {
  308. band = &planes[p].bands[b];
  309. x_tiles = IVI_NUM_TILES(band->width, t_width);
  310. y_tiles = IVI_NUM_TILES(band->height, t_height);
  311. band->num_tiles = x_tiles * y_tiles;
  312. av_freep(&band->tiles);
  313. band->tiles = av_mallocz(band->num_tiles * sizeof(IVITile));
  314. if (!band->tiles)
  315. return AVERROR(ENOMEM);
  316. /* use the first luma band as reference for motion vectors
  317. * and quant */
  318. ret = ivi_init_tiles(band, planes[0].bands[0].tiles,
  319. p, b, t_height, t_width);
  320. if (ret < 0)
  321. return ret;
  322. }
  323. }
  324. return 0;
  325. }
  326. /*
  327. * Decode size of the tile data.
  328. * The size is stored as a variable-length field having the following format:
  329. * if (tile_data_size < 255) than this field is only one byte long
  330. * if (tile_data_size >= 255) than this field four is byte long: 0xFF X1 X2 X3
  331. * where X1-X3 is size of the tile data
  332. *
  333. * @param[in,out] gb the GetBit context
  334. * @return size of the tile data in bytes
  335. */
  336. static int ivi_dec_tile_data_size(GetBitContext *gb)
  337. {
  338. int len;
  339. len = 0;
  340. if (get_bits1(gb)) {
  341. len = get_bits(gb, 8);
  342. if (len == 255)
  343. len = get_bits_long(gb, 24);
  344. }
  345. /* align the bitstream reader on the byte boundary */
  346. align_get_bits(gb);
  347. return len;
  348. }
  349. static int ivi_decode_coded_blocks(GetBitContext *gb, IVIBandDesc *band,
  350. ivi_mc_func mc, int mv_x, int mv_y,
  351. int *prev_dc, int is_intra, int mc_type,
  352. uint32_t quant, int offs,
  353. AVCodecContext *avctx)
  354. {
  355. const uint16_t *base_tab = is_intra ? band->intra_base : band->inter_base;
  356. RVMapDesc *rvmap = band->rv_map;
  357. uint8_t col_flags[8];
  358. int32_t trvec[64];
  359. uint32_t sym = 0, lo, hi, q;
  360. int pos, run, val;
  361. int blk_size = band->blk_size;
  362. int num_coeffs = blk_size * blk_size;
  363. int col_mask = blk_size - 1;
  364. int scan_pos = -1;
  365. if (!band->scan) {
  366. av_log(avctx, AV_LOG_ERROR, "Scan pattern is not set.\n");
  367. return AVERROR_INVALIDDATA;
  368. }
  369. /* zero transform vector */
  370. memset(trvec, 0, num_coeffs * sizeof(trvec[0]));
  371. /* zero column flags */
  372. memset(col_flags, 0, sizeof(col_flags));
  373. while (scan_pos <= num_coeffs) {
  374. sym = get_vlc2(gb, band->blk_vlc.tab->table,
  375. IVI_VLC_BITS, 1);
  376. if (sym == rvmap->eob_sym)
  377. break; /* End of block */
  378. /* Escape - run/val explicitly coded using 3 vlc codes */
  379. if (sym == rvmap->esc_sym) {
  380. run = get_vlc2(gb, band->blk_vlc.tab->table, IVI_VLC_BITS, 1) + 1;
  381. lo = get_vlc2(gb, band->blk_vlc.tab->table, IVI_VLC_BITS, 1);
  382. hi = get_vlc2(gb, band->blk_vlc.tab->table, IVI_VLC_BITS, 1);
  383. /* merge them and convert into signed val */
  384. val = IVI_TOSIGNED((hi << 6) | lo);
  385. } else {
  386. if (sym >= 256U) {
  387. av_log(avctx, AV_LOG_ERROR, "Invalid sym encountered: %d.\n", sym);
  388. return AVERROR_INVALIDDATA;
  389. }
  390. run = rvmap->runtab[sym];
  391. val = rvmap->valtab[sym];
  392. }
  393. /* de-zigzag and dequantize */
  394. scan_pos += run;
  395. if (scan_pos >= num_coeffs || scan_pos < 0)
  396. break;
  397. pos = band->scan[scan_pos];
  398. if (!val)
  399. av_dlog(avctx, "Val = 0 encountered!\n");
  400. q = (base_tab[pos] * quant) >> 9;
  401. if (q > 1)
  402. val = val * q + FFSIGN(val) * (((q ^ 1) - 1) >> 1);
  403. trvec[pos] = val;
  404. /* track columns containing non-zero coeffs */
  405. col_flags[pos & col_mask] |= !!val;
  406. }
  407. if (scan_pos < 0 || scan_pos >= num_coeffs && sym != rvmap->eob_sym)
  408. return AVERROR_INVALIDDATA; /* corrupt block data */
  409. /* undoing DC coeff prediction for intra-blocks */
  410. if (is_intra && band->is_2d_trans) {
  411. *prev_dc += trvec[0];
  412. trvec[0] = *prev_dc;
  413. col_flags[0] |= !!*prev_dc;
  414. }
  415. /* apply inverse transform */
  416. band->inv_transform(trvec, band->buf + offs,
  417. band->pitch, col_flags);
  418. /* apply motion compensation */
  419. if (!is_intra)
  420. return ivi_mc(mc, band->buf, band->ref_buf, offs, mv_x, mv_y,
  421. band->pitch, mc_type);
  422. return 0;
  423. }
  424. /*
  425. * Decode block data:
  426. * extract huffman-coded transform coefficients from the bitstream,
  427. * dequantize them, apply inverse transform and motion compensation
  428. * in order to reconstruct the picture.
  429. *
  430. * @param[in,out] gb the GetBit context
  431. * @param[in] band pointer to the band descriptor
  432. * @param[in] tile pointer to the tile descriptor
  433. * @return result code: 0 - OK, -1 = error (corrupted blocks data)
  434. */
  435. static int ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band,
  436. IVITile *tile, AVCodecContext *avctx)
  437. {
  438. int mbn, blk, num_blocks, blk_size, ret, is_intra, mc_type = 0;
  439. int mv_x = 0, mv_y = 0;
  440. int32_t prev_dc;
  441. uint32_t cbp, quant, buf_offs;
  442. IVIMbInfo *mb;
  443. ivi_mc_func mc_with_delta_func, mc_no_delta_func;
  444. const uint8_t *scale_tab;
  445. /* init intra prediction for the DC coefficient */
  446. prev_dc = 0;
  447. blk_size = band->blk_size;
  448. /* number of blocks per mb */
  449. num_blocks = (band->mb_size != blk_size) ? 4 : 1;
  450. if (blk_size == 8) {
  451. mc_with_delta_func = ff_ivi_mc_8x8_delta;
  452. mc_no_delta_func = ff_ivi_mc_8x8_no_delta;
  453. } else {
  454. mc_with_delta_func = ff_ivi_mc_4x4_delta;
  455. mc_no_delta_func = ff_ivi_mc_4x4_no_delta;
  456. }
  457. for (mbn = 0, mb = tile->mbs; mbn < tile->num_MBs; mb++, mbn++) {
  458. is_intra = !mb->type;
  459. cbp = mb->cbp;
  460. buf_offs = mb->buf_offs;
  461. quant = band->glob_quant + mb->q_delta;
  462. if (avctx->codec_id == AV_CODEC_ID_INDEO4)
  463. quant = av_clip(quant, 0, 31);
  464. else
  465. quant = av_clip(quant, 0, 23);
  466. scale_tab = is_intra ? band->intra_scale : band->inter_scale;
  467. if (scale_tab)
  468. quant = scale_tab[quant];
  469. if (!is_intra) {
  470. mv_x = mb->mv_x;
  471. mv_y = mb->mv_y;
  472. if (band->is_halfpel) {
  473. mc_type = ((mv_y & 1) << 1) | (mv_x & 1);
  474. mv_x >>= 1;
  475. mv_y >>= 1; /* convert halfpel vectors into fullpel ones */
  476. }
  477. if (mb->type) {
  478. int dmv_x, dmv_y, cx, cy;
  479. dmv_x = mb->mv_x >> band->is_halfpel;
  480. dmv_y = mb->mv_y >> band->is_halfpel;
  481. cx = mb->mv_x & band->is_halfpel;
  482. cy = mb->mv_y & band->is_halfpel;
  483. if (mb->xpos + dmv_x < 0 ||
  484. mb->xpos + dmv_x + band->mb_size + cx > band->pitch ||
  485. mb->ypos + dmv_y < 0 ||
  486. mb->ypos + dmv_y + band->mb_size + cy > band->aheight) {
  487. return AVERROR_INVALIDDATA;
  488. }
  489. }
  490. }
  491. for (blk = 0; blk < num_blocks; blk++) {
  492. /* adjust block position in the buffer according to its number */
  493. if (blk & 1) {
  494. buf_offs += blk_size;
  495. } else if (blk == 2) {
  496. buf_offs -= blk_size;
  497. buf_offs += blk_size * band->pitch;
  498. }
  499. if (cbp & 1) { /* block coded ? */
  500. ret = ivi_decode_coded_blocks(gb, band, mc_with_delta_func,
  501. mv_x, mv_y, &prev_dc, is_intra,
  502. mc_type, quant, buf_offs, avctx);
  503. if (ret < 0)
  504. return ret;
  505. } else {
  506. /* block not coded */
  507. /* for intra blocks apply the dc slant transform */
  508. /* for inter - perform the motion compensation without delta */
  509. if (is_intra) {
  510. if (band->dc_transform)
  511. band->dc_transform(&prev_dc, band->buf + buf_offs,
  512. band->pitch, blk_size);
  513. } else {
  514. ret = ivi_mc(mc_no_delta_func, band->buf, band->ref_buf,
  515. buf_offs, mv_x, mv_y, band->pitch, mc_type);
  516. if (ret < 0)
  517. return ret;
  518. }
  519. }
  520. cbp >>= 1;
  521. }// for blk
  522. }// for mbn
  523. align_get_bits(gb);
  524. return 0;
  525. }
  526. /**
  527. * Handle empty tiles by performing data copying and motion
  528. * compensation respectively.
  529. *
  530. * @param[in] avctx ptr to the AVCodecContext
  531. * @param[in] band pointer to the band descriptor
  532. * @param[in] tile pointer to the tile descriptor
  533. * @param[in] mv_scale scaling factor for motion vectors
  534. */
  535. static int ivi_process_empty_tile(AVCodecContext *avctx, IVIBandDesc *band,
  536. IVITile *tile, int32_t mv_scale)
  537. {
  538. int x, y, need_mc, mbn, blk, num_blocks, mv_x, mv_y, mc_type;
  539. int offs, mb_offset, row_offset, ret;
  540. IVIMbInfo *mb, *ref_mb;
  541. const int16_t *src;
  542. int16_t *dst;
  543. ivi_mc_func mc_no_delta_func;
  544. if (tile->num_MBs != IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size)) {
  545. av_log(avctx, AV_LOG_ERROR, "Allocated tile size %d mismatches "
  546. "parameters %d in ivi_process_empty_tile()\n",
  547. tile->num_MBs, IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size));
  548. return AVERROR_INVALIDDATA;
  549. }
  550. offs = tile->ypos * band->pitch + tile->xpos;
  551. mb = tile->mbs;
  552. ref_mb = tile->ref_mbs;
  553. row_offset = band->mb_size * band->pitch;
  554. need_mc = 0; /* reset the mc tracking flag */
  555. for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
  556. mb_offset = offs;
  557. for (x = tile->xpos; x < (tile->xpos + tile->width); x += band->mb_size) {
  558. mb->xpos = x;
  559. mb->ypos = y;
  560. mb->buf_offs = mb_offset;
  561. mb->type = 1; /* set the macroblocks type = INTER */
  562. mb->cbp = 0; /* all blocks are empty */
  563. if (!band->qdelta_present && !band->plane && !band->band_num) {
  564. mb->q_delta = band->glob_quant;
  565. mb->mv_x = 0;
  566. mb->mv_y = 0;
  567. }
  568. if (band->inherit_qdelta && ref_mb)
  569. mb->q_delta = ref_mb->q_delta;
  570. if (band->inherit_mv && ref_mb) {
  571. /* motion vector inheritance */
  572. if (mv_scale) {
  573. mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);
  574. mb->mv_y = ivi_scale_mv(ref_mb->mv_y, mv_scale);
  575. } else {
  576. mb->mv_x = ref_mb->mv_x;
  577. mb->mv_y = ref_mb->mv_y;
  578. }
  579. need_mc |= mb->mv_x || mb->mv_y; /* tracking non-zero motion vectors */
  580. }
  581. mb++;
  582. if (ref_mb)
  583. ref_mb++;
  584. mb_offset += band->mb_size;
  585. } // for x
  586. offs += row_offset;
  587. } // for y
  588. if (band->inherit_mv && need_mc) { /* apply motion compensation if there is at least one non-zero motion vector */
  589. num_blocks = (band->mb_size != band->blk_size) ? 4 : 1; /* number of blocks per mb */
  590. mc_no_delta_func = (band->blk_size == 8) ? ff_ivi_mc_8x8_no_delta
  591. : ff_ivi_mc_4x4_no_delta;
  592. for (mbn = 0, mb = tile->mbs; mbn < tile->num_MBs; mb++, mbn++) {
  593. mv_x = mb->mv_x;
  594. mv_y = mb->mv_y;
  595. if (!band->is_halfpel) {
  596. mc_type = 0; /* we have only fullpel vectors */
  597. } else {
  598. mc_type = ((mv_y & 1) << 1) | (mv_x & 1);
  599. mv_x >>= 1;
  600. mv_y >>= 1; /* convert halfpel vectors into fullpel ones */
  601. }
  602. for (blk = 0; blk < num_blocks; blk++) {
  603. /* adjust block position in the buffer according with its number */
  604. offs = mb->buf_offs + band->blk_size * ((blk & 1) + !!(blk & 2) * band->pitch);
  605. ret = ivi_mc(mc_no_delta_func, band->buf, band->ref_buf,
  606. offs, mv_x, mv_y, band->pitch, mc_type);
  607. if (ret < 0)
  608. return ret;
  609. }
  610. }
  611. } else {
  612. /* copy data from the reference tile into the current one */
  613. src = band->ref_buf + tile->ypos * band->pitch + tile->xpos;
  614. dst = band->buf + tile->ypos * band->pitch + tile->xpos;
  615. for (y = 0; y < tile->height; y++) {
  616. memcpy(dst, src, tile->width*sizeof(band->buf[0]));
  617. src += band->pitch;
  618. dst += band->pitch;
  619. }
  620. }
  621. return 0;
  622. }
  623. #ifdef DEBUG
  624. static uint16_t ivi_calc_band_checksum(IVIBandDesc *band)
  625. {
  626. int x, y;
  627. int16_t *src, checksum;
  628. src = band->buf;
  629. checksum = 0;
  630. for (y = 0; y < band->height; src += band->pitch, y++)
  631. for (x = 0; x < band->width; x++)
  632. checksum += src[x];
  633. return checksum;
  634. }
  635. #endif
  636. /*
  637. * Convert and output the current plane.
  638. * This conversion is done by adding back the bias value of 128
  639. * (subtracted in the encoder) and clipping the result.
  640. *
  641. * @param[in] plane pointer to the descriptor of the plane being processed
  642. * @param[out] dst pointer to the buffer receiving converted pixels
  643. * @param[in] dst_pitch pitch for moving to the next y line
  644. */
  645. static void ivi_output_plane(IVIPlaneDesc *plane, uint8_t *dst, int dst_pitch)
  646. {
  647. int x, y;
  648. const int16_t *src = plane->bands[0].buf;
  649. uint32_t pitch = plane->bands[0].pitch;
  650. if (!src)
  651. return;
  652. for (y = 0; y < plane->height; y++) {
  653. for (x = 0; x < plane->width; x++)
  654. dst[x] = av_clip_uint8(src[x] + 128);
  655. src += pitch;
  656. dst += dst_pitch;
  657. }
  658. }
  659. /**
  660. * Decode an Indeo 4 or 5 band.
  661. *
  662. * @param[in,out] ctx ptr to the decoder context
  663. * @param[in,out] band ptr to the band descriptor
  664. * @param[in] avctx ptr to the AVCodecContext
  665. * @return result code: 0 = OK, -1 = error
  666. */
  667. static int decode_band(IVI45DecContext *ctx,
  668. IVIBandDesc *band, AVCodecContext *avctx)
  669. {
  670. int result, i, t, idx1, idx2, pos;
  671. IVITile *tile;
  672. band->buf = band->bufs[ctx->dst_buf];
  673. if (!band->buf) {
  674. av_log(avctx, AV_LOG_ERROR, "Band buffer points to no data!\n");
  675. return AVERROR_INVALIDDATA;
  676. }
  677. band->ref_buf = band->bufs[ctx->ref_buf];
  678. band->data_ptr = ctx->frame_data + (get_bits_count(&ctx->gb) >> 3);
  679. result = ctx->decode_band_hdr(ctx, band, avctx);
  680. if (result) {
  681. av_log(avctx, AV_LOG_ERROR, "Error while decoding band header: %d\n",
  682. result);
  683. return result;
  684. }
  685. if (band->is_empty) {
  686. av_log(avctx, AV_LOG_ERROR, "Empty band encountered!\n");
  687. return AVERROR_INVALIDDATA;
  688. }
  689. band->rv_map = &ctx->rvmap_tabs[band->rvmap_sel];
  690. /* apply corrections to the selected rvmap table if present */
  691. for (i = 0; i < band->num_corr; i++) {
  692. idx1 = band->corr[i * 2];
  693. idx2 = band->corr[i * 2 + 1];
  694. FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
  695. FFSWAP(int16_t, band->rv_map->valtab[idx1], band->rv_map->valtab[idx2]);
  696. }
  697. pos = get_bits_count(&ctx->gb);
  698. for (t = 0; t < band->num_tiles; t++) {
  699. tile = &band->tiles[t];
  700. if (tile->mb_size != band->mb_size) {
  701. av_log(avctx, AV_LOG_ERROR, "MB sizes mismatch: %d vs. %d\n",
  702. band->mb_size, tile->mb_size);
  703. return AVERROR_INVALIDDATA;
  704. }
  705. tile->is_empty = get_bits1(&ctx->gb);
  706. if (tile->is_empty) {
  707. result = ivi_process_empty_tile(avctx, band, tile,
  708. (ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3));
  709. if (result < 0)
  710. break;
  711. av_dlog(avctx, "Empty tile encountered!\n");
  712. } else {
  713. tile->data_size = ivi_dec_tile_data_size(&ctx->gb);
  714. if (!tile->data_size) {
  715. av_log(avctx, AV_LOG_ERROR, "Tile data size is zero!\n");
  716. return AVERROR_INVALIDDATA;
  717. }
  718. result = ctx->decode_mb_info(ctx, band, tile, avctx);
  719. if (result < 0)
  720. break;
  721. result = ivi_decode_blocks(&ctx->gb, band, tile, avctx);
  722. if (result < 0) {
  723. av_log(avctx, AV_LOG_ERROR,
  724. "Corrupted tile data encountered!\n");
  725. break;
  726. }
  727. if (((get_bits_count(&ctx->gb) - pos) >> 3) != tile->data_size) {
  728. av_log(avctx, AV_LOG_ERROR,
  729. "Tile data_size mismatch!\n");
  730. result = AVERROR_INVALIDDATA;
  731. break;
  732. }
  733. pos += tile->data_size << 3; // skip to next tile
  734. }
  735. }
  736. /* restore the selected rvmap table by applying its corrections in
  737. * reverse order */
  738. for (i = band->num_corr-1; i >= 0; i--) {
  739. idx1 = band->corr[i*2];
  740. idx2 = band->corr[i*2+1];
  741. FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
  742. FFSWAP(int16_t, band->rv_map->valtab[idx1], band->rv_map->valtab[idx2]);
  743. }
  744. #ifdef DEBUG
  745. if (band->checksum_present) {
  746. uint16_t chksum = ivi_calc_band_checksum(band);
  747. if (chksum != band->checksum) {
  748. av_log(avctx, AV_LOG_ERROR,
  749. "Band checksum mismatch! Plane %d, band %d, "
  750. "received: %x, calculated: %x\n",
  751. band->plane, band->band_num, band->checksum, chksum);
  752. }
  753. }
  754. #endif
  755. align_get_bits(&ctx->gb);
  756. return result;
  757. }
  758. int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  759. AVPacket *avpkt)
  760. {
  761. IVI45DecContext *ctx = avctx->priv_data;
  762. const uint8_t *buf = avpkt->data;
  763. AVFrame *frame = data;
  764. int buf_size = avpkt->size;
  765. int result, p, b;
  766. init_get_bits(&ctx->gb, buf, buf_size * 8);
  767. ctx->frame_data = buf;
  768. ctx->frame_size = buf_size;
  769. result = ctx->decode_pic_hdr(ctx, avctx);
  770. if (result) {
  771. av_log(avctx, AV_LOG_ERROR,
  772. "Error while decoding picture header: %d\n", result);
  773. return result;
  774. }
  775. if (ctx->gop_invalid)
  776. return AVERROR_INVALIDDATA;
  777. if (ctx->gop_flags & IVI5_IS_PROTECTED) {
  778. avpriv_report_missing_feature(avctx, "Password-protected clip!\n");
  779. return AVERROR_PATCHWELCOME;
  780. }
  781. ctx->switch_buffers(ctx);
  782. //{ START_TIMER;
  783. if (ctx->is_nonnull_frame(ctx)) {
  784. for (p = 0; p < 3; p++) {
  785. for (b = 0; b < ctx->planes[p].num_bands; b++) {
  786. result = decode_band(ctx, &ctx->planes[p].bands[b], avctx);
  787. if (result < 0) {
  788. av_log(avctx, AV_LOG_ERROR,
  789. "Error while decoding band: %d, plane: %d\n", b, p);
  790. return result;
  791. }
  792. }
  793. }
  794. }
  795. //STOP_TIMER("decode_planes"); }
  796. /* If the bidirectional mode is enabled, next I and the following P
  797. * frame will be sent together. Unfortunately the approach below seems
  798. * to be the only way to handle the B-frames mode.
  799. * That's exactly the same Intel decoders do.
  800. */
  801. if (avctx->codec_id == AV_CODEC_ID_INDEO4 &&
  802. ctx->frame_type == 0/*FRAMETYPE_INTRA*/) {
  803. while (get_bits(&ctx->gb, 8)); // skip version string
  804. skip_bits_long(&ctx->gb, 64); // skip padding, TODO: implement correct 8-bytes alignment
  805. if (get_bits_left(&ctx->gb) > 18 && show_bits(&ctx->gb, 18) == 0x3FFF8)
  806. av_log(avctx, AV_LOG_ERROR, "Buffer contains IP frames!\n");
  807. }
  808. avcodec_set_dimensions(avctx, ctx->planes[0].width, ctx->planes[0].height);
  809. if ((result = ff_get_buffer(avctx, frame, 0)) < 0) {
  810. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  811. return result;
  812. }
  813. if (ctx->is_scalable) {
  814. if (avctx->codec_id == AV_CODEC_ID_INDEO4)
  815. ff_ivi_recompose_haar(&ctx->planes[0], frame->data[0], frame->linesize[0]);
  816. else
  817. ff_ivi_recompose53 (&ctx->planes[0], frame->data[0], frame->linesize[0]);
  818. } else {
  819. ivi_output_plane(&ctx->planes[0], frame->data[0], frame->linesize[0]);
  820. }
  821. ivi_output_plane(&ctx->planes[2], frame->data[1], frame->linesize[1]);
  822. ivi_output_plane(&ctx->planes[1], frame->data[2], frame->linesize[2]);
  823. *got_frame = 1;
  824. return buf_size;
  825. }
  826. /**
  827. * Close Indeo5 decoder and clean up its context.
  828. */
  829. av_cold int ff_ivi_decode_close(AVCodecContext *avctx)
  830. {
  831. IVI45DecContext *ctx = avctx->priv_data;
  832. ivi_free_buffers(&ctx->planes[0]);
  833. if (ctx->mb_vlc.cust_tab.table)
  834. ff_free_vlc(&ctx->mb_vlc.cust_tab);
  835. #if IVI4_STREAM_ANALYSER
  836. if (avctx->codec_id == AV_CODEC_ID_INDEO4) {
  837. if (ctx->is_scalable)
  838. av_log(avctx, AV_LOG_ERROR, "This video uses scalability mode!\n");
  839. if (ctx->uses_tiling)
  840. av_log(avctx, AV_LOG_ERROR, "This video uses local decoding!\n");
  841. if (ctx->has_b_frames)
  842. av_log(avctx, AV_LOG_ERROR, "This video contains B-frames!\n");
  843. if (ctx->has_transp)
  844. av_log(avctx, AV_LOG_ERROR, "Transparency mode is enabled!\n");
  845. if (ctx->uses_haar)
  846. av_log(avctx, AV_LOG_ERROR, "This video uses Haar transform!\n");
  847. if (ctx->uses_fullpel)
  848. av_log(avctx, AV_LOG_ERROR, "This video uses fullpel motion vectors!\n");
  849. }
  850. #endif
  851. return 0;
  852. }
  853. /**
  854. * These are 2x8 predefined Huffman codebooks for coding macroblock/block
  855. * signals. They are specified using "huffman descriptors" in order to
  856. * avoid huge static tables. The decoding tables will be generated at
  857. * startup from these descriptors.
  858. */
  859. const IVIHuffDesc ff_ivi_mb_huff_desc[8] = {
  860. {8, {0, 4, 5, 4, 4, 4, 6, 6}},
  861. {12, {0, 2, 2, 3, 3, 3, 3, 5, 3, 2, 2, 2}},
  862. {12, {0, 2, 3, 4, 3, 3, 3, 3, 4, 3, 2, 2}},
  863. {12, {0, 3, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2}},
  864. {13, {0, 4, 4, 3, 3, 3, 3, 2, 3, 3, 2, 1, 1}},
  865. {9, {0, 4, 4, 4, 4, 3, 3, 3, 2}},
  866. {10, {0, 4, 4, 4, 4, 3, 3, 2, 2, 2}},
  867. {12, {0, 4, 4, 4, 3, 3, 2, 3, 2, 2, 2, 2}}
  868. };
  869. const IVIHuffDesc ff_ivi_blk_huff_desc[8] = {
  870. {10, {1, 2, 3, 4, 4, 7, 5, 5, 4, 1}},
  871. {11, {2, 3, 4, 4, 4, 7, 5, 4, 3, 3, 2}},
  872. {12, {2, 4, 5, 5, 5, 5, 6, 4, 4, 3, 1, 1}},
  873. {13, {3, 3, 4, 4, 5, 6, 6, 4, 4, 3, 2, 1, 1}},
  874. {11, {3, 4, 4, 5, 5, 5, 6, 5, 4, 2, 2}},
  875. {13, {3, 4, 5, 5, 5, 5, 6, 4, 3, 3, 2, 1, 1}},
  876. {13, {3, 4, 5, 5, 5, 6, 5, 4, 3, 3, 2, 1, 1}},
  877. {9, {3, 4, 4, 5, 5, 5, 6, 5, 5}}
  878. };
  879. /**
  880. * Scan patterns shared between indeo4 and indeo5
  881. */
  882. const uint8_t ff_ivi_vertical_scan_8x8[64] = {
  883. 0, 8, 16, 24, 32, 40, 48, 56,
  884. 1, 9, 17, 25, 33, 41, 49, 57,
  885. 2, 10, 18, 26, 34, 42, 50, 58,
  886. 3, 11, 19, 27, 35, 43, 51, 59,
  887. 4, 12, 20, 28, 36, 44, 52, 60,
  888. 5, 13, 21, 29, 37, 45, 53, 61,
  889. 6, 14, 22, 30, 38, 46, 54, 62,
  890. 7, 15, 23, 31, 39, 47, 55, 63
  891. };
  892. const uint8_t ff_ivi_horizontal_scan_8x8[64] = {
  893. 0, 1, 2, 3, 4, 5, 6, 7,
  894. 8, 9, 10, 11, 12, 13, 14, 15,
  895. 16, 17, 18, 19, 20, 21, 22, 23,
  896. 24, 25, 26, 27, 28, 29, 30, 31,
  897. 32, 33, 34, 35, 36, 37, 38, 39,
  898. 40, 41, 42, 43, 44, 45, 46, 47,
  899. 48, 49, 50, 51, 52, 53, 54, 55,
  900. 56, 57, 58, 59, 60, 61, 62, 63
  901. };
  902. const uint8_t ff_ivi_direct_scan_4x4[16] = {
  903. 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15
  904. };
  905. /**
  906. * Run-value (RLE) tables.
  907. */
  908. const RVMapDesc ff_ivi_rvmap_tabs[9] = {
  909. { /* MapTab0 */
  910. 5, /* eob_sym */
  911. 2, /* esc_sym */
  912. /* run table */
  913. {1, 1, 0, 1, 1, 0, 1, 1, 2, 2, 1, 1, 1, 1, 3, 3,
  914. 1, 1, 2, 2, 1, 1, 4, 4, 1, 1, 1, 1, 2, 2, 5, 5,
  915. 1, 1, 3, 3, 1, 1, 6, 6, 1, 2, 1, 2, 7, 7, 1, 1,
  916. 8, 8, 1, 1, 4, 2, 1, 4, 2, 1, 3, 3, 1, 1, 1, 9,
  917. 9, 1, 2, 1, 2, 1, 5, 5, 1, 1, 10, 10, 1, 1, 3, 3,
  918. 2, 2, 1, 1, 11, 11, 6, 4, 4, 1, 6, 1, 2, 1, 2, 12,
  919. 8, 1, 12, 7, 8, 7, 1, 16, 1, 16, 1, 3, 3, 13, 1, 13,
  920. 2, 2, 1, 15, 1, 5, 14, 15, 1, 5, 14, 1, 17, 8, 17, 8,
  921. 1, 4, 4, 2, 2, 1, 25, 25, 24, 24, 1, 3, 1, 3, 1, 8,
  922. 6, 7, 6, 1, 18, 8, 18, 1, 7, 23, 2, 2, 23, 1, 1, 21,
  923. 22, 9, 9, 22, 19, 1, 21, 5, 19, 5, 1, 33, 20, 33, 20, 8,
  924. 4, 4, 1, 32, 2, 2, 8, 3, 32, 26, 3, 1, 7, 7, 26, 6,
  925. 1, 6, 1, 1, 16, 1, 10, 1, 10, 2, 16, 29, 28, 2, 29, 28,
  926. 1, 27, 5, 8, 5, 27, 1, 8, 3, 7, 3, 31, 41, 31, 1, 41,
  927. 6, 1, 6, 7, 4, 4, 1, 1, 2, 1, 2, 11, 34, 30, 11, 1,
  928. 30, 15, 15, 34, 36, 40, 36, 40, 35, 35, 37, 37, 39, 39, 38, 38},
  929. /* value table */
  930. { 1, -1, 0, 2, -2, 0, 3, -3, 1, -1, 4, -4, 5, -5, 1, -1,
  931. 6, -6, 2, -2, 7, -7, 1, -1, 8, -8, 9, -9, 3, -3, 1, -1,
  932. 10, -10, 2, -2, 11, -11, 1, -1, 12, 4, -12, -4, 1, -1, 13, -13,
  933. 1, -1, 14, -14, 2, 5, 15, -2, -5, -15, -3, 3, 16, -16, 17, 1,
  934. -1, -17, 6, 18, -6, -18, 2, -2, 19, -19, 1, -1, 20, -20, 4, -4,
  935. 7, -7, 21, -21, 1, -1, 2, 3, -3, 22, -2, -22, 8, 23, -8, 1,
  936. 2, -23, -1, 2, -2, -2, 24, 1, -24, -1, 25, 5, -5, 1, -25, -1,
  937. 9, -9, 26, 1, -26, 3, 1, -1, 27, -3, -1, -27, 1, 3, -1, -3,
  938. 28, -4, 4, 10, -10, -28, 1, -1, 1, -1, 29, 6, -29, -6, 30, -4,
  939. 3, 3, -3, -30, 1, 4, -1, 31, -3, 1, 11, -11, -1, -31, 32, -1,
  940. -1, 2, -2, 1, 1, -32, 1, 4, -1, -4, 33, -1, 1, 1, -1, 5,
  941. 5, -5, -33, -1, -12, 12, -5, -7, 1, 1, 7, 34, 4, -4, -1, 4,
  942. -34, -4, 35, 36, -2, -35, -2, -36, 2, 13, 2, -1, 1, -13, 1, -1,
  943. 37, 1, -5, 6, 5, -1, 38, -6, -8, 5, 8, -1, 1, 1, -37, -1,
  944. 5, 39, -5, -5, 6, -6, -38, -39, -14, 40, 14, 2, 1, 1, -2, -40,
  945. -1, -2, 2, -1, -1, -1, 1, 1, 1, -1, 1, -1, 1, -1, 1, -1}
  946. },{
  947. /* MapTab1 */
  948. 0, /* eob_sym */
  949. 38, /* esc_sym */
  950. /* run table */
  951. {0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 8, 6, 8, 7,
  952. 7, 9, 9, 10, 10, 11, 11, 1, 12, 1, 12, 13, 13, 16, 14, 16,
  953. 14, 15, 15, 17, 17, 18, 0, 18, 19, 20, 21, 19, 22, 21, 20, 22,
  954. 25, 24, 2, 25, 24, 23, 23, 2, 26, 28, 26, 28, 29, 27, 29, 27,
  955. 33, 33, 1, 32, 1, 3, 32, 30, 36, 3, 36, 30, 31, 31, 35, 34,
  956. 37, 41, 34, 35, 37, 4, 41, 4, 49, 8, 8, 49, 40, 38, 5, 38,
  957. 40, 39, 5, 39, 42, 43, 42, 7, 57, 6, 43, 44, 6, 50, 7, 44,
  958. 57, 48, 50, 48, 45, 45, 46, 47, 51, 46, 47, 58, 1, 51, 58, 1,
  959. 52, 59, 53, 9, 52, 55, 55, 59, 53, 56, 54, 56, 54, 9, 64, 64,
  960. 60, 63, 60, 63, 61, 62, 61, 62, 2, 10, 2, 10, 11, 1, 11, 13,
  961. 12, 1, 12, 13, 16, 16, 8, 8, 14, 3, 3, 15, 14, 15, 4, 4,
  962. 1, 17, 17, 5, 1, 7, 7, 5, 6, 1, 2, 2, 6, 22, 1, 25,
  963. 21, 22, 8, 24, 1, 21, 25, 24, 8, 18, 18, 23, 9, 20, 23, 33,
  964. 29, 33, 20, 1, 19, 1, 29, 36, 9, 36, 19, 41, 28, 57, 32, 3,
  965. 28, 3, 1, 27, 49, 49, 1, 32, 26, 26, 2, 4, 4, 7, 57, 41,
  966. 2, 7, 10, 5, 37, 16, 10, 27, 8, 8, 13, 16, 37, 13, 1, 5},
  967. /* value table */
  968. {0, 1, -1, 1, -1, 1, -1, 1, -1, 1, -1, 1, 1, -1, -1, 1,
  969. -1, 1, -1, 1, -1, 1, -1, 2, 1, -2, -1, 1, -1, 1, 1, -1,
  970. -1, 1, -1, 1, -1, 1, 0, -1, 1, 1, 1, -1, 1, -1, -1, -1,
  971. 1, 1, 2, -1, -1, 1, -1, -2, 1, 1, -1, -1, 1, 1, -1, -1,
  972. 1, -1, 3, 1, -3, 2, -1, 1, 1, -2, -1, -1, -1, 1, 1, 1,
  973. 1, 1, -1, -1, -1, 2, -1, -2, 1, 2, -2, -1, 1, 1, 2, -1,
  974. -1, 1, -2, -1, 1, 1, -1, 2, 1, 2, -1, 1, -2, -1, -2, -1,
  975. -1, 1, 1, -1, 1, -1, 1, 1, 1, -1, -1, 1, 4, -1, -1, -4,
  976. 1, 1, 1, 2, -1, -1, 1, -1, -1, 1, -1, -1, 1, -2, 1, -1,
  977. 1, 1, -1, -1, 1, 1, -1, -1, 3, 2, -3, -2, 2, 5, -2, 2,
  978. 2, -5, -2, -2, -2, 2, -3, 3, 2, 3, -3, 2, -2, -2, 3, -3,
  979. 6, 2, -2, 3, -6, 3, -3, -3, 3, 7, -4, 4, -3, 2, -7, 2,
  980. 2, -2, -4, 2, 8, -2, -2, -2, 4, 2, -2, 2, 3, 2, -2, -2,
  981. 2, 2, -2, -8, -2, 9, -2, 2, -3, -2, 2, -2, 2, 2, 2, 4,
  982. -2, -4, 10, 2, 2, -2, -9, -2, 2, -2, 5, 4, -4, 4, -2, 2,
  983. -5, -4, -3, 4, 2, -3, 3, -2, -5, 5, 3, 3, -2, -3, -10, -4}
  984. },{
  985. /* MapTab2 */
  986. 2, /* eob_sym */
  987. 11, /* esc_sym */
  988. /* run table */
  989. {1, 1, 0, 2, 2, 1, 1, 3, 3, 4, 4, 0, 1, 1, 5, 5,
  990. 2, 2, 6, 6, 7, 7, 1, 8, 1, 8, 3, 3, 9, 9, 1, 2,
  991. 2, 1, 4, 10, 4, 10, 11, 11, 1, 5, 12, 12, 1, 5, 13, 13,
  992. 3, 3, 6, 6, 2, 2, 14, 14, 16, 16, 15, 7, 15, 8, 8, 7,
  993. 1, 1, 17, 17, 4, 4, 1, 1, 18, 18, 2, 2, 5, 5, 25, 3,
  994. 9, 3, 25, 9, 19, 24, 19, 24, 1, 21, 20, 1, 21, 22, 20, 22,
  995. 23, 23, 8, 6, 33, 6, 8, 33, 7, 7, 26, 26, 1, 32, 1, 32,
  996. 28, 4, 28, 10, 29, 27, 27, 10, 41, 4, 29, 2, 2, 41, 36, 31,
  997. 49, 31, 34, 30, 34, 36, 30, 35, 1, 49, 11, 5, 35, 11, 1, 3,
  998. 3, 5, 37, 37, 8, 40, 8, 40, 12, 12, 42, 42, 1, 38, 16, 57,
  999. 1, 6, 16, 39, 38, 6, 7, 7, 13, 13, 39, 43, 2, 43, 57, 2,
  1000. 50, 9, 44, 9, 50, 4, 15, 48, 44, 4, 1, 15, 48, 14, 14, 1,
  1001. 45, 45, 8, 3, 5, 8, 51, 47, 3, 46, 46, 47, 5, 51, 1, 17,
  1002. 17, 58, 1, 58, 2, 52, 52, 2, 53, 7, 59, 6, 6, 56, 53, 55,
  1003. 7, 55, 1, 54, 59, 56, 54, 10, 1, 10, 4, 60, 1, 60, 8, 4,
  1004. 8, 64, 64, 61, 1, 63, 3, 63, 62, 61, 5, 11, 5, 3, 11, 62},
  1005. /* value table */
  1006. { 1, -1, 0, 1, -1, 2, -2, 1, -1, 1, -1, 0, 3, -3, 1, -1,
  1007. 2, -2, 1, -1, 1, -1, 4, 1, -4, -1, 2, -2, 1, -1, 5, 3,
  1008. -3, -5, 2, 1, -2, -1, 1, -1, 6, 2, 1, -1, -6, -2, 1, -1,
  1009. 3, -3, 2, -2, 4, -4, 1, -1, 1, -1, 1, 2, -1, 2, -2, -2,
  1010. 7, -7, 1, -1, 3, -3, 8, -8, 1, -1, 5, -5, 3, -3, 1, 4,
  1011. 2, -4, -1, -2, 1, 1, -1, -1, 9, 1, 1, -9, -1, 1, -1, -1,
  1012. 1, -1, 3, -3, 1, 3, -3, -1, 3, -3, 1, -1, 10, 1, -10, -1,
  1013. 1, 4, -1, 2, 1, -1, 1, -2, 1, -4, -1, 6, -6, -1, 1, 1,
  1014. 1, -1, 1, 1, -1, -1, -1, 1, 11, -1, -2, 4, -1, 2, -11, 5,
  1015. -5, -4, -1, 1, 4, 1, -4, -1, -2, 2, 1, -1, 12, 1, -2, 1,
  1016. -12, 4, 2, 1, -1, -4, 4, -4, 2, -2, -1, 1, 7, -1, -1, -7,
  1017. -1, -3, 1, 3, 1, 5, 2, 1, -1, -5, 13, -2, -1, 2, -2, -13,
  1018. 1, -1, 5, 6, 5, -5, 1, 1, -6, 1, -1, -1, -5, -1, 14, 2,
  1019. -2, 1, -14, -1, 8, 1, -1, -8, 1, 5, 1, 5, -5, 1, -1, 1,
  1020. -5, -1, 15, 1, -1, -1, -1, 3, -15, -3, 6, 1, 16, -1, 6, -6,
  1021. -6, 1, -1, 1, -16, 1, 7, -1, 1, -1, -6, -3, 6, -7, 3, -1}
  1022. },{
  1023. /* MapTab3 */
  1024. 0, /* eob_sym */
  1025. 35, /* esc_sym */
  1026. /* run table */
  1027. {0, 1, 1, 2, 2, 3, 3, 4, 4, 1, 1, 5, 5, 6, 6, 7,
  1028. 7, 8, 8, 9, 9, 2, 2, 10, 10, 1, 1, 11, 11, 12, 12, 3,
  1029. 3, 13, 13, 0, 14, 14, 16, 15, 16, 15, 4, 4, 17, 1, 17, 1,
  1030. 5, 5, 18, 18, 2, 2, 6, 6, 8, 19, 7, 8, 7, 19, 20, 20,
  1031. 21, 21, 22, 24, 22, 24, 23, 23, 1, 1, 25, 25, 3, 3, 26, 26,
  1032. 9, 9, 27, 27, 28, 28, 33, 29, 4, 33, 29, 1, 4, 1, 32, 32,
  1033. 2, 2, 31, 10, 30, 10, 30, 31, 34, 34, 5, 5, 36, 36, 35, 41,
  1034. 35, 11, 41, 11, 37, 1, 8, 8, 37, 6, 1, 6, 40, 7, 7, 40,
  1035. 12, 38, 12, 39, 39, 38, 49, 13, 49, 13, 3, 42, 3, 42, 16, 16,
  1036. 43, 43, 14, 14, 1, 1, 44, 15, 44, 15, 2, 2, 57, 48, 50, 48,
  1037. 57, 50, 4, 45, 45, 4, 46, 47, 47, 46, 1, 51, 1, 17, 17, 51,
  1038. 8, 9, 9, 5, 58, 8, 58, 5, 52, 52, 55, 56, 53, 56, 55, 59,
  1039. 59, 53, 54, 1, 6, 54, 7, 7, 6, 1, 2, 3, 2, 3, 64, 60,
  1040. 60, 10, 10, 64, 61, 62, 61, 63, 1, 63, 62, 1, 18, 24, 18, 4,
  1041. 25, 4, 8, 21, 21, 1, 24, 22, 25, 22, 8, 11, 19, 11, 23, 1,
  1042. 20, 23, 19, 20, 5, 12, 5, 1, 16, 2, 12, 13, 2, 13, 1, 16},
  1043. /* value table */
  1044. { 0, 1, -1, 1, -1, 1, -1, 1, -1, 2, -2, 1, -1, 1, -1, 1,
  1045. -1, 1, -1, 1, -1, 2, -2, 1, -1, 3, -3, 1, -1, 1, -1, 2,
  1046. -2, 1, -1, 0, 1, -1, 1, 1, -1, -1, 2, -2, 1, 4, -1, -4,
  1047. 2, -2, 1, -1, -3, 3, 2, -2, 2, 1, 2, -2, -2, -1, 1, -1,
  1048. 1, -1, 1, 1, -1, -1, 1, -1, 5, -5, 1, -1, 3, -3, 1, -1,
  1049. 2, -2, 1, -1, 1, -1, 1, 1, 3, -1, -1, 6, -3, -6, -1, 1,
  1050. 4, -4, 1, 2, 1, -2, -1, -1, 1, -1, 3, -3, 1, -1, 1, 1,
  1051. -1, 2, -1, -2, 1, 7, -3, 3, -1, 3, -7, -3, 1, -3, 3, -1,
  1052. 2, 1, -2, 1, -1, -1, 1, 2, -1, -2, -4, -1, 4, 1, 2, -2,
  1053. 1, -1, -2, 2, 8, -8, -1, 2, 1, -2, -5, 5, 1, -1, -1, 1,
  1054. -1, 1, 4, -1, 1, -4, -1, -1, 1, 1, 9, 1, -9, 2, -2, -1,
  1055. -4, 3, -3, -4, -1, 4, 1, 4, 1, -1, 1, -1, 1, 1, -1, 1,
  1056. -1, -1, -1, 10, 4, 1, 4, -4, -4, -10, 6, 5, -6, -5, 1, -1,
  1057. 1, 3, -3, -1, 1, -1, -1, -1, 11, 1, 1, -11, -2, -2, 2, 5,
  1058. -2, -5, -5, 2, -2, 12, 2, -2, 2, 2, 5, -3, -2, 3, -2, -12,
  1059. -2, 2, 2, 2, -5, 3, 5, 13, -3, 7, -3, -3, -7, 3, -13, 3}
  1060. },{
  1061. /* MapTab4 */
  1062. 0, /* eob_sym */
  1063. 34, /* esc_sym */
  1064. /* run table */
  1065. {0, 1, 1, 1, 2, 2, 1, 3, 3, 1, 1, 1, 4, 4, 1, 5,
  1066. 2, 1, 5, 2, 1, 1, 6, 6, 1, 1, 1, 1, 1, 7, 3, 1,
  1067. 2, 3, 0, 1, 2, 7, 1, 1, 1, 8, 1, 1, 8, 1, 1, 1,
  1068. 9, 1, 9, 1, 2, 1, 1, 2, 1, 1, 10, 4, 1, 10, 1, 4,
  1069. 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 2, 1, 5, 1, 1, 1,
  1070. 2, 5, 1, 11, 1, 11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1071. 2, 1, 6, 1, 6, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 12,
  1072. 3, 1, 12, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1,
  1073. 4, 1, 1, 1, 2, 1, 1, 4, 1, 1, 1, 1, 1, 1, 2, 1,
  1074. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 2, 1, 1, 5,
  1075. 1, 1, 1, 1, 1, 7, 1, 7, 1, 1, 2, 3, 1, 1, 1, 1,
  1076. 5, 1, 1, 1, 1, 1, 1, 2, 13, 1, 1, 1, 1, 1, 1, 1,
  1077. 1, 1, 1, 1, 1, 1, 1, 1, 13, 2, 1, 1, 4, 1, 1, 1,
  1078. 3, 1, 6, 1, 1, 1, 14, 1, 1, 1, 1, 1, 14, 6, 1, 1,
  1079. 1, 1, 15, 2, 4, 1, 2, 3, 15, 1, 1, 1, 8, 1, 1, 8,
  1080. 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1},
  1081. /* value table */
  1082. { 0, 1, -1, 2, 1, -1, -2, 1, -1, 3, -3, 4, 1, -1, -4, 1,
  1083. 2, 5, -1, -2, -5, 6, 1, -1, -6, 7, -7, 8, -8, 1, 2, 9,
  1084. 3, -2, 0, -9, -3, -1, 10, -10, 11, 1, -11, 12, -1, -12, 13, -13,
  1085. 1, 14, -1, -14, 4, 15, -15, -4, 16, -16, 1, 2, 17, -1, -17, -2,
  1086. 18, -18, 19, -19, 20, 3, -20, 21, -21, -3, 5, 22, 2, -22, -23, 23,
  1087. -5, -2, 24, 1, -24, -1, 25, -25, 26, -26, -27, 27, 28, 29, -28, -29,
  1088. 6, 30, 2, -31, -2, -30, 31, -6, -32, 32, 33, -33, 34, -35, -34, 1,
  1089. 4, -36, -1, 35, 37, 36, 7, -37, 38, -4, -38, 39, 41, 40, -40, -39,
  1090. 3, 42, -43, -41, -7, -42, 43, -3, 44, -44, 45, -45, 46, 47, 8, -47,
  1091. -48, -46, 50, -50, 48, 49, 51, -49, 52, -52, 5, -51, -8, -53, 53, 3,
  1092. -56, 56, 55, 54, -54, 2, 60, -2, -55, 58, 9, -5, 59, 57, -57, -63,
  1093. -3, -58, -60, -61, 61, -59, -62, -9, 1, 64, 62, 69, -64, 63, 65, -67,
  1094. -68, 66, -65, 68, -66, -69, 67, -70, -1, 10, 71, -71, 4, 73, 72, 70,
  1095. 6, -76, -3, 74, -78, -74, 1, 78, 80, -72, -75, 76, -1, 3, -73, 79,
  1096. 75, 77, 1, 11, -4, -79, -10, -6, -1, -77, -83, -80, 2, 81, -84, -2,
  1097. 83, -81, 82, -82, 84, -87, -86, 85, -11, -85, 86, -89, 87, -88, 88, 89}
  1098. },{
  1099. /* MapTab5 */
  1100. 2, /* eob_sym */
  1101. 33, /* esc_sym */
  1102. /* run table */
  1103. {1, 1, 0, 2, 1, 2, 1, 3, 3, 1, 1, 4, 4, 2, 2, 1,
  1104. 1, 5, 5, 6, 1, 6, 1, 7, 7, 3, 3, 2, 8, 2, 8, 1,
  1105. 1, 0, 9, 9, 1, 1, 10, 4, 10, 4, 11, 11, 2, 1, 2, 1,
  1106. 12, 12, 3, 3, 1, 1, 13, 5, 5, 13, 14, 1, 1, 14, 2, 2,
  1107. 6, 6, 15, 1, 1, 15, 16, 4, 7, 16, 4, 7, 1, 1, 3, 3,
  1108. 8, 8, 2, 2, 1, 1, 17, 17, 1, 1, 18, 18, 5, 5, 2, 2,
  1109. 1, 1, 9, 19, 9, 19, 20, 3, 3, 20, 1, 10, 21, 1, 10, 4,
  1110. 4, 21, 22, 6, 6, 22, 1, 1, 23, 24, 2, 2, 23, 24, 11, 1,
  1111. 1, 11, 7, 25, 7, 1, 1, 25, 8, 8, 3, 26, 3, 1, 12, 2,
  1112. 2, 26, 1, 12, 5, 5, 27, 4, 1, 4, 1, 27, 28, 1, 28, 13,
  1113. 1, 13, 2, 29, 2, 1, 32, 6, 1, 30, 14, 29, 14, 6, 3, 31,
  1114. 3, 1, 30, 1, 32, 31, 33, 9, 33, 1, 1, 7, 9, 7, 2, 2,
  1115. 1, 1, 4, 36, 34, 4, 5, 10, 10, 5, 34, 1, 1, 35, 8, 8,
  1116. 36, 3, 35, 1, 15, 3, 2, 1, 16, 15, 16, 2, 37, 1, 37, 1,
  1117. 1, 1, 6, 6, 38, 1, 38, 11, 1, 39, 39, 40, 11, 2, 41, 4,
  1118. 40, 1, 2, 4, 1, 1, 1, 41, 3, 1, 3, 1, 5, 7, 5, 7},
  1119. /* value table */
  1120. { 1, -1, 0, 1, 2, -1, -2, 1, -1, 3, -3, 1, -1, 2, -2, 4,
  1121. -4, 1, -1, 1, 5, -1, -5, 1, -1, 2, -2, 3, 1, -3, -1, 6,
  1122. -6, 0, 1, -1, 7, -7, 1, 2, -1, -2, 1, -1, 4, 8, -4, -8,
  1123. 1, -1, 3, -3, 9, -9, 1, 2, -2, -1, 1, 10, -10, -1, 5, -5,
  1124. 2, -2, 1, 11, -11, -1, 1, 3, 2, -1, -3, -2, 12, -12, 4, -4,
  1125. 2, -2, -6, 6, 13, -13, 1, -1, 14, -14, 1, -1, 3, -3, 7, -7,
  1126. 15, -15, 2, 1, -2, -1, 1, 5, -5, -1, -16, 2, 1, 16, -2, 4,
  1127. -4, -1, 1, 3, -3, -1, 17, -17, 1, 1, -8, 8, -1, -1, 2, 18,
  1128. -18, -2, 3, 1, -3, 19, -19, -1, 3, -3, 6, 1, -6, 20, 2, 9,
  1129. -9, -1, -20, -2, 4, -4, 1, -5, 21, 5, -21, -1, 1, -22, -1, 2,
  1130. 22, -2, 10, 1, -10, 23, 1, 4, -23, 1, 2, -1, -2, -4, -7, 1,
  1131. 7, -24, -1, 24, -1, -1, 1, 3, -1, -25, 25, 4, -3, -4, 11, -11,
  1132. 26, -26, 6, 1, 1, -6, -5, -3, 3, 5, -1, -27, 27, 1, 4, -4,
  1133. -1, -8, -1, 28, 2, 8, -12, -28, -2, -2, 2, 12, -1, 29, 1, -29,
  1134. 30, -30, 5, -5, 1, -31, -1, 3, 31, -1, 1, 1, -3, -13, 1, -7,
  1135. -1, -32, 13, 7, 32, 33, -33, -1, -9, -34, 9, 34, -6, 5, 6, -5}
  1136. },{
  1137. /* MapTab6 */
  1138. 2, /* eob_sym */
  1139. 13, /* esc_sym */
  1140. /* run table */
  1141. {1, 1, 0, 1, 1, 2, 2, 1, 1, 3, 3, 1, 1, 0, 2, 2,
  1142. 4, 1, 4, 1, 1, 1, 5, 5, 1, 1, 6, 6, 2, 2, 1, 1,
  1143. 3, 3, 7, 7, 1, 1, 8, 8, 1, 1, 2, 2, 1, 9, 1, 9,
  1144. 4, 4, 10, 1, 1, 10, 1, 1, 11, 11, 3, 3, 1, 2, 1, 2,
  1145. 1, 1, 12, 12, 5, 5, 1, 1, 13, 1, 1, 13, 2, 2, 1, 1,
  1146. 6, 6, 1, 1, 4, 14, 4, 14, 3, 1, 3, 1, 1, 1, 15, 7,
  1147. 15, 2, 2, 7, 1, 1, 1, 8, 1, 8, 16, 16, 1, 1, 1, 1,
  1148. 2, 1, 1, 2, 1, 1, 3, 5, 5, 3, 4, 1, 1, 4, 1, 1,
  1149. 17, 17, 9, 1, 1, 9, 2, 2, 1, 1, 10, 10, 1, 6, 1, 1,
  1150. 6, 18, 1, 1, 18, 1, 1, 1, 2, 2, 3, 1, 3, 1, 1, 1,
  1151. 4, 1, 19, 1, 19, 7, 1, 1, 20, 1, 4, 20, 1, 7, 11, 2,
  1152. 1, 11, 21, 2, 8, 5, 1, 8, 1, 5, 21, 1, 1, 1, 22, 1,
  1153. 1, 22, 1, 1, 3, 3, 1, 23, 2, 12, 24, 1, 1, 2, 1, 1,
  1154. 12, 23, 1, 1, 24, 1, 1, 1, 4, 1, 1, 1, 2, 1, 6, 6,
  1155. 4, 2, 1, 1, 1, 1, 1, 1, 1, 14, 13, 3, 1, 25, 9, 25,
  1156. 14, 1, 9, 3, 13, 1, 1, 1, 1, 1, 10, 1, 1, 2, 10, 2},
  1157. /* value table */
  1158. {-20, -1, 0, 2, -2, 1, -1, 3, -3, 1, -1, 4, -4, 0, 2, -2,
  1159. 1, 5, -1, -5, 6, -6, 1, -1, 7, -7, 1, -1, 3, -3, 8, -8,
  1160. 2, -2, 1, -1, 9, -9, 1, -1, 10, -10, 4, -4, 11, 1, -11, -1,
  1161. 2, -2, 1, 12, -12, -1, 13, -13, 1, -1, 3, -3, 14, 5, -14, -5,
  1162. -15, 15, -1, 1, 2, -2, 16, -16, 1, 17, -17, -1, 6, -6, 18, -18,
  1163. 2, -2, -19, 19, -3, 1, 3, -1, 4, 20, -4, 1, -21, 21, 1, 2,
  1164. -1, -7, 7, -2, 22, -22, 23, 2, -23, -2, 1, -1, -24, 24, -25, 25,
  1165. -8, -26, 26, 8, -27, 27, 5, 3, -3, -5, -4, 28, -28, 4, 29, -29,
  1166. 1, -1, -2, -30, 30, 2, 9, -9, -31, 31, 2, -2, -32, 3, 32, -33,
  1167. -3, 1, 33, -34, -1, 34, -35, 35, -10, 10, -6, 36, 6, -36, 37, -37,
  1168. -5, 38, 1, -38, -1, 3, 39, -39, -1, 40, 5, 1, -40, -3, 2, -11,
  1169. -41, -2, 1, 11, -3, -4, 41, 3, 42, 4, -1, -43, -42, 43, 1, -44,
  1170. 45, -1, 44, -45, -7, 7, -46, 1, -12, 2, 1, -47, 46, 12, 47, 48,
  1171. -2, -1, -48, 49, -1, -50, -49, 50, -6, -51, 51, 52, -13, 53, -4, 4,
  1172. 6, 13, -53, -52, -54, 55, 54, -55, -56, -2, 2, -8, 56, 1, -3, -1,
  1173. 2, 58, 3, 8, -2, 57, -58, -60, -59, -57, -3, 60, 59, -14, 3, 14}
  1174. },{
  1175. /* MapTab7 */
  1176. 2, /* eob_sym */
  1177. 38, /* esc_sym */
  1178. /* run table */
  1179. {1, 1, 0, 2, 2, 1, 1, 3, 3, 4, 4, 5, 5, 1, 1, 6,
  1180. 6, 2, 2, 7, 7, 8, 8, 1, 1, 3, 3, 9, 9, 10, 10, 1,
  1181. 1, 2, 2, 4, 4, 11, 0, 11, 12, 12, 13, 13, 1, 1, 5, 5,
  1182. 14, 14, 15, 16, 15, 16, 3, 3, 1, 6, 1, 6, 2, 2, 7, 7,
  1183. 8, 8, 17, 17, 1, 1, 4, 4, 18, 18, 2, 2, 1, 19, 1, 20,
  1184. 19, 20, 21, 21, 3, 3, 22, 22, 5, 5, 24, 1, 1, 23, 9, 23,
  1185. 24, 9, 2, 2, 10, 1, 1, 10, 6, 6, 25, 4, 4, 25, 7, 7,
  1186. 26, 8, 1, 8, 3, 1, 26, 3, 11, 11, 27, 27, 2, 28, 1, 2,
  1187. 28, 1, 12, 12, 5, 5, 29, 13, 13, 29, 32, 1, 1, 33, 31, 30,
  1188. 32, 4, 30, 33, 4, 31, 3, 14, 1, 1, 3, 34, 34, 2, 2, 14,
  1189. 6, 6, 35, 36, 35, 36, 1, 15, 1, 16, 16, 15, 7, 9, 7, 9,
  1190. 37, 8, 8, 37, 1, 1, 39, 2, 38, 39, 2, 40, 5, 38, 40, 5,
  1191. 3, 3, 4, 4, 10, 10, 1, 1, 1, 1, 41, 2, 41, 2, 6, 6,
  1192. 1, 1, 11, 42, 11, 43, 3, 42, 3, 17, 4, 43, 1, 17, 7, 1,
  1193. 8, 44, 4, 7, 44, 5, 8, 2, 5, 1, 2, 48, 45, 1, 12, 45,
  1194. 12, 48, 13, 13, 1, 9, 9, 46, 1, 46, 47, 47, 49, 18, 18, 49},
  1195. /* value table */
  1196. { 1, -1, 0, 1, -1, 2, -2, 1, -1, 1, -1, 1, -1, 3, -3, 1,
  1197. -1, -2, 2, 1, -1, 1, -1, 4, -4, -2, 2, 1, -1, 1, -1, 5,
  1198. -5, -3, 3, 2, -2, 1, 0, -1, 1, -1, 1, -1, 6, -6, 2, -2,
  1199. 1, -1, 1, 1, -1, -1, -3, 3, 7, 2, -7, -2, -4, 4, 2, -2,
  1200. 2, -2, 1, -1, 8, -8, 3, -3, 1, -1, -5, 5, 9, 1, -9, 1,
  1201. -1, -1, 1, -1, -4, 4, 1, -1, 3, -3, 1, -10, 10, 1, 2, -1,
  1202. -1, -2, 6, -6, 2, 11, -11, -2, 3, -3, 1, -4, 4, -1, 3, -3,
  1203. 1, 3, 12, -3, -5, -12, -1, 5, 2, -2, 1, -1, -7, 1, 13, 7,
  1204. -1, -13, 2, -2, 4, -4, 1, 2, -2, -1, 1, 14, -14, 1, 1, 1,
  1205. -1, -5, -1, -1, 5, -1, -6, 2, -15, 15, 6, 1, -1, -8, 8, -2,
  1206. -4, 4, 1, 1, -1, -1, 16, 2, -16, -2, 2, -2, 4, 3, -4, -3,
  1207. -1, -4, 4, 1, -17, 17, -1, -9, 1, 1, 9, 1, -5, -1, -1, 5,
  1208. -7, 7, 6, -6, 3, -3, 18, -18, 19, -19, 1, -10, -1, 10, -5, 5,
  1209. 20, -20, -3, 1, 3, 1, 8, -1, -8, 2, 7, -1, -21, -2, 5, 21,
  1210. 5, -1, -7, -5, 1, -6, -5, -11, 6, 22, 11, 1, 1, -22, -3, -1,
  1211. 3, -1, 3, -3, -23, 4, -4, 1, 23, -1, 1, -1, 1, -2, 2, -1}
  1212. },{
  1213. /* MapTab8 */
  1214. 4, /* eob_sym */
  1215. 11, /* esc_sym */
  1216. /* run table */
  1217. {1, 1, 1, 1, 0, 2, 2, 1, 1, 3, 3, 0, 1, 1, 2, 2,
  1218. 4, 4, 1, 1, 5, 5, 1, 1, 2, 2, 3, 3, 6, 6, 1, 1,
  1219. 7, 7, 8, 1, 8, 2, 2, 1, 4, 4, 1, 3, 1, 3, 9, 9,
  1220. 2, 2, 1, 5, 1, 5, 10, 10, 1, 1, 11, 11, 3, 6, 3, 4,
  1221. 4, 6, 2, 2, 1, 12, 1, 12, 7, 13, 7, 13, 1, 1, 8, 8,
  1222. 2, 2, 14, 14, 16, 15, 16, 5, 5, 1, 3, 15, 1, 3, 4, 4,
  1223. 1, 1, 17, 17, 2, 2, 6, 6, 1, 18, 1, 18, 22, 21, 22, 21,
  1224. 25, 24, 25, 19, 9, 20, 9, 23, 19, 24, 20, 3, 23, 7, 3, 1,
  1225. 1, 7, 28, 26, 29, 5, 28, 26, 5, 8, 29, 4, 8, 27, 2, 2,
  1226. 4, 27, 1, 1, 10, 36, 10, 33, 33, 36, 30, 1, 32, 32, 1, 30,
  1227. 6, 31, 31, 35, 3, 6, 11, 11, 3, 2, 35, 2, 34, 1, 34, 1,
  1228. 37, 37, 12, 7, 12, 5, 41, 5, 4, 7, 1, 8, 13, 4, 1, 41,
  1229. 13, 38, 8, 38, 9, 1, 40, 40, 9, 1, 39, 2, 2, 49, 39, 42,
  1230. 3, 3, 14, 16, 49, 14, 16, 42, 43, 43, 6, 6, 15, 1, 1, 15,
  1231. 44, 44, 1, 1, 50, 48, 4, 5, 4, 7, 5, 2, 10, 10, 48, 7,
  1232. 50, 45, 2, 1, 45, 8, 8, 1, 46, 46, 3, 47, 47, 3, 1, 1},
  1233. /* value table */
  1234. { 1, -1, 2, -2, 0, 1, -1, 3, -3, 1, -1, 0, 4, -4, 2, -2,
  1235. 1, -1, 5, -5, 1, -1, 6, -6, 3, -3, 2, -2, 1, -1, 7, -7,
  1236. 1, -1, 1, 8, -1, 4, -4, -8, 2, -2, 9, 3, -9, -3, 1, -1,
  1237. 5, -5, 10, 2, -10, -2, 1, -1, 11, -11, 1, -1, -4, 2, 4, 3,
  1238. -3, -2, 6, -6, 12, 1, -12, -1, 2, 1, -2, -1, 13, -13, 2, -2,
  1239. 7, -7, 1, -1, 1, 1, -1, 3, -3, 14, 5, -1, -14, -5, 4, -4,
  1240. 15, -15, 1, -1, 8, -8, -3, 3, 16, 1, -16, -1, 1, 1, -1, -1,
  1241. 1, 1, -1, 1, 2, 1, -2, 1, -1, -1, -1, 6, -1, 3, -6, 17,
  1242. -17, -3, 1, 1, 1, 4, -1, -1, -4, 3, -1, 5, -3, -1, -9, 9,
  1243. -5, 1, 18, -18, 2, 1, -2, 1, -1, -1, 1, 19, -1, 1, -19, -1,
  1244. 4, 1, -1, 1, 7, -4, -2, 2, -7, 10, -1, -10, 1, 20, -1, -20,
  1245. 1, -1, 2, 4, -2, 5, 1, -5, 6, -4, 21, 4, 2, -6, -21, -1,
  1246. -2, 1, -4, -1, -3, 22, -1, 1, 3, -22, -1, 11, -11, 1, 1, 1,
  1247. 8, -8, 2, 2, -1, -2, -2, -1, 1, -1, -5, 5, 2, 23, -23, -2,
  1248. 1, -1, 24, -24, -1, -1, 7, 6, -7, 5, -6, 12, -3, 3, 1, -5,
  1249. 1, 1, -12, 25, -1, -5, 5, -25, -1, 1, 9, 1, -1, -9, 26, -26}
  1250. }
  1251. };