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

Go to the source code of this file.

Functions

static int svag_probe (AVProbeData *p)
 
static int svag_read_header (AVFormatContext *s)
 
static int svag_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVInputFormat ff_svag_demuxer
 

Function Documentation

static int svag_probe ( AVProbeData p)
static

Definition at line 25 of file svag.c.

static int svag_read_header ( AVFormatContext s)
static

Definition at line 33 of file svag.c.

static int svag_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 64 of file svag.c.

Variable Documentation

AVInputFormat ff_svag_demuxer
Initial value:
= {
.name = "svag",
.long_name = NULL_IF_CONFIG_SMALL("Konami PS2 SVAG"),
.read_probe = svag_probe,
.read_header = svag_read_header,
.read_packet = svag_read_packet,
.extensions = "svag",
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
static int svag_probe(AVProbeData *p)
Definition: svag.c:25
static int svag_read_header(AVFormatContext *s)
Definition: svag.c:33
static int svag_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: svag.c:64

Definition at line 71 of file svag.c.