Go to the source code of this file.
Data Structures | |
struct | PTXContext |
Typedefs | |
typedef struct PTXContext | PTXContext |
Functions | |
static av_cold int | ptx_init (AVCodecContext *avctx) |
static int | ptx_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | ptx_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_ptx_decoder |
typedef struct PTXContext PTXContext |
static int ptx_decode_frame | ( | AVCodecContext * | avctx, |
void * | data, | ||
int * | data_size, | ||
AVPacket * | avpkt | ||
) | [static] |
static av_cold int ptx_end | ( | AVCodecContext * | avctx | ) | [static] |
static av_cold int ptx_init | ( | AVCodecContext * | avctx | ) | [static] |
{ .name = "ptx", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_PTX, .priv_data_size = sizeof(PTXContext), .init = ptx_init, .close = ptx_end, .decode = ptx_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"), }