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

8088flex TMV video decoder More...

#include <string.h>
#include "avcodec.h"
#include "internal.h"
#include "libavutil/internal.h"
#include "libavutil/xga_font_data.h"
#include "cga_data.h"

Go to the source code of this file.

Functions

static int tmv_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int tmv_decode_init (AVCodecContext *avctx)
 

Variables

AVCodec ff_tmv_decoder
 

Detailed Description

8088flex TMV video decoder

Author
Daniel Verkamp
See Also
http://www.oldskool.org/pc/8088_Corruption

Definition in file tmv.c.

Function Documentation

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

Definition at line 38 of file tmv.c.

static av_cold int tmv_decode_init ( AVCodecContext avctx)
static

Definition at line 83 of file tmv.c.

Variable Documentation

AVCodec ff_tmv_decoder
Initial value:
= {
.name = "tmv",
.long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"),
.init = tmv_decode_init,
.decode = tmv_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static int tmv_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: tmv.c:38
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:857
static av_cold int tmv_decode_init(AVCodecContext *avctx)
Definition: tmv.c:83

Definition at line 89 of file tmv.c.