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.

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