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.

379 lines
11KB

  1. /*
  2. * TechSmith Screen Codec 2 (aka Dora) 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. * TechSmith Screen Codec 2 decoder
  24. */
  25. #include <inttypes.h>
  26. #define BITSTREAM_READER_LE
  27. #include "avcodec.h"
  28. #include "bytestream.h"
  29. #include "get_bits.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. GetBitContext gb;
  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. const uint16_t *ac_vlc_syms = tscc2_ac_vlc_syms;
  56. const uint8_t *ac_vlc_lens = tscc2_ac_vlc_lens;
  57. int i, ret;
  58. ret = ff_init_vlc_from_lengths(&c->dc_vlc, 9, DC_VLC_COUNT,
  59. tscc2_dc_vlc_lens, 1,
  60. tscc2_dc_vlc_syms, 2, 2,
  61. 0, INIT_VLC_OUTPUT_LE, c->avctx);
  62. if (ret)
  63. return ret;
  64. for (i = 0; i < NUM_VLC_SETS; i++) {
  65. ret = ff_init_vlc_from_lengths(c->nc_vlc + i, 9, 16,
  66. tscc2_nc_vlc_lens[i], 1,
  67. tscc2_nc_vlc_syms[i], 1, 1,
  68. 0, INIT_VLC_OUTPUT_LE, c->avctx);
  69. if (ret)
  70. return ret;
  71. ret = ff_init_vlc_from_lengths(c->ac_vlc + i, 9, tscc2_ac_vlc_sizes[i],
  72. ac_vlc_lens, 1,
  73. ac_vlc_syms, 2, 2,
  74. 0, INIT_VLC_OUTPUT_LE, c->avctx);
  75. if (ret)
  76. return ret;
  77. ac_vlc_lens += tscc2_ac_vlc_sizes[i];
  78. ac_vlc_syms += tscc2_ac_vlc_sizes[i];
  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. GetBitContext *gb = &c->gb;
  115. int prev_dc, dc, nc, ac, bpos, val;
  116. int i, j, k, l;
  117. if (get_bits1(gb)) {
  118. if (get_bits1(gb)) {
  119. val = get_bits(gb, 8);
  120. for (i = 0; i < 8; i++, dst += stride)
  121. memset(dst, val, 16);
  122. } else {
  123. if (get_bits_left(gb) < 16 * 8 * 8)
  124. return AVERROR_INVALIDDATA;
  125. for (i = 0; i < 8; i++) {
  126. for (j = 0; j < 16; j++)
  127. dst[j] = get_bits(gb, 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 = get_bits(gb, 8);
  138. } else {
  139. dc = get_vlc2(gb, c->dc_vlc.table, 9, 2);
  140. if (dc == 0x100)
  141. dc = get_bits(gb, 8);
  142. }
  143. dc = (dc + prev_dc) & 0xFF;
  144. prev_dc = dc;
  145. c->block[0] = dc;
  146. nc = get_vlc2(gb, c->nc_vlc[vlc_set].table, 9, 1);
  147. bpos = 1;
  148. memset(c->block + 1, 0, 15 * sizeof(*c->block));
  149. for (l = 0; l < nc; l++) {
  150. ac = get_vlc2(gb, c->ac_vlc[vlc_set].table, 9, 2);
  151. if (ac == 0x1000)
  152. ac = get_bits(gb, 12);
  153. bpos += ac & 0xF;
  154. if (bpos >= 16)
  155. return AVERROR_INVALIDDATA;
  156. val = sign_extend(ac >> 4, 8);
  157. c->block[ff_zigzag_scan[bpos++]] = val;
  158. }
  159. tscc2_idct4_put(c->block, q, dst + k * 4, stride);
  160. }
  161. dst += 4 * stride;
  162. }
  163. return 0;
  164. }
  165. static int tscc2_decode_slice(TSCC2Context *c, int mb_y,
  166. const uint8_t *buf, int buf_size)
  167. {
  168. int i, mb_x, q, ret;
  169. int off;
  170. if ((ret = init_get_bits8(&c->gb, buf, buf_size)) < 0)
  171. return ret;
  172. for (mb_x = 0; mb_x < c->mb_width; mb_x++) {
  173. q = c->slice_quants[mb_x + c->mb_width * mb_y];
  174. if (q == 0 || q == 3) // skip block
  175. continue;
  176. for (i = 0; i < 3; i++) {
  177. off = mb_x * 16 + mb_y * 8 * c->pic->linesize[i];
  178. ret = tscc2_decode_mb(c, c->q[q - 1], c->quant[q - 1] - 2,
  179. c->pic->data[i] + off, c->pic->linesize[i], i);
  180. if (ret)
  181. return ret;
  182. }
  183. }
  184. return 0;
  185. }
  186. static int tscc2_decode_frame(AVCodecContext *avctx, void *data,
  187. int *got_frame, AVPacket *avpkt)
  188. {
  189. const uint8_t *buf = avpkt->data;
  190. int buf_size = avpkt->size;
  191. TSCC2Context *c = avctx->priv_data;
  192. GetByteContext gb;
  193. uint32_t frame_type, size;
  194. int i, val, len, pos = 0;
  195. int num_mb = c->mb_width * c->mb_height;
  196. int ret;
  197. bytestream2_init(&gb, buf, buf_size);
  198. frame_type = bytestream2_get_byte(&gb);
  199. if (frame_type > 1) {
  200. av_log(avctx, AV_LOG_ERROR, "Incorrect frame type %"PRIu32"\n",
  201. frame_type);
  202. return AVERROR_INVALIDDATA;
  203. }
  204. if (frame_type == 0) {
  205. // Skip duplicate frames
  206. return buf_size;
  207. }
  208. if ((ret = ff_reget_buffer(avctx, c->pic, 0)) < 0) {
  209. return ret;
  210. }
  211. if (bytestream2_get_bytes_left(&gb) < 4) {
  212. av_log(avctx, AV_LOG_ERROR, "Frame is too short\n");
  213. return AVERROR_INVALIDDATA;
  214. }
  215. c->quant[0] = bytestream2_get_byte(&gb);
  216. c->quant[1] = bytestream2_get_byte(&gb);
  217. if (c->quant[0] < 2 || c->quant[0] > NUM_VLC_SETS + 1 ||
  218. c->quant[1] < 2 || c->quant[1] > NUM_VLC_SETS + 1) {
  219. av_log(avctx, AV_LOG_ERROR, "Invalid quantisers %d / %d\n",
  220. c->quant[0], c->quant[1]);
  221. return AVERROR_INVALIDDATA;
  222. }
  223. for (i = 0; i < 3; i++) {
  224. c->q[0][i] = tscc2_quants[c->quant[0] - 2][i];
  225. c->q[1][i] = tscc2_quants[c->quant[1] - 2][i];
  226. }
  227. bytestream2_skip(&gb, 1);
  228. size = bytestream2_get_le32(&gb);
  229. if (size > bytestream2_get_bytes_left(&gb)) {
  230. av_log(avctx, AV_LOG_ERROR, "Slice properties chunk is too large\n");
  231. return AVERROR_INVALIDDATA;
  232. }
  233. for (i = 0; i < size; i++) {
  234. val = bytestream2_get_byte(&gb);
  235. len = val & 0x3F;
  236. val >>= 6;
  237. if (pos + len > num_mb) {
  238. av_log(avctx, AV_LOG_ERROR, "Too many slice properties\n");
  239. return AVERROR_INVALIDDATA;
  240. }
  241. memset(c->slice_quants + pos, val, len);
  242. pos += len;
  243. }
  244. if (pos < num_mb) {
  245. av_log(avctx, AV_LOG_ERROR, "Too few slice properties (%d / %d)\n",
  246. pos, num_mb);
  247. return AVERROR_INVALIDDATA;
  248. }
  249. for (i = 0; i < c->mb_height; i++) {
  250. size = bytestream2_peek_byte(&gb);
  251. if (size & 1) {
  252. size = bytestream2_get_byte(&gb) - 1;
  253. } else {
  254. size = bytestream2_get_le32(&gb) >> 1;
  255. }
  256. if (!size) {
  257. int skip_row = 1, j, off = i * c->mb_width;
  258. for (j = 0; j < c->mb_width; j++) {
  259. if (c->slice_quants[off + j] == 1 ||
  260. c->slice_quants[off + j] == 2) {
  261. skip_row = 0;
  262. break;
  263. }
  264. }
  265. if (!skip_row) {
  266. av_log(avctx, AV_LOG_ERROR, "Non-skip row with zero size\n");
  267. return AVERROR_INVALIDDATA;
  268. }
  269. }
  270. if (bytestream2_get_bytes_left(&gb) < size) {
  271. av_log(avctx, AV_LOG_ERROR, "Invalid slice size (%"PRIu32"/%u)\n",
  272. size, bytestream2_get_bytes_left(&gb));
  273. return AVERROR_INVALIDDATA;
  274. }
  275. ret = tscc2_decode_slice(c, i, buf + bytestream2_tell(&gb), size);
  276. if (ret) {
  277. av_log(avctx, AV_LOG_ERROR, "Error decoding slice %d\n", i);
  278. return ret;
  279. }
  280. bytestream2_skip(&gb, size);
  281. }
  282. *got_frame = 1;
  283. if ((ret = av_frame_ref(data, c->pic)) < 0)
  284. return ret;
  285. /* always report that the buffer was completely consumed */
  286. return buf_size;
  287. }
  288. static av_cold int tscc2_decode_end(AVCodecContext *avctx)
  289. {
  290. TSCC2Context * const c = avctx->priv_data;
  291. av_frame_free(&c->pic);
  292. av_freep(&c->slice_quants);
  293. free_vlcs(c);
  294. return 0;
  295. }
  296. static av_cold int tscc2_decode_init(AVCodecContext *avctx)
  297. {
  298. TSCC2Context * const c = avctx->priv_data;
  299. int ret;
  300. c->avctx = avctx;
  301. avctx->pix_fmt = AV_PIX_FMT_YUV444P;
  302. if ((ret = init_vlcs(c)) < 0) {
  303. av_log(avctx, AV_LOG_ERROR, "Cannot initialise VLCs\n");
  304. return ret;
  305. }
  306. c->mb_width = FFALIGN(avctx->width, 16) >> 4;
  307. c->mb_height = FFALIGN(avctx->height, 8) >> 3;
  308. c->slice_quants = av_malloc(c->mb_width * c->mb_height);
  309. if (!c->slice_quants) {
  310. av_log(avctx, AV_LOG_ERROR, "Cannot allocate slice information\n");
  311. return AVERROR(ENOMEM);
  312. }
  313. c->pic = av_frame_alloc();
  314. if (!c->pic)
  315. return AVERROR(ENOMEM);
  316. return 0;
  317. }
  318. AVCodec ff_tscc2_decoder = {
  319. .name = "tscc2",
  320. .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Codec 2"),
  321. .type = AVMEDIA_TYPE_VIDEO,
  322. .id = AV_CODEC_ID_TSCC2,
  323. .priv_data_size = sizeof(TSCC2Context),
  324. .init = tscc2_decode_init,
  325. .close = tscc2_decode_end,
  326. .decode = tscc2_decode_frame,
  327. .capabilities = AV_CODEC_CAP_DR1,
  328. .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE,
  329. };