#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | 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_index, int64_t ts, int flags) |
static int | pmp_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_pmp_demuxer |
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_index, | |||
int64_t | ts, | |||
int | flags | |||
) | [static] |
Initial value:
{ .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, }