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.

190 lines
5.6KB

  1. /*
  2. * TechSmith Camtasia decoder
  3. * Copyright (c) 2004 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 Camtasia decoder
  24. *
  25. * Fourcc: TSCC
  26. *
  27. * Codec is very simple:
  28. * it codes picture (picture difference, really)
  29. * with algorithm almost identical to Windows RLE8,
  30. * only without padding and with greater pixel sizes,
  31. * then this coded picture is packed with ZLib
  32. *
  33. * Supports: BGR8,BGR555,BGR24 - only BGR8 and BGR555 tested
  34. */
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include "avcodec.h"
  38. #include "internal.h"
  39. #include "msrledec.h"
  40. #include <zlib.h>
  41. typedef struct TsccContext {
  42. AVCodecContext *avctx;
  43. AVFrame *frame;
  44. // Bits per pixel
  45. int bpp;
  46. // Decompressed data size
  47. unsigned int decomp_size;
  48. // Decompression buffer
  49. unsigned char* decomp_buf;
  50. GetByteContext gb;
  51. int height;
  52. z_stream zstream;
  53. uint32_t pal[256];
  54. } CamtasiaContext;
  55. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  56. AVPacket *avpkt)
  57. {
  58. const uint8_t *buf = avpkt->data;
  59. int buf_size = avpkt->size;
  60. CamtasiaContext * const c = avctx->priv_data;
  61. AVFrame *frame = c->frame;
  62. int ret;
  63. ret = inflateReset(&c->zstream);
  64. if (ret != Z_OK) {
  65. av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", ret);
  66. return AVERROR_UNKNOWN;
  67. }
  68. c->zstream.next_in = buf;
  69. c->zstream.avail_in = buf_size;
  70. c->zstream.next_out = c->decomp_buf;
  71. c->zstream.avail_out = c->decomp_size;
  72. ret = inflate(&c->zstream, Z_FINISH);
  73. // Z_DATA_ERROR means empty picture
  74. if ((ret != Z_OK) && (ret != Z_STREAM_END) && (ret != Z_DATA_ERROR)) {
  75. av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", ret);
  76. return AVERROR_UNKNOWN;
  77. }
  78. if ((ret = ff_reget_buffer(avctx, frame)) < 0)
  79. return ret;
  80. if (ret != Z_DATA_ERROR) {
  81. bytestream2_init(&c->gb, c->decomp_buf,
  82. c->decomp_size - c->zstream.avail_out);
  83. ff_msrle_decode(avctx, frame, c->bpp, &c->gb);
  84. }
  85. /* make the palette available on the way out */
  86. if (c->avctx->pix_fmt == AV_PIX_FMT_PAL8) {
  87. int size;
  88. const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, &size);
  89. if (pal && size == AVPALETTE_SIZE) {
  90. frame->palette_has_changed = 1;
  91. memcpy(c->pal, pal, AVPALETTE_SIZE);
  92. } else if (pal) {
  93. av_log(avctx, AV_LOG_ERROR, "Palette size %d is wrong\n", size);
  94. }
  95. memcpy(frame->data[1], c->pal, AVPALETTE_SIZE);
  96. }
  97. if ((ret = av_frame_ref(data, frame)) < 0)
  98. return ret;
  99. *got_frame = 1;
  100. /* always report that the buffer was completely consumed */
  101. return buf_size;
  102. }
  103. static av_cold int decode_init(AVCodecContext *avctx)
  104. {
  105. CamtasiaContext * const c = avctx->priv_data;
  106. int zret; // Zlib return code
  107. c->avctx = avctx;
  108. c->height = avctx->height;
  109. // Needed if zlib unused or init aborted before inflateInit
  110. memset(&c->zstream, 0, sizeof(z_stream));
  111. switch(avctx->bits_per_coded_sample){
  112. case 8: avctx->pix_fmt = AV_PIX_FMT_PAL8; break;
  113. case 16: avctx->pix_fmt = AV_PIX_FMT_RGB555; break;
  114. case 24:
  115. avctx->pix_fmt = AV_PIX_FMT_BGR24;
  116. break;
  117. case 32: avctx->pix_fmt = AV_PIX_FMT_0RGB32; break;
  118. default: av_log(avctx, AV_LOG_ERROR, "Camtasia error: unknown depth %i bpp\n", avctx->bits_per_coded_sample);
  119. return AVERROR_PATCHWELCOME;
  120. }
  121. c->bpp = avctx->bits_per_coded_sample;
  122. // buffer size for RLE 'best' case when 2-byte code precedes each pixel and there may be padding after it too
  123. c->decomp_size = (((avctx->width * c->bpp + 7) >> 3) + 3 * avctx->width + 2) * avctx->height + 2;
  124. /* Allocate decompression buffer */
  125. if (c->decomp_size) {
  126. if (!(c->decomp_buf = av_malloc(c->decomp_size))) {
  127. av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
  128. return AVERROR(ENOMEM);
  129. }
  130. }
  131. c->zstream.zalloc = Z_NULL;
  132. c->zstream.zfree = Z_NULL;
  133. c->zstream.opaque = Z_NULL;
  134. zret = inflateInit(&c->zstream);
  135. if (zret != Z_OK) {
  136. av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
  137. return AVERROR_UNKNOWN;
  138. }
  139. c->frame = av_frame_alloc();
  140. return 0;
  141. }
  142. static av_cold int decode_end(AVCodecContext *avctx)
  143. {
  144. CamtasiaContext * const c = avctx->priv_data;
  145. av_freep(&c->decomp_buf);
  146. av_frame_free(&c->frame);
  147. inflateEnd(&c->zstream);
  148. return 0;
  149. }
  150. AVCodec ff_tscc_decoder = {
  151. .name = "camtasia",
  152. .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
  153. .type = AVMEDIA_TYPE_VIDEO,
  154. .id = AV_CODEC_ID_TSCC,
  155. .priv_data_size = sizeof(CamtasiaContext),
  156. .init = decode_init,
  157. .close = decode_end,
  158. .decode = decode_frame,
  159. .capabilities = AV_CODEC_CAP_DR1,
  160. };