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.

537 lines
15KB

  1. /*
  2. * Wing Commander/Xan Video Decoder
  3. * Copyright (C) 2003 the ffmpeg project
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * Xan video decoder for Wing Commander III computer game
  24. * by Mario Brito (mbrito@student.dei.uc.pt)
  25. * and Mike Melanson (melanson@pcisys.net)
  26. *
  27. * The xan_wc3 decoder outputs PAL8 data.
  28. */
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <string.h>
  32. #include "libavutil/intreadwrite.h"
  33. #include "avcodec.h"
  34. #include "bytestream.h"
  35. #define ALT_BITSTREAM_READER_LE
  36. #include "get_bits.h"
  37. // for av_memcpy_backptr
  38. #include "libavutil/lzo.h"
  39. #define VGA__TAG MKTAG('V', 'G', 'A', ' ')
  40. #define PALT_TAG MKTAG('P', 'A', 'L', 'T')
  41. #define SHOT_TAG MKTAG('S', 'H', 'O', 'T')
  42. #define PALETTE_COUNT 256
  43. #define PALETTE_SIZE (PALETTE_COUNT * 3)
  44. #define PALETTES_MAX 256
  45. typedef struct XanContext {
  46. AVCodecContext *avctx;
  47. AVFrame last_frame;
  48. AVFrame current_frame;
  49. const unsigned char *buf;
  50. int size;
  51. /* scratch space */
  52. unsigned char *buffer1;
  53. int buffer1_size;
  54. unsigned char *buffer2;
  55. int buffer2_size;
  56. unsigned *palettes;
  57. int palettes_count;
  58. int cur_palette;
  59. int frame_size;
  60. } XanContext;
  61. static av_cold int xan_decode_init(AVCodecContext *avctx)
  62. {
  63. XanContext *s = avctx->priv_data;
  64. s->avctx = avctx;
  65. s->frame_size = 0;
  66. avctx->pix_fmt = PIX_FMT_PAL8;
  67. s->buffer1_size = avctx->width * avctx->height;
  68. s->buffer1 = av_malloc(s->buffer1_size);
  69. if (!s->buffer1)
  70. return AVERROR(ENOMEM);
  71. s->buffer2_size = avctx->width * avctx->height;
  72. s->buffer2 = av_malloc(s->buffer2_size + 130);
  73. if (!s->buffer2) {
  74. av_freep(&s->buffer1);
  75. return AVERROR(ENOMEM);
  76. }
  77. return 0;
  78. }
  79. static int xan_huffman_decode(unsigned char *dest, const unsigned char *src,
  80. int dest_len)
  81. {
  82. unsigned char byte = *src++;
  83. unsigned char ival = byte + 0x16;
  84. const unsigned char * ptr = src + byte*2;
  85. unsigned char val = ival;
  86. unsigned char *dest_end = dest + dest_len;
  87. GetBitContext gb;
  88. init_get_bits(&gb, ptr, 0); // FIXME: no src size available
  89. while ( val != 0x16 ) {
  90. val = src[val - 0x17 + get_bits1(&gb) * byte];
  91. if ( val < 0x16 ) {
  92. if (dest >= dest_end)
  93. return 0;
  94. *dest++ = val;
  95. val = ival;
  96. }
  97. }
  98. return 0;
  99. }
  100. /**
  101. * unpack simple compression
  102. *
  103. * @param dest destination buffer of dest_len, must be padded with at least 130 bytes
  104. */
  105. static void xan_unpack(unsigned char *dest, const unsigned char *src, int dest_len)
  106. {
  107. unsigned char opcode;
  108. int size;
  109. unsigned char *dest_end = dest + dest_len;
  110. while (dest < dest_end) {
  111. opcode = *src++;
  112. if (opcode < 0xe0) {
  113. int size2, back;
  114. if ( (opcode & 0x80) == 0 ) {
  115. size = opcode & 3;
  116. back = ((opcode & 0x60) << 3) + *src++ + 1;
  117. size2 = ((opcode & 0x1c) >> 2) + 3;
  118. } else if ( (opcode & 0x40) == 0 ) {
  119. size = *src >> 6;
  120. back = (bytestream_get_be16(&src) & 0x3fff) + 1;
  121. size2 = (opcode & 0x3f) + 4;
  122. } else {
  123. size = opcode & 3;
  124. back = ((opcode & 0x10) << 12) + bytestream_get_be16(&src) + 1;
  125. size2 = ((opcode & 0x0c) << 6) + *src++ + 5;
  126. if (size + size2 > dest_end - dest)
  127. return;
  128. }
  129. memcpy(dest, src, size); dest += size; src += size;
  130. av_memcpy_backptr(dest, back, size2);
  131. dest += size2;
  132. } else {
  133. int finish = opcode >= 0xfc;
  134. size = finish ? opcode & 3 : ((opcode & 0x1f) << 2) + 4;
  135. memcpy(dest, src, size); dest += size; src += size;
  136. if (finish)
  137. return;
  138. }
  139. }
  140. }
  141. static inline void xan_wc3_output_pixel_run(XanContext *s,
  142. const unsigned char *pixel_buffer, int x, int y, int pixel_count)
  143. {
  144. int stride;
  145. int line_inc;
  146. int index;
  147. int current_x;
  148. int width = s->avctx->width;
  149. unsigned char *palette_plane;
  150. palette_plane = s->current_frame.data[0];
  151. stride = s->current_frame.linesize[0];
  152. line_inc = stride - width;
  153. index = y * stride + x;
  154. current_x = x;
  155. while(pixel_count && (index < s->frame_size)) {
  156. int count = FFMIN(pixel_count, width - current_x);
  157. memcpy(palette_plane + index, pixel_buffer, count);
  158. pixel_count -= count;
  159. index += count;
  160. pixel_buffer += count;
  161. current_x += count;
  162. if (current_x >= width) {
  163. index += line_inc;
  164. current_x = 0;
  165. }
  166. }
  167. }
  168. static inline void xan_wc3_copy_pixel_run(XanContext *s,
  169. int x, int y, int pixel_count, int motion_x, int motion_y)
  170. {
  171. int stride;
  172. int line_inc;
  173. int curframe_index, prevframe_index;
  174. int curframe_x, prevframe_x;
  175. int width = s->avctx->width;
  176. unsigned char *palette_plane, *prev_palette_plane;
  177. palette_plane = s->current_frame.data[0];
  178. prev_palette_plane = s->last_frame.data[0];
  179. stride = s->current_frame.linesize[0];
  180. line_inc = stride - width;
  181. curframe_index = y * stride + x;
  182. curframe_x = x;
  183. prevframe_index = (y + motion_y) * stride + x + motion_x;
  184. prevframe_x = x + motion_x;
  185. while(pixel_count && (curframe_index < s->frame_size)) {
  186. int count = FFMIN3(pixel_count, width - curframe_x, width - prevframe_x);
  187. memcpy(palette_plane + curframe_index, prev_palette_plane + prevframe_index, count);
  188. pixel_count -= count;
  189. curframe_index += count;
  190. prevframe_index += count;
  191. curframe_x += count;
  192. prevframe_x += count;
  193. if (curframe_x >= width) {
  194. curframe_index += line_inc;
  195. curframe_x = 0;
  196. }
  197. if (prevframe_x >= width) {
  198. prevframe_index += line_inc;
  199. prevframe_x = 0;
  200. }
  201. }
  202. }
  203. static void xan_wc3_decode_frame(XanContext *s) {
  204. int width = s->avctx->width;
  205. int height = s->avctx->height;
  206. int total_pixels = width * height;
  207. unsigned char opcode;
  208. unsigned char flag = 0;
  209. int size = 0;
  210. int motion_x, motion_y;
  211. int x, y;
  212. unsigned char *opcode_buffer = s->buffer1;
  213. int opcode_buffer_size = s->buffer1_size;
  214. const unsigned char *imagedata_buffer = s->buffer2;
  215. /* pointers to segments inside the compressed chunk */
  216. const unsigned char *huffman_segment;
  217. const unsigned char *size_segment;
  218. const unsigned char *vector_segment;
  219. const unsigned char *imagedata_segment;
  220. huffman_segment = s->buf + AV_RL16(&s->buf[0]);
  221. size_segment = s->buf + AV_RL16(&s->buf[2]);
  222. vector_segment = s->buf + AV_RL16(&s->buf[4]);
  223. imagedata_segment = s->buf + AV_RL16(&s->buf[6]);
  224. xan_huffman_decode(opcode_buffer, huffman_segment, opcode_buffer_size);
  225. if (imagedata_segment[0] == 2)
  226. xan_unpack(s->buffer2, &imagedata_segment[1], s->buffer2_size);
  227. else
  228. imagedata_buffer = &imagedata_segment[1];
  229. /* use the decoded data segments to build the frame */
  230. x = y = 0;
  231. while (total_pixels) {
  232. opcode = *opcode_buffer++;
  233. size = 0;
  234. switch (opcode) {
  235. case 0:
  236. flag ^= 1;
  237. continue;
  238. case 1:
  239. case 2:
  240. case 3:
  241. case 4:
  242. case 5:
  243. case 6:
  244. case 7:
  245. case 8:
  246. size = opcode;
  247. break;
  248. case 12:
  249. case 13:
  250. case 14:
  251. case 15:
  252. case 16:
  253. case 17:
  254. case 18:
  255. size += (opcode - 10);
  256. break;
  257. case 9:
  258. case 19:
  259. size = *size_segment++;
  260. break;
  261. case 10:
  262. case 20:
  263. size = AV_RB16(&size_segment[0]);
  264. size_segment += 2;
  265. break;
  266. case 11:
  267. case 21:
  268. size = AV_RB24(size_segment);
  269. size_segment += 3;
  270. break;
  271. }
  272. if (opcode < 12) {
  273. flag ^= 1;
  274. if (flag) {
  275. /* run of (size) pixels is unchanged from last frame */
  276. xan_wc3_copy_pixel_run(s, x, y, size, 0, 0);
  277. } else {
  278. /* output a run of pixels from imagedata_buffer */
  279. xan_wc3_output_pixel_run(s, imagedata_buffer, x, y, size);
  280. imagedata_buffer += size;
  281. }
  282. } else {
  283. /* run-based motion compensation from last frame */
  284. motion_x = sign_extend(*vector_segment >> 4, 4);
  285. motion_y = sign_extend(*vector_segment & 0xF, 4);
  286. vector_segment++;
  287. /* copy a run of pixels from the previous frame */
  288. xan_wc3_copy_pixel_run(s, x, y, size, motion_x, motion_y);
  289. flag = 0;
  290. }
  291. /* coordinate accounting */
  292. total_pixels -= size;
  293. y += (x + size) / width;
  294. x = (x + size) % width;
  295. }
  296. }
  297. static void xan_wc4_decode_frame(XanContext *s) {
  298. }
  299. static const uint8_t gamma_lookup[256] = {
  300. 0x00, 0x09, 0x10, 0x16, 0x1C, 0x21, 0x27, 0x2C,
  301. 0x31, 0x35, 0x3A, 0x3F, 0x43, 0x48, 0x4C, 0x50,
  302. 0x54, 0x59, 0x5D, 0x61, 0x65, 0x69, 0x6D, 0x71,
  303. 0x75, 0x79, 0x7D, 0x80, 0x84, 0x88, 0x8C, 0x8F,
  304. 0x93, 0x97, 0x9A, 0x9E, 0xA2, 0xA5, 0xA9, 0xAC,
  305. 0xB0, 0xB3, 0xB7, 0xBA, 0xBE, 0xC1, 0xC5, 0xC8,
  306. 0xCB, 0xCF, 0xD2, 0xD5, 0xD9, 0xDC, 0xDF, 0xE3,
  307. 0xE6, 0xE9, 0xED, 0xF0, 0xF3, 0xF6, 0xFA, 0xFD,
  308. 0x03, 0x0B, 0x12, 0x18, 0x1D, 0x23, 0x28, 0x2D,
  309. 0x32, 0x36, 0x3B, 0x40, 0x44, 0x49, 0x4D, 0x51,
  310. 0x56, 0x5A, 0x5E, 0x62, 0x66, 0x6A, 0x6E, 0x72,
  311. 0x76, 0x7A, 0x7D, 0x81, 0x85, 0x89, 0x8D, 0x90,
  312. 0x94, 0x98, 0x9B, 0x9F, 0xA2, 0xA6, 0xAA, 0xAD,
  313. 0xB1, 0xB4, 0xB8, 0xBB, 0xBF, 0xC2, 0xC5, 0xC9,
  314. 0xCC, 0xD0, 0xD3, 0xD6, 0xDA, 0xDD, 0xE0, 0xE4,
  315. 0xE7, 0xEA, 0xED, 0xF1, 0xF4, 0xF7, 0xFA, 0xFD,
  316. 0x05, 0x0D, 0x13, 0x19, 0x1F, 0x24, 0x29, 0x2E,
  317. 0x33, 0x38, 0x3C, 0x41, 0x45, 0x4A, 0x4E, 0x52,
  318. 0x57, 0x5B, 0x5F, 0x63, 0x67, 0x6B, 0x6F, 0x73,
  319. 0x77, 0x7B, 0x7E, 0x82, 0x86, 0x8A, 0x8D, 0x91,
  320. 0x95, 0x99, 0x9C, 0xA0, 0xA3, 0xA7, 0xAA, 0xAE,
  321. 0xB2, 0xB5, 0xB9, 0xBC, 0xBF, 0xC3, 0xC6, 0xCA,
  322. 0xCD, 0xD0, 0xD4, 0xD7, 0xDA, 0xDE, 0xE1, 0xE4,
  323. 0xE8, 0xEB, 0xEE, 0xF1, 0xF5, 0xF8, 0xFB, 0xFD,
  324. 0x07, 0x0E, 0x15, 0x1A, 0x20, 0x25, 0x2A, 0x2F,
  325. 0x34, 0x39, 0x3D, 0x42, 0x46, 0x4B, 0x4F, 0x53,
  326. 0x58, 0x5C, 0x60, 0x64, 0x68, 0x6C, 0x70, 0x74,
  327. 0x78, 0x7C, 0x7F, 0x83, 0x87, 0x8B, 0x8E, 0x92,
  328. 0x96, 0x99, 0x9D, 0xA1, 0xA4, 0xA8, 0xAB, 0xAF,
  329. 0xB2, 0xB6, 0xB9, 0xBD, 0xC0, 0xC4, 0xC7, 0xCB,
  330. 0xCE, 0xD1, 0xD5, 0xD8, 0xDB, 0xDF, 0xE2, 0xE5,
  331. 0xE9, 0xEC, 0xEF, 0xF2, 0xF6, 0xF9, 0xFC, 0xFD
  332. };
  333. static int xan_decode_frame(AVCodecContext *avctx,
  334. void *data, int *data_size,
  335. AVPacket *avpkt)
  336. {
  337. const uint8_t *buf = avpkt->data;
  338. int ret, buf_size = avpkt->size;
  339. XanContext *s = avctx->priv_data;
  340. if (avctx->codec->id == CODEC_ID_XAN_WC3) {
  341. const uint8_t *buf_end = buf + buf_size;
  342. int tag = 0;
  343. while (buf_end - buf > 8 && tag != VGA__TAG) {
  344. unsigned *tmpptr;
  345. uint32_t new_pal;
  346. int size;
  347. int i;
  348. tag = bytestream_get_le32(&buf);
  349. size = bytestream_get_be32(&buf);
  350. size = FFMIN(size, buf_end - buf);
  351. switch (tag) {
  352. case PALT_TAG:
  353. if (size < PALETTE_SIZE)
  354. return AVERROR_INVALIDDATA;
  355. if (s->palettes_count >= PALETTES_MAX)
  356. return AVERROR_INVALIDDATA;
  357. tmpptr = av_realloc(s->palettes, (s->palettes_count + 1) * AVPALETTE_SIZE);
  358. if (!tmpptr)
  359. return AVERROR(ENOMEM);
  360. s->palettes = tmpptr;
  361. tmpptr += s->palettes_count * AVPALETTE_COUNT;
  362. for (i = 0; i < PALETTE_COUNT; i++) {
  363. int r = gamma_lookup[*buf++];
  364. int g = gamma_lookup[*buf++];
  365. int b = gamma_lookup[*buf++];
  366. *tmpptr++ = (r << 16) | (g << 8) | b;
  367. }
  368. s->palettes_count++;
  369. break;
  370. case SHOT_TAG:
  371. if (size < 4)
  372. return AVERROR_INVALIDDATA;
  373. new_pal = bytestream_get_le32(&buf);
  374. if (new_pal < s->palettes_count) {
  375. s->cur_palette = new_pal;
  376. } else
  377. av_log(avctx, AV_LOG_ERROR, "Invalid palette selected\n");
  378. break;
  379. case VGA__TAG:
  380. break;
  381. default:
  382. buf += size;
  383. break;
  384. }
  385. }
  386. buf_size = buf_end - buf;
  387. }
  388. if ((ret = avctx->get_buffer(avctx, &s->current_frame))) {
  389. av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  390. return ret;
  391. }
  392. s->current_frame.reference = 3;
  393. if (!s->frame_size)
  394. s->frame_size = s->current_frame.linesize[0] * s->avctx->height;
  395. if (avctx->codec->id == CODEC_ID_XAN_WC3) {
  396. memcpy(s->current_frame.data[1], s->palettes + s->cur_palette * AVPALETTE_COUNT, AVPALETTE_SIZE);
  397. } else {
  398. AVPaletteControl *palette_control = avctx->palctrl;
  399. palette_control->palette_changed = 0;
  400. memcpy(s->current_frame.data[1], palette_control->palette,
  401. AVPALETTE_SIZE);
  402. s->current_frame.palette_has_changed = 1;
  403. }
  404. s->buf = buf;
  405. s->size = buf_size;
  406. if (avctx->codec->id == CODEC_ID_XAN_WC3)
  407. xan_wc3_decode_frame(s);
  408. else if (avctx->codec->id == CODEC_ID_XAN_WC4)
  409. xan_wc4_decode_frame(s);
  410. /* release the last frame if it is allocated */
  411. if (s->last_frame.data[0])
  412. avctx->release_buffer(avctx, &s->last_frame);
  413. *data_size = sizeof(AVFrame);
  414. *(AVFrame*)data = s->current_frame;
  415. /* shuffle frames */
  416. FFSWAP(AVFrame, s->current_frame, s->last_frame);
  417. /* always report that the buffer was completely consumed */
  418. return buf_size;
  419. }
  420. static av_cold int xan_decode_end(AVCodecContext *avctx)
  421. {
  422. XanContext *s = avctx->priv_data;
  423. /* release the frames */
  424. if (s->last_frame.data[0])
  425. avctx->release_buffer(avctx, &s->last_frame);
  426. if (s->current_frame.data[0])
  427. avctx->release_buffer(avctx, &s->current_frame);
  428. av_freep(&s->buffer1);
  429. av_freep(&s->buffer2);
  430. return 0;
  431. }
  432. AVCodec xan_wc3_decoder = {
  433. "xan_wc3",
  434. AVMEDIA_TYPE_VIDEO,
  435. CODEC_ID_XAN_WC3,
  436. sizeof(XanContext),
  437. xan_decode_init,
  438. NULL,
  439. xan_decode_end,
  440. xan_decode_frame,
  441. CODEC_CAP_DR1,
  442. .long_name = NULL_IF_CONFIG_SMALL("Wing Commander III / Xan"),
  443. };
  444. /*
  445. AVCodec xan_wc4_decoder = {
  446. "xan_wc4",
  447. AVMEDIA_TYPE_VIDEO,
  448. CODEC_ID_XAN_WC4,
  449. sizeof(XanContext),
  450. xan_decode_init,
  451. NULL,
  452. xan_decode_end,
  453. xan_decode_frame,
  454. CODEC_CAP_DR1,
  455. .long_name = NULL_IF_CONFIG_SMALL("Wing Commander IV / Xxan"),
  456. };
  457. */