libavformat/pmpdec.c File Reference

#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"

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 Documentation

typedef struct PMPContext PMPContext

Function Documentation

static int pmp_close ( AVFormatContext s  )  [static]

Definition at line 164 of file pmpdec.c.

static int pmp_header ( AVFormatContext s,
AVFormatParameters ap 
) [static]

Definition at line 42 of file pmpdec.c.

static int pmp_packet ( AVFormatContext s,
AVPacket pkt 
) [static]

Definition at line 115 of file pmpdec.c.

static int pmp_probe ( AVProbeData p  )  [static]

Definition at line 35 of file pmpdec.c.

static int pmp_seek ( AVFormatContext s,
int  stream_idx,
int64_t  ts,
int  flags 
) [static]

Definition at line 156 of file pmpdec.c.


Variable Documentation

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,
}

Definition at line 171 of file pmpdec.c.