FFmpeg
Data Structures | Macros | Functions | Variables
vmdvideo.c File Reference
#include <string.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"
#include "bytestream.h"

Go to the source code of this file.

Data Structures

struct  VmdVideoContext
 

Macros

#define VMD_HEADER_SIZE   0x330
 
#define PALETTE_COUNT   256
 
#define QUEUE_SIZE   0x1000
 
#define QUEUE_MASK   0x0FFF
 

Functions

static int lz_unpack (const unsigned char *src, int src_len, unsigned char *dest, int dest_len)
 
static int rle_unpack (const unsigned char *src, unsigned char *dest, int src_count, int src_size, int dest_len)
 
static int vmd_decode (VmdVideoContext *s, AVFrame *frame)
 
static av_cold int vmdvideo_decode_end (AVCodecContext *avctx)
 
static av_cold int vmdvideo_decode_init (AVCodecContext *avctx)
 
static int vmdvideo_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 

Variables

const AVCodec ff_vmdvideo_decoder
 

Detailed Description

Sierra VMD video decoder by Vladimir "VAG" Gneushev (vagsoft at mail.ru) for more information on the Sierra VMD format, visit: http://www.pcisys.net/~melanson/codecs/

The video decoder outputs PAL8 colorspace data. The decoder expects a 0x330-byte VMD file header to be transmitted via extradata during codec initialization. Each encoded frame that is sent to this decoder is expected to be prepended with the appropriate 16-byte frame information record from the VMD file.

Definition in file vmdvideo.c.

Macro Definition Documentation

◆ VMD_HEADER_SIZE

#define VMD_HEADER_SIZE   0x330

Definition at line 45 of file vmdvideo.c.

◆ PALETTE_COUNT

#define PALETTE_COUNT   256

Definition at line 46 of file vmdvideo.c.

◆ QUEUE_SIZE

#define QUEUE_SIZE   0x1000

Definition at line 63 of file vmdvideo.c.

◆ QUEUE_MASK

#define QUEUE_MASK   0x0FFF

Definition at line 64 of file vmdvideo.c.

Function Documentation

◆ lz_unpack()

static int lz_unpack ( const unsigned char *  src,
int  src_len,
unsigned char *  dest,
int  dest_len 
)
static

Definition at line 66 of file vmdvideo.c.

Referenced by vmd_decode().

◆ rle_unpack()

static int rle_unpack ( const unsigned char *  src,
unsigned char *  dest,
int  src_count,
int  src_size,
int  dest_len 
)
static

Definition at line 139 of file vmdvideo.c.

Referenced by vmd_decode().

◆ vmd_decode()

static int vmd_decode ( VmdVideoContext s,
AVFrame frame 
)
static

Definition at line 183 of file vmdvideo.c.

Referenced by vmdvideo_decode_frame().

◆ vmdvideo_decode_end()

static av_cold int vmdvideo_decode_end ( AVCodecContext avctx)
static

Definition at line 375 of file vmdvideo.c.

◆ vmdvideo_decode_init()

static av_cold int vmdvideo_decode_init ( AVCodecContext avctx)
static

Definition at line 386 of file vmdvideo.c.

◆ vmdvideo_decode_frame()

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

Definition at line 432 of file vmdvideo.c.

Variable Documentation

◆ ff_vmdvideo_decoder

const AVCodec ff_vmdvideo_decoder
Initial value:
= {
.name = "vmdvideo",
.long_name = NULL_IF_CONFIG_SMALL("Sierra VMD video"),
.priv_data_size = sizeof(VmdVideoContext),
.capabilities = AV_CODEC_CAP_DR1,
}

Definition at line 468 of file vmdvideo.c.

FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:42
vmdvideo_decode_frame
static int vmdvideo_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: vmdvideo.c:432
vmdvideo_decode_end
static av_cold int vmdvideo_decode_end(AVCodecContext *avctx)
Definition: vmdvideo.c:375
init
static int init
Definition: av_tx.c:47
decode
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:71
AV_CODEC_ID_VMDVIDEO
@ AV_CODEC_ID_VMDVIDEO
Definition: codec_id.h:102
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
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
VmdVideoContext
Definition: vmdvideo.c:48
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:50
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
vmdvideo_decode_init
static av_cold int vmdvideo_decode_init(AVCodecContext *avctx)
Definition: vmdvideo.c:386