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

Electronic Arts CMV Video Decoder by Peter Ross (pross.nosp@m.@xvi.nosp@m.d.org) More...

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

Classes

struct  CmvContext
 

Macros

#define EA_PREAMBLE_SIZE   8
 
#define MVIh_TAG   MKTAG('M', 'V', 'I', 'h')
 

Typedefs

typedef struct CmvContext CmvContext
 

Variables

AVCodec ff_eacmv_decoder
 

Detailed Description

Electronic Arts CMV Video Decoder by Peter Ross (pross.nosp@m.@xvi.nosp@m.d.org)

Technical details here: http://wiki.multimedia.cx/index.php?title=Electronic_Arts_CMV

Variable Documentation

§ ff_eacmv_decoder

AVCodec ff_eacmv_decoder
Initial value:
= {
.name = "eacmv",
.long_name = NULL_IF_CONFIG_SMALL("Electronic Arts CMV video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_CMV,
.priv_data_size = sizeof(CmvContext),
.init = cmv_decode_init,
.close = cmv_decode_end,
.decode = cmv_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: eacmv.c:37
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959