Go to the source code of this file.
Classes | |
| struct | avs_format |
Typedefs | |
| typedef struct avs_format | avs_format_t |
| typedef enum avs_block_type | avs_block_type_t |
Enumerations | |
| enum | avs_block_type { AVS_VIDEO = 0x01, AVS_AUDIO = 0x02, AVS_PALETTE = 0x03, AVS_GAME_DATA = 0x04 } |
Functions | |
| static int | avs_probe (AVProbeData *p) |
| static int | avs_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | avs_read_video_packet (AVFormatContext *s, AVPacket *pkt, avs_block_type_t type, int sub_type, int size, uint8_t *palette, int palette_size) |
| static int | avs_read_audio_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | avs_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | avs_read_close (AVFormatContext *s) |
Variables | |
| AVInputFormat | avs_demuxer |
| typedef struct avs_format avs_format_t |
| typedef enum avs_block_type avs_block_type_t |
| enum avs_block_type |
Definition at line 39 of file libavformat/avs.c.
| static int avs_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 46 of file libavformat/avs.c.
| static int avs_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
Definition at line 57 of file libavformat/avs.c.
| static int avs_read_video_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt, | |||
| avs_block_type_t | type, | |||
| int | sub_type, | |||
| int | size, | |||
| uint8_t * | palette, | |||
| int | palette_size | |||
| ) | [static] |
| static int avs_read_audio_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int avs_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Definition at line 141 of file libavformat/avs.c.
| static int avs_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 212 of file libavformat/avs.c.
Initial value:
{
"avs",
"avs format",
sizeof(avs_format_t),
avs_probe,
avs_read_header,
avs_read_packet,
avs_read_close,
}
Definition at line 217 of file libavformat/avs.c.
1.5.5