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.

390 lines
12KB

  1. /*
  2. * TechSmith Screen Codec 2 (aka Dora) 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. * TechSmith Screen Codec 2 decoder
  24. */
  25. #include <inttypes.h>
  26. #define BITSTREAM_READER_LE
  27. #include "avcodec.h"
  28. #include "bitstream.h"
  29. #include "bytestream.h"
  30. #include "internal.h"
  31. #include "mathops.h"
  32. #include "tscc2data.h"
  33. typedef struct TSCC2Context {
  34. AVCodecContext *avctx;
  35. AVFrame *pic;
  36. int mb_width, mb_height;
  37. uint8_t *slice_quants;
  38. int quant[2];
  39. int q[2][3];
  40. BitstreamContext bc;
  41. VLC dc_vlc, nc_vlc[NUM_VLC_SETS], ac_vlc[NUM_VLC_SETS];
  42. int block[16];
  43. } TSCC2Context;
  44. static av_cold void free_vlcs(TSCC2Context *c)
  45. {
  46. int i;
  47. ff_free_vlc(&c->dc_vlc);
  48. for (i = 0; i < NUM_VLC_SETS; i++) {
  49. ff_free_vlc(c->nc_vlc + i);
  50. ff_free_vlc(c->ac_vlc + i);
  51. }
  52. }
  53. static av_cold int init_vlcs(TSCC2Context *c)
  54. {
  55. int i, ret;
  56. ret = ff_init_vlc_sparse(&c->dc_vlc, 9, DC_VLC_COUNT,
  57. tscc2_dc_vlc_bits, 1, 1,
  58. tscc2_dc_vlc_codes, 2, 2,
  59. tscc2_dc_vlc_syms, 2, 2, INIT_VLC_LE);
  60. if (ret)
  61. return ret;
  62. for (i = 0; i < NUM_VLC_SETS; i++) {
  63. ret = ff_init_vlc_sparse(c->nc_vlc + i, 9, 16,
  64. tscc2_nc_vlc_bits[i], 1, 1,
  65. tscc2_nc_vlc_codes[i], 2, 2,
  66. tscc2_nc_vlc_syms, 1, 1, INIT_VLC_LE);
  67. if (ret) {
  68. free_vlcs(c);
  69. return ret;
  70. }
  71. ret = ff_init_vlc_sparse(c->ac_vlc + i, 9, tscc2_ac_vlc_sizes[i],
  72. tscc2_ac_vlc_bits[i], 1, 1,
  73. tscc2_ac_vlc_codes[i], 2, 2,
  74. tscc2_ac_vlc_syms[i], 2, 2, INIT_VLC_LE);
  75. if (ret) {
  76. free_vlcs(c);
  77. return ret;
  78. }
  79. }
  80. return 0;
  81. }
  82. #define DEQUANT(val, q) ((q * val + 0x80) >> 8)
  83. #define DCT1D(d0, d1, d2, d3, s0, s1, s2, s3, OP) \
  84. OP(d0, 5 * ((s0) + (s1) + (s2)) + 2 * (s3)); \
  85. OP(d1, 5 * ((s0) - (s2) - (s3)) + 2 * (s1)); \
  86. OP(d2, 5 * ((s0) - (s2) + (s3)) - 2 * (s1)); \
  87. OP(d3, 5 * ((s0) - (s1) + (s2)) - 2 * (s3)); \
  88. #define COL_OP(a, b) a = b
  89. #define ROW_OP(a, b) a = ((b) + 0x20) >> 6
  90. static void tscc2_idct4_put(int *in, int q[3], uint8_t *dst, int stride)
  91. {
  92. int i;
  93. int tblk[4 * 4];
  94. int t0, t1, t2, t3;
  95. for (i = 0; i < 4; i++) {
  96. t0 = DEQUANT(q[0 + (i & 1)], in[0 * 4 + i]);
  97. t1 = DEQUANT(q[1 + (i & 1)], in[1 * 4 + i]);
  98. t2 = DEQUANT(q[0 + (i & 1)], in[2 * 4 + i]);
  99. t3 = DEQUANT(q[1 + (i & 1)], in[3 * 4 + i]);
  100. DCT1D(tblk[0 * 4 + i], tblk[1 * 4 + i],
  101. tblk[2 * 4 + i], tblk[3 * 4 + i],
  102. t0, t1, t2, t3, COL_OP);
  103. }
  104. for (i = 0; i < 4; i++) {
  105. DCT1D(dst[0], dst[1], dst[2], dst[3],
  106. tblk[i * 4 + 0], tblk[i * 4 + 1],
  107. tblk[i * 4 + 2], tblk[i * 4 + 3], ROW_OP);
  108. dst += stride;
  109. }
  110. }
  111. static int tscc2_decode_mb(TSCC2Context *c, int *q, int vlc_set,
  112. uint8_t *dst, int stride, int plane)
  113. {
  114. BitstreamContext *bc = &c->bc;
  115. int prev_dc, dc, nc, ac, bpos, val;
  116. int i, j, k, l;
  117. if (bitstream_read_bit(bc)) {
  118. if (bitstream_read_bit(bc)) {
  119. val = bitstream_read(bc, 8);
  120. for (i = 0; i < 8; i++, dst += stride)
  121. memset(dst, val, 16);
  122. } else {
  123. if (bitstream_bits_left(bc) < 16 * 8 * 8)
  124. return AVERROR_INVALIDDATA;
  125. for (i = 0; i < 8; i++) {
  126. for (j = 0; j < 16; j++)
  127. dst[j] = bitstream_read(bc, 8);
  128. dst += stride;
  129. }
  130. }
  131. return 0;
  132. }
  133. prev_dc = 0;
  134. for (j = 0; j < 2; j++) {
  135. for (k = 0; k < 4; k++) {
  136. if (!(j | k)) {
  137. dc = bitstream_read(bc, 8);
  138. } else {
  139. dc = bitstream_read_vlc(bc, c->dc_vlc.table, 9, 2);
  140. if (dc == -1)
  141. return AVERROR_INVALIDDATA;
  142. if (dc == 0x100)
  143. dc = bitstream_read(bc, 8);
  144. }
  145. dc = (dc + prev_dc) & 0xFF;
  146. prev_dc = dc;
  147. c->block[0] = dc;
  148. nc = bitstream_read_vlc(bc, c->nc_vlc[vlc_set].table, 9, 1);
  149. if (nc == -1)
  150. return AVERROR_INVALIDDATA;
  151. bpos = 1;
  152. memset(c->block + 1, 0, 15 * sizeof(*c->block));
  153. for (l = 0; l < nc; l++) {
  154. ac = bitstream_read_vlc(bc, c->ac_vlc[vlc_set].table, 9, 2);
  155. if (ac == -1)
  156. return AVERROR_INVALIDDATA;
  157. if (ac == 0x1000)
  158. ac = bitstream_read(bc, 12);
  159. bpos += ac & 0xF;
  160. if (bpos >= 16)
  161. return AVERROR_INVALIDDATA;
  162. val = sign_extend(ac >> 4, 8);
  163. c->block[ff_zigzag_scan[bpos++]] = val;
  164. }
  165. tscc2_idct4_put(c->block, q, dst + k * 4, stride);
  166. }
  167. dst += 4 * stride;
  168. }
  169. return 0;
  170. }
  171. static int tscc2_decode_slice(TSCC2Context *c, int mb_y,
  172. const uint8_t *buf, int buf_size)
  173. {
  174. int i, mb_x, q, ret;
  175. int off;
  176. bitstream_init8(&c->bc, buf, buf_size);
  177. for (mb_x = 0; mb_x < c->mb_width; mb_x++) {
  178. q = c->slice_quants[mb_x + c->mb_width * mb_y];
  179. if (q == 0 || q == 3) // skip block
  180. continue;
  181. for (i = 0; i < 3; i++) {
  182. off = mb_x * 16 + mb_y * 8 * c->pic->linesize[i];
  183. ret = tscc2_decode_mb(c, c->q[q - 1], c->quant[q - 1] - 2,
  184. c->pic->data[i] + off, c->pic->linesize[i], i);
  185. if (ret)
  186. return ret;
  187. }
  188. }
  189. return 0;
  190. }
  191. static int tscc2_decode_frame(AVCodecContext *avctx, void *data,
  192. int *got_frame, AVPacket *avpkt)
  193. {
  194. const uint8_t *buf = avpkt->data;
  195. int buf_size = avpkt->size;
  196. TSCC2Context *c = avctx->priv_data;
  197. GetByteContext gb;
  198. uint32_t frame_type, size;
  199. int i, val, len, pos = 0;
  200. int num_mb = c->mb_width * c->mb_height;
  201. int ret;
  202. bytestream2_init(&gb, buf, buf_size);
  203. frame_type = bytestream2_get_byte(&gb);
  204. if (frame_type > 1) {
  205. av_log(avctx, AV_LOG_ERROR, "Incorrect frame type %"PRIu32"\n",
  206. frame_type);
  207. return AVERROR_INVALIDDATA;
  208. }
  209. if ((ret = ff_reget_buffer(avctx, c->pic)) < 0) {
  210. av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
  211. return ret;
  212. }
  213. if (frame_type == 0) {
  214. *got_frame = 1;
  215. if ((ret = av_frame_ref(data, c->pic)) < 0)
  216. return ret;
  217. return buf_size;
  218. }
  219. if (bytestream2_get_bytes_left(&gb) < 4) {
  220. av_log(avctx, AV_LOG_ERROR, "Frame is too short\n");
  221. return AVERROR_INVALIDDATA;
  222. }
  223. c->quant[0] = bytestream2_get_byte(&gb);
  224. c->quant[1] = bytestream2_get_byte(&gb);
  225. if (c->quant[0] < 2 || c->quant[0] > NUM_VLC_SETS + 1 ||
  226. c->quant[1] < 2 || c->quant[1] > NUM_VLC_SETS + 1) {
  227. av_log(avctx, AV_LOG_ERROR, "Invalid quantisers %d / %d\n",
  228. c->quant[0], c->quant[1]);
  229. return AVERROR_INVALIDDATA;
  230. }
  231. for (i = 0; i < 3; i++) {
  232. c->q[0][i] = tscc2_quants[c->quant[0] - 2][i];
  233. c->q[1][i] = tscc2_quants[c->quant[1] - 2][i];
  234. }
  235. bytestream2_skip(&gb, 1);
  236. size = bytestream2_get_le32(&gb);
  237. if (size > bytestream2_get_bytes_left(&gb)) {
  238. av_log(avctx, AV_LOG_ERROR, "Slice properties chunk is too large\n");
  239. return AVERROR_INVALIDDATA;
  240. }
  241. for (i = 0; i < size; i++) {
  242. val = bytestream2_get_byte(&gb);
  243. len = val & 0x3F;
  244. val >>= 6;
  245. if (pos + len > num_mb) {
  246. av_log(avctx, AV_LOG_ERROR, "Too many slice properties\n");
  247. return AVERROR_INVALIDDATA;
  248. }
  249. memset(c->slice_quants + pos, val, len);
  250. pos += len;
  251. }
  252. if (pos < num_mb) {
  253. av_log(avctx, AV_LOG_ERROR, "Too few slice properties (%d / %d)\n",
  254. pos, num_mb);
  255. return AVERROR_INVALIDDATA;
  256. }
  257. for (i = 0; i < c->mb_height; i++) {
  258. size = bytestream2_peek_byte(&gb);
  259. if (size & 1) {
  260. size = bytestream2_get_byte(&gb) - 1;
  261. } else {
  262. size = bytestream2_get_le32(&gb) >> 1;
  263. }
  264. if (!size) {
  265. int skip_row = 1, j, off = i * c->mb_width;
  266. for (j = 0; j < c->mb_width; j++) {
  267. if (c->slice_quants[off + j] == 1 ||
  268. c->slice_quants[off + j] == 2) {
  269. skip_row = 0;
  270. break;
  271. }
  272. }
  273. if (!skip_row) {
  274. av_log(avctx, AV_LOG_ERROR, "Non-skip row with zero size\n");
  275. return AVERROR_INVALIDDATA;
  276. }
  277. }
  278. if (bytestream2_get_bytes_left(&gb) < size) {
  279. av_log(avctx, AV_LOG_ERROR, "Invalid slice size (%"PRIu32"/%u)\n",
  280. size, bytestream2_get_bytes_left(&gb));
  281. return AVERROR_INVALIDDATA;
  282. }
  283. ret = tscc2_decode_slice(c, i, buf + bytestream2_tell(&gb), size);
  284. if (ret) {
  285. av_log(avctx, AV_LOG_ERROR, "Error decoding slice %d\n", i);
  286. return ret;
  287. }
  288. bytestream2_skip(&gb, size);
  289. }
  290. *got_frame = 1;
  291. if ((ret = av_frame_ref(data, c->pic)) < 0)
  292. return ret;
  293. /* always report that the buffer was completely consumed */
  294. return buf_size;
  295. }
  296. static av_cold int tscc2_decode_end(AVCodecContext *avctx)
  297. {
  298. TSCC2Context * const c = avctx->priv_data;
  299. av_frame_free(&c->pic);
  300. av_freep(&c->slice_quants);
  301. free_vlcs(c);
  302. return 0;
  303. }
  304. static av_cold int tscc2_decode_init(AVCodecContext *avctx)
  305. {
  306. TSCC2Context * const c = avctx->priv_data;
  307. int ret;
  308. c->avctx = avctx;
  309. avctx->pix_fmt = AV_PIX_FMT_YUV444P;
  310. if ((ret = init_vlcs(c)) < 0) {
  311. av_log(avctx, AV_LOG_ERROR, "Cannot initialise VLCs\n");
  312. return ret;
  313. }
  314. c->mb_width = FFALIGN(avctx->width, 16) >> 4;
  315. c->mb_height = FFALIGN(avctx->height, 8) >> 3;
  316. c->slice_quants = av_malloc(c->mb_width * c->mb_height);
  317. if (!c->slice_quants) {
  318. av_log(avctx, AV_LOG_ERROR, "Cannot allocate slice information\n");
  319. free_vlcs(c);
  320. return AVERROR(ENOMEM);
  321. }
  322. c->pic = av_frame_alloc();
  323. if (!c->pic) {
  324. tscc2_decode_end(avctx);
  325. return AVERROR(ENOMEM);
  326. }
  327. return 0;
  328. }
  329. AVCodec ff_tscc2_decoder = {
  330. .name = "tscc2",
  331. .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Codec 2"),
  332. .type = AVMEDIA_TYPE_VIDEO,
  333. .id = AV_CODEC_ID_TSCC2,
  334. .priv_data_size = sizeof(TSCC2Context),
  335. .init = tscc2_decode_init,
  336. .close = tscc2_decode_end,
  337. .decode = tscc2_decode_frame,
  338. .capabilities = AV_CODEC_CAP_DR1,
  339. };