FFmpeg
Functions | Variables
cljrdec.c File Reference
#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"

Go to the source code of this file.

Functions

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

Variables

AVCodec ff_cljr_decoder
 

Detailed Description

Cirrus Logic AccuPak decoder.

Definition in file cljrdec.c.

Function Documentation

◆ decode_frame()

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

Definition at line 31 of file cljrdec.c.

◆ decode_init()

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 79 of file cljrdec.c.

Variable Documentation

◆ ff_cljr_decoder

AVCodec ff_cljr_decoder
Initial value:
= {
.name = "cljr",
.long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
.init = decode_init,
.decode = decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 85 of file cljrdec.c.

AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:981
AV_CODEC_ID_CLJR
@ AV_CODEC_ID_CLJR
Definition: avcodec.h:254
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: cljrdec.c:79
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
decode_frame
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: cljrdec.c:31