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

Electronic Arts TGQ Video Decoder. More...

#include "aandcttab.h"
#include "avcodec.h"
#include "bytestream.h"
#include "eaidct.h"
#include "get_bits.h"
#include "idctdsp.h"
#include "internal.h"

Classes

struct  TgqContext
 

Typedefs

typedef struct TgqContext TgqContext
 

Variables

AVCodec ff_eatgq_decoder
 

Detailed Description

Electronic Arts TGQ Video Decoder.

Author
Peter Ross pross.nosp@m.@xvi.nosp@m.d.org

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

Variable Documentation

§ ff_eatgq_decoder

AVCodec ff_eatgq_decoder
Initial value:
= {
.name = "eatgq",
.long_name = NULL_IF_CONFIG_SMALL("Electronic Arts TGQ video"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_TGQ,
.priv_data_size = sizeof(TgqContext),
.init = tgq_decode_init,
.decode = tgq_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
Definition: eatgq.c:40
#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