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.

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