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.

372 lines
13KB

  1. /*
  2. * Delphine Software International CIN Audio/Video Decoders
  3. * Copyright (c) 2006 Gregory Montoir (cyx@users.sourceforge.net)
  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. * Delphine Software International CIN audio/video decoders
  24. */
  25. #include "avcodec.h"
  26. #include "bytestream.h"
  27. typedef enum CinVideoBitmapIndex {
  28. CIN_CUR_BMP = 0, /* current */
  29. CIN_PRE_BMP = 1, /* previous */
  30. CIN_INT_BMP = 2 /* intermediate */
  31. } CinVideoBitmapIndex;
  32. typedef struct CinVideoContext {
  33. AVCodecContext *avctx;
  34. AVFrame frame;
  35. unsigned int bitmap_size;
  36. uint32_t palette[256];
  37. uint8_t *bitmap_table[3];
  38. } CinVideoContext;
  39. typedef struct CinAudioContext {
  40. AVCodecContext *avctx;
  41. int initial_decode_frame;
  42. int delta;
  43. } CinAudioContext;
  44. /* table defining a geometric sequence with multiplier = 32767 ^ (1 / 128) */
  45. static const int16_t cinaudio_delta16_table[256] = {
  46. 0, 0, 0, 0, 0, 0, 0, 0,
  47. 0, 0, 0, 0, 0, 0, 0, 0,
  48. 0, 0, 0, -30210, -27853, -25680, -23677, -21829,
  49. -20126, -18556, -17108, -15774, -14543, -13408, -12362, -11398,
  50. -10508, -9689, -8933, -8236, -7593, -7001, -6455, -5951,
  51. -5487, -5059, -4664, -4300, -3964, -3655, -3370, -3107,
  52. -2865, -2641, -2435, -2245, -2070, -1908, -1759, -1622,
  53. -1495, -1379, -1271, -1172, -1080, -996, -918, -847,
  54. -781, -720, -663, -612, -564, -520, -479, -442,
  55. -407, -376, -346, -319, -294, -271, -250, -230,
  56. -212, -196, -181, -166, -153, -141, -130, -120,
  57. -111, -102, -94, -87, -80, -74, -68, -62,
  58. -58, -53, -49, -45, -41, -38, -35, -32,
  59. -30, -27, -25, -23, -21, -20, -18, -17,
  60. -15, -14, -13, -12, -11, -10, -9, -8,
  61. -7, -6, -5, -4, -3, -2, -1, 0,
  62. 0, 1, 2, 3, 4, 5, 6, 7,
  63. 8, 9, 10, 11, 12, 13, 14, 15,
  64. 17, 18, 20, 21, 23, 25, 27, 30,
  65. 32, 35, 38, 41, 45, 49, 53, 58,
  66. 62, 68, 74, 80, 87, 94, 102, 111,
  67. 120, 130, 141, 153, 166, 181, 196, 212,
  68. 230, 250, 271, 294, 319, 346, 376, 407,
  69. 442, 479, 520, 564, 612, 663, 720, 781,
  70. 847, 918, 996, 1080, 1172, 1271, 1379, 1495,
  71. 1622, 1759, 1908, 2070, 2245, 2435, 2641, 2865,
  72. 3107, 3370, 3655, 3964, 4300, 4664, 5059, 5487,
  73. 5951, 6455, 7001, 7593, 8236, 8933, 9689, 10508,
  74. 11398, 12362, 13408, 14543, 15774, 17108, 18556, 20126,
  75. 21829, 23677, 25680, 27853, 30210, 0, 0, 0,
  76. 0, 0, 0, 0, 0, 0, 0, 0,
  77. 0, 0, 0, 0, 0, 0, 0, 0
  78. };
  79. static av_cold int cinvideo_decode_init(AVCodecContext *avctx)
  80. {
  81. CinVideoContext *cin = avctx->priv_data;
  82. unsigned int i;
  83. cin->avctx = avctx;
  84. avctx->pix_fmt = PIX_FMT_PAL8;
  85. avcodec_get_frame_defaults(&cin->frame);
  86. cin->frame.data[0] = NULL;
  87. cin->bitmap_size = avctx->width * avctx->height;
  88. for (i = 0; i < 3; ++i) {
  89. cin->bitmap_table[i] = av_mallocz(cin->bitmap_size);
  90. if (!cin->bitmap_table[i])
  91. av_log(avctx, AV_LOG_ERROR, "Can't allocate bitmap buffers.\n");
  92. }
  93. return 0;
  94. }
  95. static void cin_apply_delta_data(const unsigned char *src, unsigned char *dst, int size)
  96. {
  97. while (size--)
  98. *dst++ += *src++;
  99. }
  100. static int cin_decode_huffman(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
  101. {
  102. int b, huff_code = 0;
  103. unsigned char huff_code_table[15];
  104. unsigned char *dst_cur = dst;
  105. unsigned char *dst_end = dst + dst_size;
  106. const unsigned char *src_end = src + src_size;
  107. memcpy(huff_code_table, src, 15); src += 15; src_size -= 15;
  108. while (src < src_end) {
  109. huff_code = *src++;
  110. if ((huff_code >> 4) == 15) {
  111. b = huff_code << 4;
  112. huff_code = *src++;
  113. *dst_cur++ = b | (huff_code >> 4);
  114. } else
  115. *dst_cur++ = huff_code_table[huff_code >> 4];
  116. if (dst_cur >= dst_end)
  117. break;
  118. huff_code &= 15;
  119. if (huff_code == 15) {
  120. *dst_cur++ = *src++;
  121. } else
  122. *dst_cur++ = huff_code_table[huff_code];
  123. if (dst_cur >= dst_end)
  124. break;
  125. }
  126. return dst_cur - dst;
  127. }
  128. static void cin_decode_lzss(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
  129. {
  130. uint16_t cmd;
  131. int i, sz, offset, code;
  132. unsigned char *dst_end = dst + dst_size;
  133. const unsigned char *src_end = src + src_size;
  134. while (src < src_end && dst < dst_end) {
  135. code = *src++;
  136. for (i = 0; i < 8 && src < src_end && dst < dst_end; ++i) {
  137. if (code & (1 << i)) {
  138. *dst++ = *src++;
  139. } else {
  140. cmd = AV_RL16(src); src += 2;
  141. offset = cmd >> 4;
  142. sz = (cmd & 0xF) + 2;
  143. /* don't use memcpy/memmove here as the decoding routine (ab)uses */
  144. /* buffer overlappings to repeat bytes in the destination */
  145. sz = FFMIN(sz, dst_end - dst);
  146. while (sz--) {
  147. *dst = *(dst - offset - 1);
  148. ++dst;
  149. }
  150. }
  151. }
  152. }
  153. }
  154. static void cin_decode_rle(const unsigned char *src, int src_size, unsigned char *dst, int dst_size)
  155. {
  156. int len, code;
  157. unsigned char *dst_end = dst + dst_size;
  158. const unsigned char *src_end = src + src_size;
  159. while (src < src_end && dst < dst_end) {
  160. code = *src++;
  161. if (code & 0x80) {
  162. len = code - 0x7F;
  163. memset(dst, *src++, FFMIN(len, dst_end - dst));
  164. } else {
  165. len = code + 1;
  166. memcpy(dst, src, FFMIN(len, dst_end - dst));
  167. src += len;
  168. }
  169. dst += len;
  170. }
  171. }
  172. static int cinvideo_decode_frame(AVCodecContext *avctx,
  173. void *data, int *data_size,
  174. AVPacket *avpkt)
  175. {
  176. const uint8_t *buf = avpkt->data;
  177. int buf_size = avpkt->size;
  178. CinVideoContext *cin = avctx->priv_data;
  179. int i, y, palette_type, palette_colors_count, bitmap_frame_type, bitmap_frame_size;
  180. cin->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
  181. if (avctx->reget_buffer(avctx, &cin->frame)) {
  182. av_log(cin->avctx, AV_LOG_ERROR, "delphinecinvideo: reget_buffer() failed to allocate a frame\n");
  183. return -1;
  184. }
  185. palette_type = buf[0];
  186. palette_colors_count = AV_RL16(buf+1);
  187. bitmap_frame_type = buf[3];
  188. buf += 4;
  189. bitmap_frame_size = buf_size - 4;
  190. /* handle palette */
  191. if (bitmap_frame_size < palette_colors_count * (3 + (palette_type != 0)))
  192. return AVERROR_INVALIDDATA;
  193. if (palette_type == 0) {
  194. if (palette_colors_count > 256)
  195. return AVERROR_INVALIDDATA;
  196. for (i = 0; i < palette_colors_count; ++i) {
  197. cin->palette[i] = bytestream_get_le24(&buf);
  198. bitmap_frame_size -= 3;
  199. }
  200. } else {
  201. for (i = 0; i < palette_colors_count; ++i) {
  202. cin->palette[buf[0]] = AV_RL24(buf+1);
  203. buf += 4;
  204. bitmap_frame_size -= 4;
  205. }
  206. }
  207. memcpy(cin->frame.data[1], cin->palette, sizeof(cin->palette));
  208. cin->frame.palette_has_changed = 1;
  209. /* note: the decoding routines below assumes that surface.width = surface.pitch */
  210. switch (bitmap_frame_type) {
  211. case 9:
  212. cin_decode_rle(buf, bitmap_frame_size,
  213. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  214. break;
  215. case 34:
  216. cin_decode_rle(buf, bitmap_frame_size,
  217. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  218. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  219. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  220. break;
  221. case 35:
  222. cin_decode_huffman(buf, bitmap_frame_size,
  223. cin->bitmap_table[CIN_INT_BMP], cin->bitmap_size);
  224. cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
  225. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  226. break;
  227. case 36:
  228. bitmap_frame_size = cin_decode_huffman(buf, bitmap_frame_size,
  229. cin->bitmap_table[CIN_INT_BMP], cin->bitmap_size);
  230. cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
  231. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  232. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  233. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  234. break;
  235. case 37:
  236. cin_decode_huffman(buf, bitmap_frame_size,
  237. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  238. break;
  239. case 38:
  240. cin_decode_lzss(buf, bitmap_frame_size,
  241. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  242. break;
  243. case 39:
  244. cin_decode_lzss(buf, bitmap_frame_size,
  245. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  246. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  247. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  248. break;
  249. }
  250. for (y = 0; y < cin->avctx->height; ++y)
  251. memcpy(cin->frame.data[0] + (cin->avctx->height - 1 - y) * cin->frame.linesize[0],
  252. cin->bitmap_table[CIN_CUR_BMP] + y * cin->avctx->width,
  253. cin->avctx->width);
  254. FFSWAP(uint8_t *, cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_table[CIN_PRE_BMP]);
  255. *data_size = sizeof(AVFrame);
  256. *(AVFrame *)data = cin->frame;
  257. return buf_size;
  258. }
  259. static av_cold int cinvideo_decode_end(AVCodecContext *avctx)
  260. {
  261. CinVideoContext *cin = avctx->priv_data;
  262. int i;
  263. if (cin->frame.data[0])
  264. avctx->release_buffer(avctx, &cin->frame);
  265. for (i = 0; i < 3; ++i)
  266. av_free(cin->bitmap_table[i]);
  267. return 0;
  268. }
  269. static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
  270. {
  271. CinAudioContext *cin = avctx->priv_data;
  272. cin->avctx = avctx;
  273. cin->initial_decode_frame = 1;
  274. cin->delta = 0;
  275. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  276. return 0;
  277. }
  278. static int cinaudio_decode_frame(AVCodecContext *avctx,
  279. void *data, int *data_size,
  280. AVPacket *avpkt)
  281. {
  282. const uint8_t *buf = avpkt->data;
  283. int buf_size = avpkt->size;
  284. CinAudioContext *cin = avctx->priv_data;
  285. const uint8_t *src = buf;
  286. int16_t *samples = (int16_t *)data;
  287. buf_size = FFMIN(buf_size, *data_size/2);
  288. if (cin->initial_decode_frame) {
  289. cin->initial_decode_frame = 0;
  290. cin->delta = (int16_t)AV_RL16(src); src += 2;
  291. *samples++ = cin->delta;
  292. buf_size -= 2;
  293. }
  294. while (buf_size > 0) {
  295. cin->delta += cinaudio_delta16_table[*src++];
  296. cin->delta = av_clip_int16(cin->delta);
  297. *samples++ = cin->delta;
  298. --buf_size;
  299. }
  300. *data_size = (uint8_t *)samples - (uint8_t *)data;
  301. return src - buf;
  302. }
  303. AVCodec ff_dsicinvideo_decoder = {
  304. .name = "dsicinvideo",
  305. .type = AVMEDIA_TYPE_VIDEO,
  306. .id = CODEC_ID_DSICINVIDEO,
  307. .priv_data_size = sizeof(CinVideoContext),
  308. .init = cinvideo_decode_init,
  309. .close = cinvideo_decode_end,
  310. .decode = cinvideo_decode_frame,
  311. .capabilities = CODEC_CAP_DR1,
  312. .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN video"),
  313. };
  314. AVCodec ff_dsicinaudio_decoder = {
  315. .name = "dsicinaudio",
  316. .type = AVMEDIA_TYPE_AUDIO,
  317. .id = CODEC_ID_DSICINAUDIO,
  318. .priv_data_size = sizeof(CinAudioContext),
  319. .init = cinaudio_decode_init,
  320. .decode = cinaudio_decode_frame,
  321. .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN audio"),
  322. };