Move/add COSTABLE/SINTABLE macros to dsputil to add extern definitions
[FFMpeg-mirror/lagarith.git] / libavcodec / tscc.c
blobb00b5c5568dc9cce9b22c43a11fbb99b3fa306d0
1 /*
2 * TechSmith Camtasia decoder
3 * Copyright (c) 2004 Konstantin Shishkov
5 * This file is part of FFmpeg.
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.
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.
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
22 /**
23 * @file libavcodec/tscc.c
24 * TechSmith Camtasia decoder
26 * Fourcc: TSCC
28 * Codec is very simple:
29 * it codes picture (picture difference, really)
30 * with algorithm almost identical to Windows RLE8,
31 * only without padding and with greater pixel sizes,
32 * then this coded picture is packed with ZLib
34 * Supports: BGR8,BGR555,BGR24 - only BGR8 and BGR555 tested
38 #include <stdio.h>
39 #include <stdlib.h>
41 #include "avcodec.h"
42 #include "msrledec.h"
44 #include <zlib.h>
48 * Decoder context
50 typedef struct TsccContext {
52 AVCodecContext *avctx;
53 AVFrame pic;
55 // Bits per pixel
56 int bpp;
57 // Decompressed data size
58 unsigned int decomp_size;
59 // Decompression buffer
60 unsigned char* decomp_buf;
61 int height;
62 z_stream zstream;
63 } CamtasiaContext;
67 * Decode a frame
70 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
72 const uint8_t *buf = avpkt->data;
73 int buf_size = avpkt->size;
74 CamtasiaContext * const c = avctx->priv_data;
75 const unsigned char *encoded = buf;
76 unsigned char *outptr;
77 int zret; // Zlib return code
78 int len = buf_size;
80 if(c->pic.data[0])
81 avctx->release_buffer(avctx, &c->pic);
83 c->pic.reference = 1;
84 c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
85 if(avctx->get_buffer(avctx, &c->pic) < 0){
86 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
87 return -1;
90 outptr = c->pic.data[0]; // Output image pointer
92 zret = inflateReset(&(c->zstream));
93 if (zret != Z_OK) {
94 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
95 return -1;
97 c->zstream.next_in = encoded;
98 c->zstream.avail_in = len;
99 c->zstream.next_out = c->decomp_buf;
100 c->zstream.avail_out = c->decomp_size;
101 zret = inflate(&(c->zstream), Z_FINISH);
102 // Z_DATA_ERROR means empty picture
103 if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
104 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
105 return -1;
109 if(zret != Z_DATA_ERROR)
110 ff_msrle_decode(avctx, (AVPicture*)&c->pic, c->bpp, c->decomp_buf, c->zstream.avail_out);
112 /* make the palette available on the way out */
113 if (c->avctx->pix_fmt == PIX_FMT_PAL8) {
114 memcpy(c->pic.data[1], c->avctx->palctrl->palette, AVPALETTE_SIZE);
115 if (c->avctx->palctrl->palette_changed) {
116 c->pic.palette_has_changed = 1;
117 c->avctx->palctrl->palette_changed = 0;
121 *data_size = sizeof(AVFrame);
122 *(AVFrame*)data = c->pic;
124 /* always report that the buffer was completely consumed */
125 return buf_size;
132 * Init tscc decoder
135 static av_cold int decode_init(AVCodecContext *avctx)
137 CamtasiaContext * const c = avctx->priv_data;
138 int zret; // Zlib return code
140 c->avctx = avctx;
142 c->height = avctx->height;
144 // Needed if zlib unused or init aborted before inflateInit
145 memset(&(c->zstream), 0, sizeof(z_stream));
146 switch(avctx->bits_per_coded_sample){
147 case 8: avctx->pix_fmt = PIX_FMT_PAL8; break;
148 case 16: avctx->pix_fmt = PIX_FMT_RGB555; break;
149 case 24:
150 avctx->pix_fmt = PIX_FMT_BGR24;
151 break;
152 case 32: avctx->pix_fmt = PIX_FMT_RGB32; break;
153 default: av_log(avctx, AV_LOG_ERROR, "Camtasia error: unknown depth %i bpp\n", avctx->bits_per_coded_sample);
154 return -1;
156 c->bpp = avctx->bits_per_coded_sample;
157 c->decomp_size = (avctx->width * c->bpp + (avctx->width + 254) / 255 + 2) * avctx->height + 2;//RLE in the 'best' case
159 /* Allocate decompression buffer */
160 if (c->decomp_size) {
161 if ((c->decomp_buf = av_malloc(c->decomp_size)) == NULL) {
162 av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
163 return 1;
167 c->zstream.zalloc = Z_NULL;
168 c->zstream.zfree = Z_NULL;
169 c->zstream.opaque = Z_NULL;
170 zret = inflateInit(&(c->zstream));
171 if (zret != Z_OK) {
172 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
173 return 1;
176 return 0;
183 * Uninit tscc decoder
186 static av_cold int decode_end(AVCodecContext *avctx)
188 CamtasiaContext * const c = avctx->priv_data;
190 av_freep(&c->decomp_buf);
192 if (c->pic.data[0])
193 avctx->release_buffer(avctx, &c->pic);
194 inflateEnd(&(c->zstream));
196 return 0;
199 AVCodec tscc_decoder = {
200 "camtasia",
201 CODEC_TYPE_VIDEO,
202 CODEC_ID_TSCC,
203 sizeof(CamtasiaContext),
204 decode_init,
205 NULL,
206 decode_end,
207 decode_frame,
208 CODEC_CAP_DR1,
209 .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),