FFmpeg
Data Structures | Functions | Variables
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
 

Functions

static int pmp_probe (const AVProbeData *p)
 
static int pmp_header (AVFormatContext *s)
 
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

const AVInputFormat ff_pmp_demuxer
 

Function Documentation

◆ pmp_probe()

static int pmp_probe ( const AVProbeData p)
static

Definition at line 35 of file pmpdec.c.

◆ pmp_header()

static int pmp_header ( AVFormatContext s)
static

Definition at line 42 of file pmpdec.c.

◆ pmp_packet()

static int pmp_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 129 of file pmpdec.c.

◆ pmp_seek()

static int pmp_seek ( AVFormatContext s,
int  stream_index,
int64_t  ts,
int  flags 
)
static

Definition at line 171 of file pmpdec.c.

◆ pmp_close()

static int pmp_close ( AVFormatContext s)
static

Definition at line 179 of file pmpdec.c.

Variable Documentation

◆ ff_pmp_demuxer

const AVInputFormat ff_pmp_demuxer
Initial value:
= {
.name = "pmp",
.long_name = NULL_IF_CONFIG_SMALL("Playstation Portable PMP"),
.priv_data_size = sizeof(PMPContext),
}

Definition at line 186 of file pmpdec.c.

pmp_close
static int pmp_close(AVFormatContext *s)
Definition: pmpdec.c:179
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:149
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:141
pmp_probe
static int pmp_probe(const AVProbeData *p)
Definition: pmpdec.c:35
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
pmp_header
static int pmp_header(AVFormatContext *s)
Definition: pmpdec.c:42
pmp_seek
static int pmp_seek(AVFormatContext *s, int stream_index, int64_t ts, int flags)
Definition: pmpdec.c:171
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
PMPContext
Definition: pmpdec.c:26
pmp_packet
static int pmp_packet(AVFormatContext *s, AVPacket *pkt)
Definition: pmpdec.c:129