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.

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