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.

391 lines
13KB

  1. /*
  2. * ClearVideo decoder
  3. * Copyright (c) 2012 Konstantin Shishkov
  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. * ClearVideo decoder
  24. */
  25. #include "avcodec.h"
  26. #include "idctdsp.h"
  27. #include "internal.h"
  28. #include "get_bits.h"
  29. #include "bytestream.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. GetBitContext gb;
  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. } CLVContext;
  124. static inline int decode_block(CLVContext *ctx, int16_t *blk, int has_ac,
  125. int ac_quant)
  126. {
  127. GetBitContext *gb = &ctx->gb;
  128. int idx = 1, last = 0, val, skip;
  129. memset(blk, 0, sizeof(*blk) * 64);
  130. blk[0] = get_vlc2(gb, ctx->dc_vlc.table, 9, 3);
  131. if (blk[0] < 0)
  132. return AVERROR_INVALIDDATA;
  133. blk[0] -= 63;
  134. if (!has_ac)
  135. return 0;
  136. while (idx < 64 && !last) {
  137. val = get_vlc2(gb, ctx->ac_vlc.table, 9, 2);
  138. if (val < 0)
  139. return AVERROR_INVALIDDATA;
  140. if (val != 0x1BFF) {
  141. last = val >> 12;
  142. skip = (val >> 4) & 0xFF;
  143. val &= 0xF;
  144. if (get_bits1(gb))
  145. val = -val;
  146. } else {
  147. last = get_bits1(gb);
  148. skip = get_bits(gb, 6);
  149. val = get_sbits(gb, 8);
  150. }
  151. if (val) {
  152. int aval = FFABS(val), sign = val < 0;
  153. val = ac_quant * (2 * aval + 1);
  154. if (!(ac_quant & 1))
  155. val--;
  156. if (sign)
  157. val = -val;
  158. }
  159. idx += skip;
  160. if (idx >= 64)
  161. return AVERROR_INVALIDDATA;
  162. blk[ff_zigzag_direct[idx++]] = val;
  163. }
  164. return (idx <= 64 && last) ? 0 : -1;
  165. }
  166. #define DCT_TEMPLATE(blk, step, bias, shift, dshift, OP) \
  167. const int t0 = OP( 2841 * blk[1 * step] + 565 * blk[7 * step]); \
  168. const int t1 = OP( 565 * blk[1 * step] - 2841 * blk[7 * step]); \
  169. const int t2 = OP( 1609 * blk[5 * step] + 2408 * blk[3 * step]); \
  170. const int t3 = OP( 2408 * blk[5 * step] - 1609 * blk[3 * step]); \
  171. const int t4 = OP( 1108 * blk[2 * step] - 2676 * blk[6 * step]); \
  172. const int t5 = OP( 2676 * blk[2 * step] + 1108 * blk[6 * step]); \
  173. const int t6 = ((blk[0 * step] + blk[4 * step]) * (1 << dshift)) + bias; \
  174. const int t7 = ((blk[0 * step] - blk[4 * step]) * (1 << dshift)) + bias; \
  175. const int t8 = t0 + t2; \
  176. const int t9 = t0 - t2; \
  177. const int tA = (int)(181U * (t9 + (t1 - t3)) + 0x80) >> 8; \
  178. const int tB = (int)(181U * (t9 - (t1 - t3)) + 0x80) >> 8; \
  179. const int tC = t1 + t3; \
  180. \
  181. blk[0 * step] = (t6 + t5 + t8) >> shift; \
  182. blk[1 * step] = (t7 + t4 + tA) >> shift; \
  183. blk[2 * step] = (t7 - t4 + tB) >> shift; \
  184. blk[3 * step] = (t6 - t5 + tC) >> shift; \
  185. blk[4 * step] = (t6 - t5 - tC) >> shift; \
  186. blk[5 * step] = (t7 - t4 - tB) >> shift; \
  187. blk[6 * step] = (t7 + t4 - tA) >> shift; \
  188. blk[7 * step] = (t6 + t5 - t8) >> shift; \
  189. #define ROP(x) x
  190. #define COP(x) (((x) + 4) >> 3)
  191. static void clv_dct(int16_t *block)
  192. {
  193. int i;
  194. int16_t *ptr;
  195. ptr = block;
  196. for (i = 0; i < 8; i++) {
  197. DCT_TEMPLATE(ptr, 1, 0x80, 8, 11, ROP);
  198. ptr += 8;
  199. }
  200. ptr = block;
  201. for (i = 0; i < 8; i++) {
  202. DCT_TEMPLATE(ptr, 8, 0x2000, 14, 8, COP);
  203. ptr++;
  204. }
  205. }
  206. static int decode_mb(CLVContext *c, int x, int y)
  207. {
  208. int i;
  209. int has_ac[6];
  210. int off;
  211. for (i = 0; i < 6; i++)
  212. has_ac[i] = get_bits1(&c->gb);
  213. off = x * 16 + y * 16 * c->pic->linesize[0];
  214. for (i = 0; i < 4; i++) {
  215. if (decode_block(c, c->block, has_ac[i], c->ac_quant) < 0)
  216. return AVERROR_INVALIDDATA;
  217. if (!x && !(i & 1)) {
  218. c->block[0] += c->top_dc[0];
  219. c->top_dc[0] = c->block[0];
  220. } else {
  221. c->block[0] += c->left_dc[(i & 2) >> 1];
  222. }
  223. c->left_dc[(i & 2) >> 1] = c->block[0];
  224. c->block[0] *= c->luma_dc_quant;
  225. clv_dct(c->block);
  226. if (i == 2)
  227. off += c->pic->linesize[0] * 8;
  228. c->idsp.put_pixels_clamped(c->block, 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;
  258. int ret;
  259. int mb_ret = 0;
  260. bytestream2_init(&gb, buf, buf_size);
  261. if (avctx->codec_tag == MKTAG('C','L','V','1')) {
  262. int skip = bytestream2_get_byte(&gb);
  263. bytestream2_skip(&gb, (skip + 1) * 8);
  264. }
  265. frame_type = bytestream2_get_byte(&gb);
  266. if ((ret = ff_reget_buffer(avctx, c->pic)) < 0)
  267. return ret;
  268. c->pic->key_frame = frame_type & 0x20 ? 1 : 0;
  269. c->pic->pict_type = frame_type & 0x20 ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
  270. if (frame_type & 0x2) {
  271. bytestream2_get_be32(&gb); // frame size;
  272. c->ac_quant = bytestream2_get_byte(&gb);
  273. c->luma_dc_quant = 32;
  274. c->chroma_dc_quant = 32;
  275. if ((ret = init_get_bits8(&c->gb, buf + bytestream2_tell(&gb),
  276. (buf_size - bytestream2_tell(&gb)))) < 0)
  277. return ret;
  278. for (i = 0; i < 3; i++)
  279. c->top_dc[i] = 32;
  280. for (i = 0; i < 4; i++)
  281. c->left_dc[i] = 32;
  282. for (j = 0; j < c->mb_height; j++) {
  283. for (i = 0; i < c->mb_width; i++) {
  284. ret = decode_mb(c, i, j);
  285. if (ret < 0)
  286. mb_ret = ret;
  287. }
  288. }
  289. } else {
  290. }
  291. if ((ret = av_frame_ref(data, c->pic)) < 0)
  292. return ret;
  293. *got_frame = 1;
  294. return mb_ret < 0 ? mb_ret : buf_size;
  295. }
  296. static av_cold int clv_decode_init(AVCodecContext *avctx)
  297. {
  298. CLVContext * const c = avctx->priv_data;
  299. int ret;
  300. c->avctx = avctx;
  301. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  302. c->pic = av_frame_alloc();
  303. if (!c->pic)
  304. return AVERROR(ENOMEM);
  305. c->mb_width = FFALIGN(avctx->width, 16) >> 4;
  306. c->mb_height = FFALIGN(avctx->height, 16) >> 4;
  307. ff_idctdsp_init(&c->idsp, avctx);
  308. ret = init_vlc(&c->dc_vlc, 9, NUM_DC_CODES,
  309. clv_dc_bits, 1, 1,
  310. clv_dc_codes, 1, 1, 0);
  311. if (ret) {
  312. av_log(avctx, AV_LOG_ERROR, "Error initialising DC VLC\n");
  313. return ret;
  314. }
  315. ret = ff_init_vlc_sparse(&c->ac_vlc, 9, NUM_AC_CODES,
  316. clv_ac_bits, 1, 1,
  317. clv_ac_codes, 1, 1,
  318. clv_ac_syms, 2, 2, 0);
  319. if (ret) {
  320. av_log(avctx, AV_LOG_ERROR, "Error initialising AC VLC\n");
  321. return ret;
  322. }
  323. return 0;
  324. }
  325. static av_cold int clv_decode_end(AVCodecContext *avctx)
  326. {
  327. CLVContext * const c = avctx->priv_data;
  328. av_frame_free(&c->pic);
  329. ff_free_vlc(&c->dc_vlc);
  330. ff_free_vlc(&c->ac_vlc);
  331. return 0;
  332. }
  333. AVCodec ff_clearvideo_decoder = {
  334. .name = "clearvideo",
  335. .type = AVMEDIA_TYPE_VIDEO,
  336. .id = AV_CODEC_ID_CLEARVIDEO,
  337. .priv_data_size = sizeof(CLVContext),
  338. .init = clv_decode_init,
  339. .close = clv_decode_end,
  340. .decode = clv_decode_frame,
  341. .capabilities = AV_CODEC_CAP_DR1,
  342. .long_name = NULL_IF_CONFIG_SMALL("Iterated Systems ClearVideo"),
  343. };