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

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

#include "avcodec.h"
#include "get_bits.h"
#include "internal.h"
#include "libavutil/imgutils.h"
#include "libavutil/mem.h"

Go to the source code of this file.

Data Structures

struct  TgvContext
 

Macros

#define BITSTREAM_READER_LE
 
#define EA_PREAMBLE_SIZE   8
 
#define kVGT_TAG   MKTAG('k', 'V', 'G', 'T')
 

Functions

static av_cold int tgv_decode_init (AVCodecContext *avctx)
 
static int unpack (const uint8_t *src, const uint8_t *src_end, uint8_t *dst, int width, int height)
 Unpack buffer.
 
static int tgv_decode_inter (TgvContext *s, AVFrame *frame, const uint8_t *buf, const uint8_t *buf_end)
 Decode inter-frame.
 
static int tgv_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int tgv_decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_eatgv_decoder
 

Detailed Description

Electronic Arts TGV 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_TGV

Definition in file eatgv.c.

Macro Definition Documentation

#define BITSTREAM_READER_LE

Definition at line 32 of file eatgv.c.

#define EA_PREAMBLE_SIZE   8

Definition at line 38 of file eatgv.c.

Referenced by tgv_decode_frame().

#define kVGT_TAG   MKTAG('k', 'V', 'G', 'T')

Definition at line 39 of file eatgv.c.

Referenced by tgv_decode_frame().

Function Documentation

static av_cold int tgv_decode_init ( AVCodecContext avctx)
static

Definition at line 54 of file eatgv.c.

static int unpack ( const uint8_t src,
const uint8_t src_end,
uint8_t dst,
int  width,
int  height 
)
static

Unpack buffer.

Returns
0 on success, -1 on critical buffer underflow

Definition at line 72 of file eatgv.c.

Referenced by tgv_decode_frame().

static int tgv_decode_inter ( TgvContext s,
AVFrame frame,
const uint8_t buf,
const uint8_t buf_end 
)
static

Decode inter-frame.

Returns
0 on success, -1 on critical buffer underflow

Definition at line 147 of file eatgv.c.

Referenced by tgv_decode_frame().

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

Definition at line 262 of file eatgv.c.

static av_cold int tgv_decode_end ( AVCodecContext avctx)
static

Definition at line 347 of file eatgv.c.

Variable Documentation

AVCodec ff_eatgv_decoder
Initial value:
= {
.name = "eatgv",
.long_name = NULL_IF_CONFIG_SMALL("Electronic Arts TGV video"),
.priv_data_size = sizeof(TgvContext),
.capabilities = CODEC_CAP_DR1,
}

Definition at line 357 of file eatgv.c.