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

Electronic Arts Madcow Video Decoder. More...

#include "avcodec.h"
#include "blockdsp.h"
#include "bytestream.h"
#include "bswapdsp.h"
#include "get_bits.h"
#include "aandcttab.h"
#include "eaidct.h"
#include "idctdsp.h"
#include "internal.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, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_end (AVCodecContext *avctx)
 

Variables

AVCodec 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

#define EA_PREAMBLE_SIZE   8

Definition at line 43 of file eamad.c.

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

Definition at line 44 of file eamad.c.

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

Definition at line 45 of file eamad.c.

Referenced by decode_frame().

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

Definition at line 46 of file eamad.c.

Referenced by decode_frame().

Function Documentation

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 64 of file eamad.c.

static void comp ( unsigned char *  dst,
ptrdiff_t  dst_stride,
unsigned char *  src,
ptrdiff_t  src_stride,
int  add 
)
inlinestatic
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 92 of file eamad.c.

Referenced by decode_mb().

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

Definition at line 116 of file eamad.c.

Referenced by decode_mb().

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

Definition at line 131 of file eamad.c.

Referenced by decode_mb().

static int decode_motion ( GetBitContext gb)
static

Definition at line 197 of file eamad.c.

Referenced by decode_mb().

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

Definition at line 208 of file eamad.c.

Referenced by decode_frame().

static void calc_quant_matrix ( MadContext s,
int  qscale 
)
static

Definition at line 238 of file eamad.c.

Referenced by decode_frame().

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

Definition at line 247 of file eamad.c.

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 334 of file eamad.c.

Variable Documentation

AVCodec ff_eamad_decoder
Initial value:
= {
.name = "eamad",
.long_name = NULL_IF_CONFIG_SMALL("Electronic Arts Madcow Video"),
.priv_data_size = sizeof(MadContext),
.close = decode_end,
.capabilities = AV_CODEC_CAP_DR1,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:42
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static av_cold int decode_end(AVCodecContext *avctx)
Definition: eamad.c:334
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: eamad.c:247
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:968
static av_cold int decode_init(AVCodecContext *avctx)
Definition: eamad.c:64

Definition at line 342 of file eamad.c.