Go to the source code of this file.
Data Structures | |
struct | PMPContext |
Typedefs | |
typedef struct PMPContext | PMPContext |
Functions | |
static int | pmp_probe (AVProbeData *p) |
static int | pmp_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | pmp_packet (AVFormatContext *s, AVPacket *pkt) |
static int | pmp_seek (AVFormatContext *s, int stream_idx, int64_t ts, int flags) |
static int | pmp_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_pmp_demuxer |
typedef struct PMPContext PMPContext |
static int pmp_close | ( | AVFormatContext * | s | ) | [static] |
static int pmp_header | ( | AVFormatContext * | s, |
AVFormatParameters * | ap | ||
) | [static] |
static int pmp_packet | ( | AVFormatContext * | s, |
AVPacket * | pkt | ||
) | [static] |
static int pmp_probe | ( | AVProbeData * | p | ) | [static] |
static int pmp_seek | ( | AVFormatContext * | s, |
int | stream_idx, | ||
int64_t | ts, | ||
int | flags | ||
) | [static] |
{ .name = "pmp", .long_name = NULL_IF_CONFIG_SMALL("Playstation Portable PMP format"), .priv_data_size = sizeof(PMPContext), .read_probe = pmp_probe, .read_header = pmp_header, .read_packet = pmp_packet, .read_seek = pmp_seek, .read_close = pmp_close, }