Libav
Data Structures | Macros | Functions | Variables
tscc2.c File Reference

TechSmith Screen Codec 2 decoder. More...

#include <inttypes.h>
#include "avcodec.h"
#include "get_bits.h"
#include "bytestream.h"
#include "internal.h"
#include "tscc2data.h"

Go to the source code of this file.

Data Structures

struct  TSCC2Context
 

Macros

#define BITSTREAM_READER_LE
 
#define DEQUANT(val, q)   ((q * val + 0x80) >> 8)
 
#define DCT1D(d0, d1, d2, d3, s0, s1, s2, s3, OP)
 
#define COL_OP(a, b)   a = b
 
#define ROW_OP(a, b)   a = ((b) + 0x20) >> 6
 

Functions

static av_cold void free_vlcs (TSCC2Context *c)
 
static av_cold int init_vlcs (TSCC2Context *c)
 
static void tscc2_idct4_put (int *in, int q[3], uint8_t *dst, int stride)
 
static int tscc2_decode_mb (TSCC2Context *c, int *q, int vlc_set, uint8_t *dst, int stride, int plane)
 
static int tscc2_decode_slice (TSCC2Context *c, int mb_y, const uint8_t *buf, int buf_size)
 
static int tscc2_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int tscc2_decode_end (AVCodecContext *avctx)
 
static av_cold int tscc2_decode_init (AVCodecContext *avctx)
 

Variables

AVCodec ff_tscc2_decoder
 

Detailed Description

TechSmith Screen Codec 2 decoder.

Definition in file tscc2.c.

Macro Definition Documentation

§ BITSTREAM_READER_LE

#define BITSTREAM_READER_LE

Definition at line 29 of file tscc2.c.

§ DEQUANT

#define DEQUANT (   val,
 
)    ((q * val + 0x80) >> 8)

Definition at line 93 of file tscc2.c.

Referenced by tscc2_idct4_put().

§ DCT1D

#define DCT1D (   d0,
  d1,
  d2,
  d3,
  s0,
  s1,
  s2,
  s3,
  OP 
)
Value:
OP(d0, 5 * ((s0) + (s1) + (s2)) + 2 * (s3)); \
OP(d1, 5 * ((s0) - (s2) - (s3)) + 2 * (s1)); \
OP(d2, 5 * ((s0) - (s2) + (s3)) - 2 * (s1)); \
OP(d3, 5 * ((s0) - (s1) + (s2)) - 2 * (s3)); \
#define OP(gb, pixel, count)

Definition at line 94 of file tscc2.c.

Referenced by tscc2_idct4_put().

§ COL_OP

#define COL_OP (   a,
  b 
)    a = b

Definition at line 100 of file tscc2.c.

Referenced by tscc2_idct4_put().

§ ROW_OP

#define ROW_OP (   a,
  b 
)    a = ((b) + 0x20) >> 6

Definition at line 101 of file tscc2.c.

Referenced by tscc2_idct4_put().

Function Documentation

§ free_vlcs()

static av_cold void free_vlcs ( TSCC2Context c)
static

Definition at line 49 of file tscc2.c.

Referenced by init_vlcs(), tscc2_decode_end(), and tscc2_decode_init().

§ init_vlcs()

static av_cold int init_vlcs ( TSCC2Context c)
static

Definition at line 60 of file tscc2.c.

Referenced by tscc2_decode_init().

§ tscc2_idct4_put()

static void tscc2_idct4_put ( int *  in,
int  q[3],
uint8_t dst,
int  stride 
)
static

Definition at line 103 of file tscc2.c.

Referenced by tscc2_decode_mb().

§ tscc2_decode_mb()

static int tscc2_decode_mb ( TSCC2Context c,
int *  q,
int  vlc_set,
uint8_t dst,
int  stride,
int  plane 
)
static

Definition at line 126 of file tscc2.c.

Referenced by tscc2_decode_slice().

§ tscc2_decode_slice()

static int tscc2_decode_slice ( TSCC2Context c,
int  mb_y,
const uint8_t buf,
int  buf_size 
)
static

Definition at line 191 of file tscc2.c.

Referenced by tscc2_decode_frame().

§ tscc2_decode_frame()

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

Definition at line 216 of file tscc2.c.

§ tscc2_decode_end()

static av_cold int tscc2_decode_end ( AVCodecContext avctx)
static

Definition at line 335 of file tscc2.c.

Referenced by tscc2_decode_init().

§ tscc2_decode_init()

static av_cold int tscc2_decode_init ( AVCodecContext avctx)
static

Definition at line 346 of file tscc2.c.

Variable Documentation

§ ff_tscc2_decoder

AVCodec ff_tscc2_decoder
Initial value:
= {
.name = "tscc2",
.long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Codec 2"),
.priv_data_size = sizeof(TSCC2Context),
.capabilities = CODEC_CAP_DR1,
}
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
static int tscc2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: tscc2.c:216
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
static av_cold int tscc2_decode_end(AVCodecContext *avctx)
Definition: tscc2.c:335
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:490
static av_cold int tscc2_decode_init(AVCodecContext *avctx)
Definition: tscc2.c:346
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499

Definition at line 378 of file tscc2.c.