tscc.c
Go to the documentation of this file.
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 
38 #include <stdio.h>
39 #include <stdlib.h>
40 
41 #include "avcodec.h"
42 #include "internal.h"
43 #include "msrledec.h"
44 
45 #include <zlib.h>
46 
47 typedef struct TsccContext {
48 
51 
52  // Bits per pixel
53  int bpp;
54  // Decompressed data size
55  unsigned int decomp_size;
56  // Decompression buffer
57  unsigned char* decomp_buf;
59  int height;
60  z_stream zstream;
61 
62  uint32_t pal[256];
64 
65 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
66  AVPacket *avpkt)
67 {
68  const uint8_t *buf = avpkt->data;
69  int buf_size = avpkt->size;
70  CamtasiaContext * const c = avctx->priv_data;
71  const unsigned char *encoded = buf;
72  AVFrame *frame = c->frame;
73  int zret; // Zlib return code
74  int ret, len = buf_size;
75 
76  if ((ret = ff_reget_buffer(avctx, frame)) < 0)
77  return ret;
78 
79  zret = inflateReset(&c->zstream);
80  if (zret != Z_OK) {
81  av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
82  return AVERROR_UNKNOWN;
83  }
84  c->zstream.next_in = (uint8_t*)encoded;
85  c->zstream.avail_in = len;
86  c->zstream.next_out = c->decomp_buf;
87  c->zstream.avail_out = c->decomp_size;
88  zret = inflate(&c->zstream, Z_FINISH);
89  // Z_DATA_ERROR means empty picture
90  if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
91  av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
92  return AVERROR_UNKNOWN;
93  }
94 
95 
96  if (zret != Z_DATA_ERROR) {
98  c->decomp_size - c->zstream.avail_out);
99  ff_msrle_decode(avctx, (AVPicture*)frame, c->bpp, &c->gb);
100  }
101 
102  /* make the palette available on the way out */
103  if (c->avctx->pix_fmt == AV_PIX_FMT_PAL8) {
105 
106  if (pal) {
107  frame->palette_has_changed = 1;
108  memcpy(c->pal, pal, AVPALETTE_SIZE);
109  }
110  memcpy(frame->data[1], c->pal, AVPALETTE_SIZE);
111  }
112 
113  if ((ret = av_frame_ref(data, frame)) < 0)
114  return ret;
115  *got_frame = 1;
116 
117  /* always report that the buffer was completely consumed */
118  return buf_size;
119 }
120 
122 {
123  CamtasiaContext * const c = avctx->priv_data;
124  int zret; // Zlib return code
125 
126  c->avctx = avctx;
127 
128  c->height = avctx->height;
129 
130  // Needed if zlib unused or init aborted before inflateInit
131  memset(&c->zstream, 0, sizeof(z_stream));
132  switch(avctx->bits_per_coded_sample){
133  case 8: avctx->pix_fmt = AV_PIX_FMT_PAL8; break;
134  case 16: avctx->pix_fmt = AV_PIX_FMT_RGB555; break;
135  case 24:
136  avctx->pix_fmt = AV_PIX_FMT_BGR24;
137  break;
138  case 32: avctx->pix_fmt = AV_PIX_FMT_RGB32; break;
139  default: av_log(avctx, AV_LOG_ERROR, "Camtasia error: unknown depth %i bpp\n", avctx->bits_per_coded_sample);
140  return AVERROR_PATCHWELCOME;
141  }
142  c->bpp = avctx->bits_per_coded_sample;
143  // buffer size for RLE 'best' case when 2-byte code precedes each pixel and there may be padding after it too
144  c->decomp_size = (((avctx->width * c->bpp + 7) >> 3) + 3 * avctx->width + 2) * avctx->height + 2;
145 
146  /* Allocate decompression buffer */
147  if (c->decomp_size) {
148  if ((c->decomp_buf = av_malloc(c->decomp_size)) == NULL) {
149  av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
150  return AVERROR(ENOMEM);
151  }
152  }
153 
154  c->zstream.zalloc = Z_NULL;
155  c->zstream.zfree = Z_NULL;
156  c->zstream.opaque = Z_NULL;
157  zret = inflateInit(&c->zstream);
158  if (zret != Z_OK) {
159  av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
160  return AVERROR_UNKNOWN;
161  }
162 
163  c->frame = av_frame_alloc();
164 
165  return 0;
166 }
167 
169 {
170  CamtasiaContext * const c = avctx->priv_data;
171 
172  av_freep(&c->decomp_buf);
173  av_frame_free(&c->frame);
174 
175  inflateEnd(&c->zstream);
176 
177  return 0;
178 }
179 
181  .name = "camtasia",
182  .type = AVMEDIA_TYPE_VIDEO,
183  .id = AV_CODEC_ID_TSCC,
184  .priv_data_size = sizeof(CamtasiaContext),
185  .init = decode_init,
186  .close = decode_end,
187  .decode = decode_frame,
188  .capabilities = CODEC_CAP_DR1,
189  .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
190 };
int height
Definition: tscc.c:59
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
int bpp
Definition: tscc.c:53
AVCodecContext * avctx
Definition: tscc.c:49
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
unsigned char * decomp_buf
Definition: tscc.c:57
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:130
four components are given, that&#39;s all.
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
unsigned int decomp_size
Definition: tscc.c:55
uint8_t
z_stream zstream
Definition: tscc.c:60
#define av_cold
Definition: attributes.h:78
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:79
#define AVPALETTE_SIZE
Definition: pixfmt.h:33
static av_cold int decode_init(AVCodecContext *avctx)
Definition: tscc.c:121
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
uint8_t * data
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
GetByteContext gb
Definition: tscc.c:58
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Spectrum Plot time data
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
const char * name
Name of the codec implementation.
external API header
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
AVFrame * frame
Definition: tscc.c:50
AVCodec ff_tscc_decoder
Definition: tscc.c:180
ret
Definition: avfilter.c:821
int width
picture width / height.
struct TsccContext CamtasiaContext
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:71
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
NULL
Definition: eval.c:55
main external API structure.
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
#define AV_PIX_FMT_RGB32
Definition: pixfmt.h:259
uint32_t pal[256]
Definition: tscc.c:62
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
void * buf
Definition: avisynth_c.h:594
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:73
int palette_has_changed
Tell user application that palette has changed from previous frame.
Definition: frame.h:280
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:95
int av_frame_ref(AVFrame *dst, AVFrame *src)
Setup a new reference to the data described by an given frame.
Definition: frame.c:228
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
common internal api header.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:108
static double c[64]
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:269
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
int ff_msrle_decode(AVCodecContext *avctx, AVPicture *pic, int depth, GetByteContext *gb)
Decode stream in MS RLE format into frame.
Definition: msrledec.c:251
static av_cold int decode_end(AVCodecContext *avctx)
Definition: tscc.c:168
int len
uint8_t * av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
Definition: avpacket.c:289
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868
This structure stores compressed data.
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: tscc.c:65