FFmpeg
Data Structures | Macros | Functions | Variables
eamad.c File Reference
#include "libavutil/mem_internal.h"
#include "avcodec.h"
#include "blockdsp.h"
#include "bytestream.h"
#include "bswapdsp.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"
#include "aandcttab.h"
#include "eaidct.h"
#include "mpeg12data.h"
#include "mpeg12vlc.h"

Go to the source code of this file.

Data Structures

struct  MadContext
 

Macros

#define EA_PREAMBLE_SIZE   8
 
#define MADk_TAG   MKTAG('M', 'A', 'D', 'k') /* MAD I-frame */
 
#define MADm_TAG   MKTAG('M', 'A', 'D', 'm') /* MAD P-frame */
 
#define MADe_TAG   MKTAG('M', 'A', 'D', 'e') /* MAD lqp-frame */
 

Functions

static av_cold int decode_init (AVCodecContext *avctx)
 
static void comp (unsigned char *dst, ptrdiff_t dst_stride, unsigned char *src, ptrdiff_t src_stride, int add)
 
static void comp_block (MadContext *t, AVFrame *frame, int mb_x, int mb_y, int j, int mv_x, int mv_y, int add)
 
static void idct_put (MadContext *t, AVFrame *frame, int16_t *block, int mb_x, int mb_y, int j)
 
static int decode_block_intra (MadContext *s, int16_t *block)
 
static int decode_motion (GetBitContext *gb)
 
static int decode_mb (MadContext *s, AVFrame *frame, int inter)
 
static void calc_quant_matrix (MadContext *s, int qscale)
 
static int decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_end (AVCodecContext *avctx)
 

Variables

const FFCodec ff_eamad_decoder
 

Detailed Description

Electronic Arts Madcow Video Decoder

Author
Peter Ross pross.nosp@m.@xvi.nosp@m.d.org
See also
technical details at http://wiki.multimedia.cx/index.php?title=Electronic_Arts_MAD

Definition in file eamad.c.

Macro Definition Documentation

◆ EA_PREAMBLE_SIZE

#define EA_PREAMBLE_SIZE   8

Definition at line 45 of file eamad.c.

◆ MADk_TAG

#define MADk_TAG   MKTAG('M', 'A', 'D', 'k') /* MAD I-frame */

Definition at line 46 of file eamad.c.

◆ MADm_TAG

#define MADm_TAG   MKTAG('M', 'A', 'D', 'm') /* MAD P-frame */

Definition at line 47 of file eamad.c.

◆ MADe_TAG

#define MADe_TAG   MKTAG('M', 'A', 'D', 'e') /* MAD lqp-frame */

Definition at line 48 of file eamad.c.

Function Documentation

◆ decode_init()

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 64 of file eamad.c.

◆ comp()

static void comp ( unsigned char *  dst,
ptrdiff_t  dst_stride,
unsigned char *  src,
ptrdiff_t  src_stride,
int  add 
)
inlinestatic

◆ comp_block()

static void comp_block ( MadContext t,
AVFrame frame,
int  mb_x,
int  mb_y,
int  j,
int  mv_x,
int  mv_y,
int  add 
)
inlinestatic

Definition at line 89 of file eamad.c.

Referenced by decode_mb().

◆ idct_put()

static void idct_put ( MadContext t,
AVFrame frame,
int16_t *  block,
int  mb_x,
int  mb_y,
int  j 
)
inlinestatic

Definition at line 113 of file eamad.c.

Referenced by decode_mb().

◆ decode_block_intra()

static int decode_block_intra ( MadContext s,
int16_t *  block 
)
inlinestatic

Definition at line 128 of file eamad.c.

Referenced by decode_mb().

◆ decode_motion()

static int decode_motion ( GetBitContext gb)
static

Definition at line 193 of file eamad.c.

Referenced by decode_mb().

◆ decode_mb()

static int decode_mb ( MadContext s,
AVFrame frame,
int  inter 
)
static

Definition at line 204 of file eamad.c.

Referenced by decode_frame().

◆ calc_quant_matrix()

static void calc_quant_matrix ( MadContext s,
int  qscale 
)
static

Definition at line 234 of file eamad.c.

Referenced by decode_frame().

◆ decode_frame()

static int decode_frame ( AVCodecContext avctx,
AVFrame frame,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 243 of file eamad.c.

◆ decode_end()

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 327 of file eamad.c.

Variable Documentation

◆ ff_eamad_decoder

const FFCodec ff_eamad_decoder
Initial value:
= {
.p.name = "eamad",
CODEC_LONG_NAME("Electronic Arts Madcow Video"),
.p.type = AVMEDIA_TYPE_VIDEO,
.p.id = AV_CODEC_ID_MAD,
.priv_data_size = sizeof(MadContext),
.close = decode_end,
.p.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 335 of file eamad.c.

AV_CODEC_ID_MAD
@ AV_CODEC_ID_MAD
Definition: codec_id.h:181
MadContext
Definition: eamad.c:50
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
decode_end
static av_cold int decode_end(AVCodecContext *avctx)
Definition: eamad.c:327
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: eamad.c:64
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
decode_frame
static int decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition: eamad.c:243