Go to the source code of this file.
Data Structures | |
struct | AvsContext |
Enumerations | |
enum | AvsBlockType { AVS_VIDEO = 0x01, AVS_AUDIO = 0x02, AVS_PALETTE = 0x03, AVS_GAME_DATA = 0x04 } |
enum | AvsVideoSubType { AVS_I_FRAME = 0x00, AVS_P_FRAME_3X3 = 0x01, AVS_P_FRAME_2X2 = 0x02, AVS_P_FRAME_2X3 = 0x03 } |
Functions | |
static int | avs_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | avs_decode_init (AVCodecContext *avctx) |
static av_cold int | avs_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_avs_decoder |
enum AvsBlockType |
enum AvsVideoSubType |
static av_cold int avs_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int avs_decode_frame | ( | AVCodecContext * | avctx, |
void * | data, | ||
int * | data_size, | ||
AVPacket * | avpkt | ||
) | [static] |
static av_cold int avs_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
{ .name = "avs", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_AVS, .priv_data_size = sizeof(AvsContext), .init = avs_decode_init, .decode = avs_decode_frame, .close = avs_decode_end, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("AVS (Audio Video Standard) video"), }