Go to the source code of this file.
Classes | |
| struct | avs_context_t |
Enumerations | |
| enum | avs_block_type_t { AVS_VIDEO = 0x01, AVS_AUDIO = 0x02, AVS_PALETTE = 0x03, AVS_GAME_DATA = 0x04 } |
| enum | avs_video_sub_type_t { 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, uint8_t *buf, int buf_size) |
| static int | avs_decode_init (AVCodecContext *avctx) |
Variables | |
| AVCodec | avs_decoder |
| enum avs_block_type_t |
Definition at line 30 of file libavcodec/avs.c.
| enum avs_video_sub_type_t |
Definition at line 37 of file libavcodec/avs.c.
| static int avs_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
Definition at line 46 of file libavcodec/avs.c.
| static int avs_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 144 of file libavcodec/avs.c.
Initial value:
{
"avs",
CODEC_TYPE_VIDEO,
CODEC_ID_AVS,
sizeof(avs_context_t),
avs_decode_init,
NULL,
NULL,
avs_decode_frame,
CODEC_CAP_DR1,
}
Definition at line 150 of file libavcodec/avs.c.
1.5.5