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