FFmpeg
Classes | Macros | Typedefs | Variables
dxa.c File Reference

DXA Video decoder. More...

#include <stdio.h>
#include <stdlib.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "bytestream.h"
#include "avcodec.h"
#include "internal.h"
#include <zlib.h>

Classes

struct  DxaDecContext
 

Macros

#define DECOMP_BUF_PADDING   16
 

Typedefs

typedef struct DxaDecContext DxaDecContext
 

Variables

AVCodec ff_dxa_decoder
 

Detailed Description

DXA Video decoder.

Variable Documentation

§ ff_dxa_decoder

AVCodec ff_dxa_decoder
Initial value:
= {
.name = "dxa",
.long_name = NULL_IF_CONFIG_SMALL("Feeble Files/ScummVM DXA"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_DXA,
.priv_data_size = sizeof(DxaDecContext),
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
Definition: dxa.c:41
#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