FFmpeg
Classes | Typedefs | 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"

Classes

struct  KgvContext
 

Typedefs

typedef struct KgvContext KgvContext
 

Variables

AVCodec ff_kgv1_decoder
 

Detailed Description

Kega Game Video decoder.

Variable Documentation

§ ff_kgv1_decoder

AVCodec ff_kgv1_decoder
Initial value:
= {
.name = "kgv1",
.long_name = NULL_IF_CONFIG_SMALL("Kega Game Video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_KGV1,
.priv_data_size = sizeof(KgvContext),
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
.flush = decode_flush,
.capabilities = AV_CODEC_CAP_DR1,
}
Definition: kgv1dec.c:33
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959