FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
kgv1dec.c File Reference

Kega Game Video decoder. More...

#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  KgvContext
 

Functions

static void decode_flush (AVCodecContext *avctx)
 
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_kgv1_decoder
 

Detailed Description

Kega Game Video decoder.

Definition in file kgv1dec.c.

Function Documentation

static void decode_flush ( AVCodecContext avctx)
static

Definition at line 38 of file kgv1dec.c.

Referenced by decode_end(), and decode_frame().

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

Definition at line 46 of file kgv1dec.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 163 of file kgv1dec.c.

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 170 of file kgv1dec.c.

Variable Documentation

AVCodec ff_kgv1_decoder
Initial value:
= {
.name = "kgv1",
.long_name = NULL_IF_CONFIG_SMALL("Kega Game Video"),
.priv_data_size = sizeof(KgvContext),
.close = decode_end,
.capabilities = AV_CODEC_CAP_DR1,
}
static void flush(AVCodecContext *avctx)
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int decode_end(AVCodecContext *avctx)
Definition: kgv1dec.c:170
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: kgv1dec.c:46
static void decode_flush(AVCodecContext *avctx)
Definition: kgv1dec.c:38
static av_cold int decode_init(AVCodecContext *avctx)
Definition: kgv1dec.c:163
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:523
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857

Definition at line 176 of file kgv1dec.c.