FFmpeg
Functions | Variables
svs.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.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 AVInputFormat ff_svs_demuxer
 

Function Documentation

◆ svs_probe()

static int svs_probe ( const AVProbeData p)
static

Definition at line 27 of file svs.c.

◆ svs_read_header()

static int svs_read_header ( AVFormatContext s)
static

Definition at line 41 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 AVInputFormat ff_svs_demuxer
Initial value:
= {
.name = "svs",
.long_name = NULL_IF_CONFIG_SMALL("Square SVS"),
.read_probe = svs_probe,
.read_header = svs_read_header,
.read_packet = svs_read_packet,
.extensions = "svs",
}

Definition at line 88 of file svs.c.

svs_read_packet
static int svs_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: svs.c:70
svs_read_header
static int svs_read_header(AVFormatContext *s)
Definition: svs.c:41
svs_probe
static int svs_probe(const AVProbeData *p)
Definition: svs.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:117