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.

403 lines
14KB

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