#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "bytestream.h"
#include "avcodec.h"
#include "s3tc.h"
Go to the source code of this file.
Data Structures | |
struct | TXDContext |
Functions | |
static av_cold int | txd_init (AVCodecContext *avctx) |
static int | txd_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | txd_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_txd_decoder |
static int txd_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int txd_end | ( | AVCodecContext * | avctx | ) | [static] |
static av_cold int txd_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "txd", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_TXD, .priv_data_size = sizeof(TXDContext), .init = txd_init, .close = txd_end, .decode = txd_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"), }