cscd.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include "avcodec.h"
#include "internal.h"
#include "libavutil/common.h"
#include "libavutil/lzo.h"

Go to the source code of this file.

Data Structures

struct  CamStudioContext
 

Macros

#define copy_frame_16(f, s, l, h)   copy_frame_default(f, s, l, l, h)
 
#define copy_frame_32(f, s, l, h)   copy_frame_default(f, s, l, l, h)
 
#define add_frame_16(f, s, l, h)   add_frame_default(f, s, l, l, h)
 
#define add_frame_32(f, s, l, h)   add_frame_default(f, s, l, l, h)
 

Functions

static void copy_frame_default (AVFrame *f, const uint8_t *src, int src_stride, int linelen, int height)
 
static void add_frame_default (AVFrame *f, const uint8_t *src, int src_stride, int linelen, int height)
 
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_cscd_decoder
 

Macro Definition Documentation

#define add_frame_16 (   f,
  s,
  l,
 
)    add_frame_default(f, s, l, l, h)

Definition at line 68 of file cscd.c.

Referenced by decode_frame().

#define add_frame_32 (   f,
  s,
  l,
 
)    add_frame_default(f, s, l, l, h)

Definition at line 69 of file cscd.c.

Referenced by decode_frame().

#define copy_frame_16 (   f,
  s,
  l,
 
)    copy_frame_default(f, s, l, l, h)

Definition at line 66 of file cscd.c.

Referenced by decode_frame().

#define copy_frame_32 (   f,
  s,
  l,
 
)    copy_frame_default(f, s, l, l, h)

Definition at line 67 of file cscd.c.

Referenced by decode_frame().

Function Documentation

static void add_frame_default ( AVFrame f,
const uint8_t src,
int  src_stride,
int  linelen,
int  height 
)
static

Definition at line 52 of file cscd.c.

Referenced by decode_frame().

static void copy_frame_default ( AVFrame f,
const uint8_t src,
int  src_stride,
int  linelen,
int  height 
)
static

Definition at line 40 of file cscd.c.

Referenced by decode_frame().

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 251 of file cscd.c.

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

Definition at line 140 of file cscd.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 222 of file cscd.c.

Variable Documentation

AVCodec ff_cscd_decoder
Initial value:
= {
.name = "camstudio",
.priv_data_size = sizeof(CamStudioContext),
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("CamStudio"),
}
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:228
static av_cold int decode_end(AVCodecContext *avctx)
Definition: cscd.c:251
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:335
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: cscd.c:140
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:88
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:326
static av_cold int decode_init(AVCodecContext *avctx)
Definition: cscd.c:222

Definition at line 259 of file cscd.c.