tscc.c File Reference

TechSmith Camtasia decoder. More...

#include <stdio.h>
#include <stdlib.h>
#include "avcodec.h"
#include "internal.h"
#include "msrledec.h"
#include <zlib.h>
Include dependency graph for tscc.c:

Go to the source code of this file.

Data Structures

struct  TsccContext
 

Typedefs

typedef struct TsccContext CamtasiaContext
 

Functions

static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_init (AVCodecContext *avctx)
 
static av_cold int decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_tscc_decoder
 

Detailed Description

TechSmith Camtasia decoder.

Fourcc: TSCC

Codec is very simple: it codes picture (picture difference, really) with algorithm almost identical to Windows RLE8, only without padding and with greater pixel sizes, then this coded picture is packed with ZLib

Supports: BGR8,BGR555,BGR24 - only BGR8 and BGR555 tested

Definition in file tscc.c.

Typedef Documentation

typedef struct TsccContext CamtasiaContext

Function Documentation

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 168 of file tscc.c.

static int decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 65 of file tscc.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 121 of file tscc.c.

Variable Documentation

AVCodec ff_tscc_decoder
Initial value:
= {
.name = "camtasia",
.priv_data_size = sizeof(CamtasiaContext),
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
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.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
struct TsccContext CamtasiaContext
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
static av_cold int decode_end(AVCodecContext *avctx)
Definition: tscc.c:168
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: tscc.c:65

Definition at line 180 of file tscc.c.