#include "libavcodec/paf.h"#include "avformat.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | PAFDemuxContext |
Defines | |
| #define | MAGIC "Packed Animation File V1.0\n(c) 1992-96 Amazing Studio\x0a\x1a" |
Functions | |
| static int | read_probe (AVProbeData *p) |
| static int | read_close (AVFormatContext *s) |
| static void | read_table (AVFormatContext *s, uint32_t *table, uint32_t count) |
| static int | read_header (AVFormatContext *s) |
| static int | read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_paf_demuxer |
| #define MAGIC "Packed Animation File V1.0\n(c) 1992-96 Amazing Studio\x0a\x1a" |
| static int read_close | ( | AVFormatContext * | s | ) | [static] |
| static int read_header | ( | AVFormatContext * | s | ) | [static] |
| static int read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int read_probe | ( | AVProbeData * | p | ) | [static] |
| static void read_table | ( | AVFormatContext * | s, | |
| uint32_t * | table, | |||
| uint32_t | count | |||
| ) | [static] |
Initial value:
{
.name = "paf",
.long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File"),
.priv_data_size = sizeof(PAFDemuxContext),
.read_probe = read_probe,
.read_header = read_header,
.read_packet = read_packet,
.read_close = read_close,
}
1.5.8