FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
txd.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "bytestream.h"
#include "avcodec.h"
#include "internal.h"
#include "texturedsp.h"

Go to the source code of this file.

Macros

#define TXD_DXT1   0x31545844
 
#define TXD_DXT3   0x33545844
 

Functions

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

Variables

AVCodec ff_txd_decoder
 

Macro Definition Documentation

#define TXD_DXT1   0x31545844

Definition at line 31 of file txd.c.

Referenced by txd_decode_frame().

#define TXD_DXT3   0x33545844

Definition at line 32 of file txd.c.

Referenced by txd_decode_frame().

Function Documentation

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

Definition at line 34 of file txd.c.

Variable Documentation

AVCodec ff_txd_decoder
Initial value:
= {
.name = "txd",
.long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"),
.decode = txd_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
static int txd_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: txd.c:34
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:968

Definition at line 155 of file txd.c.