FFmpeg
Loading...
Searching...
No Matches
svag.c File Reference
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

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

Variables

const FFInputFormat ff_svag_demuxer
 

Function Documentation

◆ svag_probe()

static int svag_probe ( const AVProbeData * p)
static

Definition at line 26 of file svag.c.

◆ svag_read_header()

static int svag_read_header ( AVFormatContext * s)
static

Definition at line 34 of file svag.c.

◆ svag_read_packet()

static int svag_read_packet ( AVFormatContext * s,
AVPacket * pkt )
static

Definition at line 66 of file svag.c.

Variable Documentation

◆ ff_svag_demuxer

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

Definition at line 73 of file svag.c.