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.

409 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 Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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/channel_layout.h"
  26. #include "avcodec.h"
  27. #include "bytestream.h"
  28. #include "internal.h"
  29. #include "mathops.h"
  30. typedef enum CinVideoBitmapIndex {
  31. CIN_CUR_BMP = 0, /* current */
  32. CIN_PRE_BMP = 1, /* previous */
  33. CIN_INT_BMP = 2 /* intermediate */
  34. } CinVideoBitmapIndex;
  35. typedef struct CinVideoContext {
  36. AVCodecContext *avctx;
  37. AVFrame *frame;
  38. unsigned int bitmap_size;
  39. uint32_t palette[256];
  40. uint8_t *bitmap_table[3];
  41. } CinVideoContext;
  42. typedef struct CinAudioContext {
  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 int cinvideo_decode_init(AVCodecContext *avctx)
  82. {
  83. CinVideoContext *cin = avctx->priv_data;
  84. unsigned int i;
  85. cin->avctx = avctx;
  86. avctx->pix_fmt = AV_PIX_FMT_PAL8;
  87. cin->frame = av_frame_alloc();
  88. if (!cin->frame)
  89. return AVERROR(ENOMEM);
  90. cin->bitmap_size = avctx->width * avctx->height;
  91. for (i = 0; i < 3; ++i) {
  92. cin->bitmap_table[i] = av_mallocz(cin->bitmap_size);
  93. if (!cin->bitmap_table[i])
  94. av_log(avctx, AV_LOG_ERROR, "Can't allocate bitmap buffers.\n");
  95. }
  96. return 0;
  97. }
  98. static void cin_apply_delta_data(const unsigned char *src, unsigned char *dst,
  99. int size)
  100. {
  101. while (size--)
  102. *dst++ += *src++;
  103. }
  104. static int cin_decode_huffman(const unsigned char *src, int src_size,
  105. unsigned char *dst, int dst_size)
  106. {
  107. int b, huff_code = 0;
  108. unsigned char huff_code_table[15];
  109. unsigned char *dst_cur = dst;
  110. unsigned char *dst_end = dst + dst_size;
  111. const unsigned char *src_end = src + src_size;
  112. memcpy(huff_code_table, src, 15);
  113. src += 15;
  114. while (src < src_end) {
  115. huff_code = *src++;
  116. if ((huff_code >> 4) == 15) {
  117. b = huff_code << 4;
  118. huff_code = *src++;
  119. *dst_cur++ = b | (huff_code >> 4);
  120. } else
  121. *dst_cur++ = huff_code_table[huff_code >> 4];
  122. if (dst_cur >= dst_end)
  123. break;
  124. huff_code &= 15;
  125. if (huff_code == 15) {
  126. *dst_cur++ = *src++;
  127. } else
  128. *dst_cur++ = huff_code_table[huff_code];
  129. if (dst_cur >= dst_end)
  130. break;
  131. }
  132. return dst_cur - dst;
  133. }
  134. static int cin_decode_lzss(const unsigned char *src, int src_size,
  135. unsigned char *dst, int dst_size)
  136. {
  137. uint16_t cmd;
  138. int i, sz, offset, code;
  139. unsigned char *dst_end = dst + dst_size, *dst_start = dst;
  140. const unsigned char *src_end = src + src_size;
  141. while (src < src_end && dst < dst_end) {
  142. code = *src++;
  143. for (i = 0; i < 8 && src < src_end && dst < dst_end; ++i) {
  144. if (code & (1 << i)) {
  145. *dst++ = *src++;
  146. } else {
  147. cmd = AV_RL16(src);
  148. src += 2;
  149. offset = cmd >> 4;
  150. if ((int)(dst - dst_start) < offset + 1)
  151. return AVERROR_INVALIDDATA;
  152. sz = (cmd & 0xF) + 2;
  153. /* don't use memcpy/memmove here as the decoding routine
  154. * (ab)uses buffer overlappings to repeat bytes in the
  155. * destination */
  156. sz = FFMIN(sz, dst_end - dst);
  157. while (sz--) {
  158. *dst = *(dst - offset - 1);
  159. ++dst;
  160. }
  161. }
  162. }
  163. }
  164. return 0;
  165. }
  166. static void cin_decode_rle(const unsigned char *src, int src_size,
  167. unsigned char *dst, int dst_size)
  168. {
  169. int len, code;
  170. unsigned char *dst_end = dst + dst_size;
  171. const unsigned char *src_end = src + src_size;
  172. while (src < src_end && dst < dst_end) {
  173. code = *src++;
  174. if (code & 0x80) {
  175. if (src >= src_end)
  176. break;
  177. len = code - 0x7F;
  178. memset(dst, *src++, FFMIN(len, dst_end - dst));
  179. } else {
  180. len = code + 1;
  181. memcpy(dst, src, FFMIN3(len, dst_end - dst, src_end - src));
  182. src += len;
  183. }
  184. dst += len;
  185. }
  186. }
  187. static int cinvideo_decode_frame(AVCodecContext *avctx,
  188. void *data, int *got_frame,
  189. AVPacket *avpkt)
  190. {
  191. const uint8_t *buf = avpkt->data;
  192. int buf_size = avpkt->size;
  193. CinVideoContext *cin = avctx->priv_data;
  194. int i, y, palette_type, palette_colors_count,
  195. bitmap_frame_type, bitmap_frame_size, res = 0;
  196. palette_type = buf[0];
  197. palette_colors_count = AV_RL16(buf + 1);
  198. bitmap_frame_type = buf[3];
  199. buf += 4;
  200. bitmap_frame_size = buf_size - 4;
  201. /* handle palette */
  202. if (bitmap_frame_size < palette_colors_count * (3 + (palette_type != 0)))
  203. return AVERROR_INVALIDDATA;
  204. if (palette_type == 0) {
  205. if (palette_colors_count > 256)
  206. return AVERROR_INVALIDDATA;
  207. for (i = 0; i < palette_colors_count; ++i) {
  208. cin->palette[i] = bytestream_get_le24(&buf);
  209. bitmap_frame_size -= 3;
  210. }
  211. } else {
  212. for (i = 0; i < palette_colors_count; ++i) {
  213. cin->palette[buf[0]] = AV_RL24(buf + 1);
  214. buf += 4;
  215. bitmap_frame_size -= 4;
  216. }
  217. }
  218. bitmap_frame_size = FFMIN(cin->bitmap_size, bitmap_frame_size);
  219. /* note: the decoding routines below assumes that
  220. * surface.width = surface.pitch */
  221. switch (bitmap_frame_type) {
  222. case 9:
  223. cin_decode_rle(buf, bitmap_frame_size,
  224. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  225. break;
  226. case 34:
  227. cin_decode_rle(buf, bitmap_frame_size,
  228. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  229. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  230. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  231. break;
  232. case 35:
  233. cin_decode_huffman(buf, bitmap_frame_size,
  234. cin->bitmap_table[CIN_INT_BMP], cin->bitmap_size);
  235. cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
  236. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  237. break;
  238. case 36:
  239. bitmap_frame_size = cin_decode_huffman(buf, bitmap_frame_size,
  240. cin->bitmap_table[CIN_INT_BMP],
  241. cin->bitmap_size);
  242. cin_decode_rle(cin->bitmap_table[CIN_INT_BMP], bitmap_frame_size,
  243. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  244. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  245. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  246. break;
  247. case 37:
  248. cin_decode_huffman(buf, bitmap_frame_size,
  249. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  250. break;
  251. case 38:
  252. res = cin_decode_lzss(buf, bitmap_frame_size,
  253. cin->bitmap_table[CIN_CUR_BMP],
  254. cin->bitmap_size);
  255. if (res < 0)
  256. return res;
  257. break;
  258. case 39:
  259. res = cin_decode_lzss(buf, bitmap_frame_size,
  260. cin->bitmap_table[CIN_CUR_BMP],
  261. cin->bitmap_size);
  262. if (res < 0)
  263. return res;
  264. cin_apply_delta_data(cin->bitmap_table[CIN_PRE_BMP],
  265. cin->bitmap_table[CIN_CUR_BMP], cin->bitmap_size);
  266. break;
  267. }
  268. if ((res = ff_reget_buffer(avctx, cin->frame)) < 0) {
  269. av_log(cin->avctx, AV_LOG_ERROR,
  270. "delphinecinvideo: reget_buffer() failed to allocate a frame\n");
  271. return res;
  272. }
  273. memcpy(cin->frame->data[1], cin->palette, sizeof(cin->palette));
  274. cin->frame->palette_has_changed = 1;
  275. for (y = 0; y < cin->avctx->height; ++y)
  276. memcpy(cin->frame->data[0] + (cin->avctx->height - 1 - y) * cin->frame->linesize[0],
  277. cin->bitmap_table[CIN_CUR_BMP] + y * cin->avctx->width,
  278. cin->avctx->width);
  279. FFSWAP(uint8_t *, cin->bitmap_table[CIN_CUR_BMP],
  280. cin->bitmap_table[CIN_PRE_BMP]);
  281. if ((res = av_frame_ref(data, cin->frame)) < 0)
  282. return res;
  283. *got_frame = 1;
  284. return buf_size;
  285. }
  286. static av_cold int cinvideo_decode_end(AVCodecContext *avctx)
  287. {
  288. CinVideoContext *cin = avctx->priv_data;
  289. int i;
  290. av_frame_free(&cin->frame);
  291. for (i = 0; i < 3; ++i)
  292. av_free(cin->bitmap_table[i]);
  293. return 0;
  294. }
  295. static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
  296. {
  297. CinAudioContext *cin = avctx->priv_data;
  298. cin->initial_decode_frame = 1;
  299. cin->delta = 0;
  300. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  301. avctx->channels = 1;
  302. avctx->channel_layout = AV_CH_LAYOUT_MONO;
  303. return 0;
  304. }
  305. static int cinaudio_decode_frame(AVCodecContext *avctx, void *data,
  306. int *got_frame_ptr, AVPacket *avpkt)
  307. {
  308. AVFrame *frame = data;
  309. const uint8_t *buf = avpkt->data;
  310. CinAudioContext *cin = avctx->priv_data;
  311. const uint8_t *buf_end = buf + avpkt->size;
  312. int16_t *samples;
  313. int delta, ret;
  314. /* get output buffer */
  315. frame->nb_samples = avpkt->size - cin->initial_decode_frame;
  316. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
  317. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  318. return ret;
  319. }
  320. samples = (int16_t *)frame->data[0];
  321. delta = cin->delta;
  322. if (cin->initial_decode_frame) {
  323. cin->initial_decode_frame = 0;
  324. delta = sign_extend(AV_RL16(buf), 16);
  325. buf += 2;
  326. *samples++ = delta;
  327. }
  328. while (buf < buf_end) {
  329. delta += cinaudio_delta16_table[*buf++];
  330. delta = av_clip_int16(delta);
  331. *samples++ = delta;
  332. }
  333. cin->delta = delta;
  334. *got_frame_ptr = 1;
  335. return avpkt->size;
  336. }
  337. AVCodec ff_dsicinvideo_decoder = {
  338. .name = "dsicinvideo",
  339. .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN video"),
  340. .type = AVMEDIA_TYPE_VIDEO,
  341. .id = AV_CODEC_ID_DSICINVIDEO,
  342. .priv_data_size = sizeof(CinVideoContext),
  343. .init = cinvideo_decode_init,
  344. .close = cinvideo_decode_end,
  345. .decode = cinvideo_decode_frame,
  346. .capabilities = CODEC_CAP_DR1,
  347. };
  348. AVCodec ff_dsicinaudio_decoder = {
  349. .name = "dsicinaudio",
  350. .long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN audio"),
  351. .type = AVMEDIA_TYPE_AUDIO,
  352. .id = AV_CODEC_ID_DSICINAUDIO,
  353. .priv_data_size = sizeof(CinAudioContext),
  354. .init = cinaudio_decode_init,
  355. .decode = cinaudio_decode_frame,
  356. .capabilities = CODEC_CAP_DR1,
  357. };