FFmpeg
Loading...
Searching...
No Matches
svs.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int svs_probe (const AVProbeData *p)
 
static int svs_read_header (AVFormatContext *s)
 
static int svs_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_svs_demuxer
 

Function Documentation

◆ svs_probe()

static int svs_probe ( const AVProbeData * p)
static

Definition at line 28 of file svs.c.

◆ svs_read_header()

static int svs_read_header ( AVFormatContext * s)
static

Definition at line 42 of file svs.c.

◆ svs_read_packet()

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

Definition at line 70 of file svs.c.

Variable Documentation

◆ ff_svs_demuxer

const FFInputFormat ff_svs_demuxer
Initial value:
= {
.p.name = "svs",
.p.long_name = NULL_IF_CONFIG_SMALL("Square SVS"),
.p.extensions = "svs",
.read_probe = svs_probe,
.read_header = svs_read_header,
.read_packet = svs_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 svs_read_header(AVFormatContext *s)
Definition svs.c:42
static int svs_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition svs.c:70
static int svs_probe(const AVProbeData *p)
Definition svs.c:28

Definition at line 88 of file svs.c.