FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
msf.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"

Go to the source code of this file.

Functions

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

Variables

AVInputFormat ff_msf_demuxer
 

Function Documentation

static int msf_probe ( AVProbeData p)
static

Definition at line 26 of file msf.c.

static int msf_read_header ( AVFormatContext s)
static

Definition at line 43 of file msf.c.

static int msf_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 84 of file msf.c.

Variable Documentation

AVInputFormat ff_msf_demuxer
Initial value:
= {
.name = "msf",
.long_name = NULL_IF_CONFIG_SMALL("Sony PS3 MSF"),
.read_probe = msf_probe,
.read_header = msf_read_header,
.read_packet = msf_read_packet,
.extensions = "msf",
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int msf_probe(AVProbeData *p)
Definition: msf.c:26
static int msf_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: msf.c:84
static int msf_read_header(AVFormatContext *s)
Definition: msf.c:43

Definition at line 91 of file msf.c.