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