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.

392 lines
13KB

  1. /*
  2. * ClearVideo decoder
  3. * Copyright (c) 2012 Konstantin Shishkov
  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. * ClearVideo decoder
  24. */
  25. #include "avcodec.h"
  26. #include "bitstream.h"
  27. #include "bytestream.h"
  28. #include "idctdsp.h"
  29. #include "internal.h"
  30. #define NUM_DC_CODES 127
  31. #define NUM_AC_CODES 103
  32. static const uint8_t clv_dc_codes[NUM_DC_CODES] = {
  33. 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  34. 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  35. 0x10, 0x11, 0x12, 0x13, 0x13, 0x14, 0x07, 0x0B,
  36. 0x0C, 0x08, 0x08, 0x09, 0x04, 0x06, 0x07, 0x05,
  37. 0x04, 0x05, 0x04, 0x06, 0x05, 0x06, 0x07, 0x05,
  38. 0x06, 0x07, 0x06, 0x07, 0x08, 0x06, 0x07, 0x08,
  39. 0x09, 0x0A, 0x0B, 0x07, 0x08, 0x09, 0x07, 0x08,
  40. 0x06, 0x07, 0x08, 0x06, 0x04, 0x05, 0x02, 0x01,
  41. 0x03, 0x06, 0x07, 0x07, 0x09, 0x0A, 0x0B, 0x09,
  42. 0x0A, 0x0B, 0x0A, 0x0B, 0x0C, 0x0D, 0x0C, 0x09,
  43. 0x0D, 0x0A, 0x0B, 0x08, 0x09, 0x0A, 0x0B, 0x07,
  44. 0x08, 0x09, 0x0A, 0x0B, 0x06, 0x07, 0x06, 0x08,
  45. 0x07, 0x09, 0x0A, 0x0B, 0x09, 0x0A, 0x0B, 0x0C,
  46. 0x14, 0x0D, 0x0D, 0x0E, 0x0F, 0x15, 0x15, 0x16,
  47. 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E,
  48. 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25,
  49. };
  50. static const uint8_t clv_dc_bits[NUM_DC_CODES] = {
  51. 22, 22, 22, 22, 22, 22, 22, 22,
  52. 22, 22, 22, 22, 22, 22, 22, 22,
  53. 22, 22, 22, 21, 22, 22, 19, 20,
  54. 20, 19, 18, 18, 15, 17, 17, 16,
  55. 14, 15, 12, 13, 14, 14, 14, 12,
  56. 12, 12, 11, 11, 11, 10, 10, 10,
  57. 10, 10, 10, 9, 9, 9, 8, 8,
  58. 7, 7, 7, 6, 5, 5, 3, 1,
  59. 3, 5, 5, 6, 7, 7, 7, 8,
  60. 8, 8, 9, 9, 9, 9, 10, 11,
  61. 10, 11, 11, 12, 12, 12, 12, 13,
  62. 14, 14, 14, 14, 15, 15, 16, 17,
  63. 16, 17, 18, 18, 19, 19, 19, 19,
  64. 21, 19, 20, 19, 19, 21, 22, 22,
  65. 22, 22, 22, 22, 22, 22, 22, 22,
  66. 22, 22, 22, 22, 22, 22, 22,
  67. };
  68. static const uint16_t clv_ac_syms[NUM_AC_CODES] = {
  69. 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007, 0x0008,
  70. 0x0009, 0x000A, 0x000B, 0x000C, 0x0011, 0x0012, 0x0013, 0x0014,
  71. 0x0015, 0x0016, 0x0021, 0x0022, 0x0023, 0x0024, 0x0031, 0x0032,
  72. 0x0033, 0x0041, 0x0042, 0x0043, 0x0051, 0x0052, 0x0053, 0x0061,
  73. 0x0062, 0x0063, 0x0071, 0x0072, 0x0081, 0x0082, 0x0091, 0x0092,
  74. 0x00A1, 0x00A2, 0x00B1, 0x00C1, 0x00D1, 0x00E1, 0x00F1, 0x0101,
  75. 0x0111, 0x0121, 0x0131, 0x0141, 0x0151, 0x0161, 0x0171, 0x0181,
  76. 0x0191, 0x01A1, 0x1001, 0x1002, 0x1003, 0x1011, 0x1012, 0x1021,
  77. 0x1031, 0x1041, 0x1051, 0x1061, 0x1071, 0x1081, 0x1091, 0x10A1,
  78. 0x10B1, 0x10C1, 0x10D1, 0x10E1, 0x10F1, 0x1101, 0x1111, 0x1121,
  79. 0x1131, 0x1141, 0x1151, 0x1161, 0x1171, 0x1181, 0x1191, 0x11A1,
  80. 0x11B1, 0x11C1, 0x11D1, 0x11E1, 0x11F1, 0x1201, 0x1211, 0x1221,
  81. 0x1231, 0x1241, 0x1251, 0x1261, 0x1271, 0x1281, 0x1BFF,
  82. };
  83. static const uint8_t clv_ac_codes[NUM_AC_CODES] = {
  84. 0x02, 0x0F, 0x15, 0x17, 0x1F, 0x25, 0x24, 0x21,
  85. 0x20, 0x07, 0x06, 0x20, 0x06, 0x14, 0x1E, 0x0F,
  86. 0x21, 0x50, 0x0E, 0x1D, 0x0E, 0x51, 0x0D, 0x23,
  87. 0x0D, 0x0C, 0x22, 0x52, 0x0B, 0x0C, 0x53, 0x13,
  88. 0x0B, 0x54, 0x12, 0x0A, 0x11, 0x09, 0x10, 0x08,
  89. 0x16, 0x55, 0x15, 0x14, 0x1C, 0x1B, 0x21, 0x20,
  90. 0x1F, 0x1E, 0x1D, 0x1C, 0x1B, 0x1A, 0x22, 0x23,
  91. 0x56, 0x57, 0x07, 0x19, 0x05, 0x0F, 0x04, 0x0E,
  92. 0x0D, 0x0C, 0x13, 0x12, 0x11, 0x10, 0x1A, 0x19,
  93. 0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x18, 0x17,
  94. 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x07, 0x06,
  95. 0x05, 0x04, 0x24, 0x25, 0x26, 0x27, 0x58, 0x59,
  96. 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F, 0x03,
  97. };
  98. static const uint8_t clv_ac_bits[NUM_AC_CODES] = {
  99. 2, 4, 6, 7, 8, 9, 9, 10,
  100. 10, 11, 11, 11, 3, 6, 8, 10,
  101. 11, 12, 4, 8, 10, 12, 5, 9,
  102. 10, 5, 9, 12, 5, 10, 12, 6,
  103. 10, 12, 6, 10, 6, 10, 6, 10,
  104. 7, 12, 7, 7, 8, 8, 9, 9,
  105. 9, 9, 9, 9, 9, 9, 11, 11,
  106. 12, 12, 4, 9, 11, 6, 11, 6,
  107. 6, 6, 7, 7, 7, 7, 8, 8,
  108. 8, 8, 8, 8, 8, 8, 9, 9,
  109. 9, 9, 9, 9, 9, 9, 10, 10,
  110. 10, 10, 11, 11, 11, 11, 12, 12,
  111. 12, 12, 12, 12, 12, 12, 7,
  112. };
  113. typedef struct CLVContext {
  114. AVCodecContext *avctx;
  115. IDCTDSPContext idsp;
  116. AVFrame *pic;
  117. BitstreamContext bc;
  118. int mb_width, mb_height;
  119. VLC dc_vlc, ac_vlc;
  120. int luma_dc_quant, chroma_dc_quant, ac_quant;
  121. DECLARE_ALIGNED(16, int16_t, block)[64];
  122. int top_dc[3], left_dc[4];
  123. int iframes_warning;
  124. } CLVContext;
  125. static inline int decode_block(CLVContext *ctx, int16_t *blk, int has_ac,
  126. int ac_quant)
  127. {
  128. BitstreamContext *bc = &ctx->bc;
  129. int idx = 1, last = 0, val, skip;
  130. memset(blk, 0, sizeof(*blk) * 64);
  131. blk[0] = bitstream_read_vlc(bc, ctx->dc_vlc.table, 9, 3);
  132. if (blk[0] < 0)
  133. return AVERROR_INVALIDDATA;
  134. blk[0] -= 63;
  135. if (!has_ac)
  136. return 0;
  137. while (idx < 64 && !last) {
  138. val = bitstream_read_vlc(bc, ctx->ac_vlc.table, 9, 2);
  139. if (val < 0)
  140. return AVERROR_INVALIDDATA;
  141. if (val != 0x1BFF) {
  142. last = val >> 12;
  143. skip = (val >> 4) & 0xFF;
  144. val &= 0xF;
  145. if (bitstream_read_bit(bc))
  146. val = -val;
  147. } else {
  148. last = bitstream_read_bit(bc);
  149. skip = bitstream_read(bc, 6);
  150. val = bitstream_read_signed(bc, 8);
  151. }
  152. if (val) {
  153. int aval = FFABS(val), sign = val < 0;
  154. val = ac_quant * (2 * aval + 1);
  155. if (!(ac_quant & 1))
  156. val--;
  157. if (sign)
  158. val = -val;
  159. }
  160. idx += skip;
  161. if (idx >= 64)
  162. return AVERROR_INVALIDDATA;
  163. blk[ff_zigzag_direct[idx++]] = val;
  164. }
  165. return (idx <= 64 && last) ? 0 : -1;
  166. }
  167. #define DCT_TEMPLATE(blk, step, bias, shift, dshift, OP) \
  168. const int t0 = OP(2841 * blk[1 * step] + 565 * blk[7 * step]); \
  169. const int t1 = OP( 565 * blk[1 * step] - 2841 * blk[7 * step]); \
  170. const int t2 = OP(1609 * blk[5 * step] + 2408 * blk[3 * step]); \
  171. const int t3 = OP(2408 * blk[5 * step] - 1609 * blk[3 * step]); \
  172. const int t4 = OP(1108 * blk[2 * step] - 2676 * blk[6 * step]); \
  173. const int t5 = OP(2676 * blk[2 * step] + 1108 * blk[6 * step]); \
  174. const int t6 = ((blk[0 * step] + blk[4 * step]) << dshift) + bias; \
  175. const int t7 = ((blk[0 * step] - blk[4 * step]) << dshift) + bias; \
  176. const int t8 = t0 + t2; \
  177. const int t9 = t0 - t2; \
  178. const int tA = 181 * (t9 + (t1 - t3)) + 0x80 >> 8; \
  179. const int tB = 181 * (t9 - (t1 - t3)) + 0x80 >> 8; \
  180. const int tC = t1 + t3; \
  181. \
  182. blk[0 * step] = (t6 + t5 + t8) >> shift; \
  183. blk[1 * step] = (t7 + t4 + tA) >> shift; \
  184. blk[2 * step] = (t7 - t4 + tB) >> shift; \
  185. blk[3 * step] = (t6 - t5 + tC) >> shift; \
  186. blk[4 * step] = (t6 - t5 - tC) >> shift; \
  187. blk[5 * step] = (t7 - t4 - tB) >> shift; \
  188. blk[6 * step] = (t7 + t4 - tA) >> shift; \
  189. blk[7 * step] = (t6 + t5 - t8) >> shift; \
  190. #define ROP(x) x
  191. #define COP(x) (((x) + 4) >> 3)
  192. static void clv_dct(int16_t *block)
  193. {
  194. int i;
  195. int16_t *ptr;
  196. ptr = block;
  197. for (i = 0; i < 8; i++) {
  198. DCT_TEMPLATE(ptr, 1, 0x80, 8, 11, ROP);
  199. ptr += 8;
  200. }
  201. ptr = block;
  202. for (i = 0; i < 8; i++) {
  203. DCT_TEMPLATE(ptr, 8, 0x2000, 14, 8, COP);
  204. ptr++;
  205. }
  206. }
  207. static int decode_mb(CLVContext *c, int x, int y)
  208. {
  209. int i, has_ac[6], off;
  210. for (i = 0; i < 6; i++)
  211. has_ac[i] = bitstream_read_bit(&c->bc);
  212. off = x * 16 + y * 16 * c->pic->linesize[0];
  213. for (i = 0; i < 4; i++) {
  214. if (decode_block(c, c->block, has_ac[i], c->ac_quant) < 0)
  215. return AVERROR_INVALIDDATA;
  216. if (!x && !(i & 1)) {
  217. c->block[0] += c->top_dc[0];
  218. c->top_dc[0] = c->block[0];
  219. } else {
  220. c->block[0] += c->left_dc[(i & 2) >> 1];
  221. }
  222. c->left_dc[(i & 2) >> 1] = c->block[0];
  223. c->block[0] *= c->luma_dc_quant;
  224. clv_dct(c->block);
  225. if (i == 2)
  226. off += c->pic->linesize[0] * 8;
  227. c->idsp.put_pixels_clamped(c->block,
  228. c->pic->data[0] + off + (i & 1) * 8,
  229. c->pic->linesize[0]);
  230. }
  231. off = x * 8 + y * 8 * c->pic->linesize[1];
  232. for (i = 1; i < 3; i++) {
  233. if (decode_block(c, c->block, has_ac[i + 3], c->ac_quant) < 0)
  234. return AVERROR_INVALIDDATA;
  235. if (!x) {
  236. c->block[0] += c->top_dc[i];
  237. c->top_dc[i] = c->block[0];
  238. } else {
  239. c->block[0] += c->left_dc[i + 1];
  240. }
  241. c->left_dc[i + 1] = c->block[0];
  242. c->block[0] *= c->chroma_dc_quant;
  243. clv_dct(c->block);
  244. c->idsp.put_pixels_clamped(c->block, c->pic->data[i] + off,
  245. c->pic->linesize[i]);
  246. }
  247. return 0;
  248. }
  249. static int clv_decode_frame(AVCodecContext *avctx, void *data,
  250. int *got_frame, AVPacket *avpkt)
  251. {
  252. const uint8_t *buf = avpkt->data;
  253. int buf_size = avpkt->size;
  254. CLVContext *c = avctx->priv_data;
  255. GetByteContext gb;
  256. uint32_t frame_type;
  257. int i, j, ret;
  258. bytestream2_init(&gb, buf, buf_size);
  259. if (avctx->codec_tag == MKTAG('C', 'L', 'V', '1')) {
  260. int skip = bytestream2_get_byte(&gb);
  261. bytestream2_skip(&gb, (skip + 1) * 8);
  262. }
  263. frame_type = bytestream2_get_byte(&gb);
  264. if ((ret = ff_reget_buffer(avctx, c->pic)) < 0)
  265. return ret;
  266. c->pic->key_frame = frame_type & 0x20 ? 1 : 0;
  267. c->pic->pict_type = frame_type & 0x20 ? AV_PICTURE_TYPE_I
  268. : AV_PICTURE_TYPE_P;
  269. if (frame_type & 0x2) {
  270. bytestream2_get_be32(&gb); // frame size;
  271. c->ac_quant = bytestream2_get_byte(&gb);
  272. c->luma_dc_quant = 32;
  273. c->chroma_dc_quant = 32;
  274. if ((ret = bitstream_init8(&c->bc, buf + bytestream2_tell(&gb),
  275. buf_size - bytestream2_tell(&gb))) < 0)
  276. return ret;
  277. for (i = 0; i < 3; i++)
  278. c->top_dc[i] = 32;
  279. for (i = 0; i < 4; i++)
  280. c->left_dc[i] = 32;
  281. for (j = 0; j < c->mb_height; j++) {
  282. for (i = 0; i < c->mb_width; i++) {
  283. ret |= decode_mb(c, i, j);
  284. }
  285. }
  286. } else {
  287. if (!c->iframes_warning)
  288. avpriv_report_missing_feature(avctx, "Non-I-frames in Clearvideo");
  289. c->iframes_warning = 1;
  290. return AVERROR_PATCHWELCOME;
  291. }
  292. if ((ret = av_frame_ref(data, c->pic)) < 0)
  293. return ret;
  294. *got_frame = 1;
  295. return ret < 0 ? ret : buf_size;
  296. }
  297. static av_cold int clv_decode_init(AVCodecContext *avctx)
  298. {
  299. CLVContext *const c = avctx->priv_data;
  300. int ret;
  301. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  302. c->avctx = avctx;
  303. c->mb_width = FFALIGN(avctx->width, 16) >> 4;
  304. c->mb_height = FFALIGN(avctx->height, 16) >> 4;
  305. c->iframes_warning = 0;
  306. c->pic = av_frame_alloc();
  307. if (!c->pic)
  308. return AVERROR(ENOMEM);
  309. ff_idctdsp_init(&c->idsp, avctx);
  310. ret = init_vlc(&c->dc_vlc, 9, NUM_DC_CODES,
  311. clv_dc_bits, 1, 1,
  312. clv_dc_codes, 1, 1, 0);
  313. if (ret) {
  314. av_log(avctx, AV_LOG_ERROR, "Error initialising DC VLC\n");
  315. return ret;
  316. }
  317. ret = ff_init_vlc_sparse(&c->ac_vlc, 9, NUM_AC_CODES,
  318. clv_ac_bits, 1, 1,
  319. clv_ac_codes, 1, 1,
  320. clv_ac_syms, 2, 2, 0);
  321. if (ret) {
  322. av_log(avctx, AV_LOG_ERROR, "Error initialising AC VLC\n");
  323. return ret;
  324. }
  325. return 0;
  326. }
  327. static av_cold int clv_decode_end(AVCodecContext *avctx)
  328. {
  329. CLVContext *const c = avctx->priv_data;
  330. av_frame_free(&c->pic);
  331. ff_free_vlc(&c->dc_vlc);
  332. ff_free_vlc(&c->ac_vlc);
  333. return 0;
  334. }
  335. AVCodec ff_clearvideo_decoder = {
  336. .name = "clearvideo",
  337. .long_name = NULL_IF_CONFIG_SMALL("Iterated Systems ClearVideo"),
  338. .type = AVMEDIA_TYPE_VIDEO,
  339. .id = AV_CODEC_ID_CLEARVIDEO,
  340. .priv_data_size = sizeof(CLVContext),
  341. .init = clv_decode_init,
  342. .close = clv_decode_end,
  343. .decode = clv_decode_frame,
  344. .capabilities = AV_CODEC_CAP_DR1,
  345. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
  346. };