FFmpeg
Functions | Variables
msf.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int msf_probe (const AVProbeData *p)
 
static int msf_read_header (AVFormatContext *s)
 
static int msf_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_msf_demuxer
 

Function Documentation

◆ msf_probe()

static int msf_probe ( const AVProbeData p)
static

Definition at line 27 of file msf.c.

◆ msf_read_header()

static int msf_read_header ( AVFormatContext s)
static

Definition at line 44 of file msf.c.

◆ msf_read_packet()

static int msf_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 100 of file msf.c.

Variable Documentation

◆ ff_msf_demuxer

const FFInputFormat ff_msf_demuxer
Initial value:
= {
.p.name = "msf",
.p.long_name = NULL_IF_CONFIG_SMALL("Sony PS3 MSF"),
.p.extensions = "msf",
.read_probe = msf_probe,
.read_header = msf_read_header,
.read_packet = msf_read_packet,
}

Definition at line 107 of file msf.c.

msf_read_header
static int msf_read_header(AVFormatContext *s)
Definition: msf.c:44
msf_probe
static int msf_probe(const AVProbeData *p)
Definition: msf.c:27
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:94
msf_read_packet
static int msf_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: msf.c:100