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

Go to the source code of this file.

Functions

static int ads_probe (AVProbeData *p)
 
static int ads_read_header (AVFormatContext *s)
 
static int ads_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVInputFormat ff_ads_demuxer
 

Function Documentation

static int ads_probe ( AVProbeData p)
static

Definition at line 26 of file ads.c.

static int ads_read_header ( AVFormatContext s)
static

Definition at line 35 of file ads.c.

static int ads_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 72 of file ads.c.

Variable Documentation

AVInputFormat ff_ads_demuxer
Initial value:
= {
.name = "ads",
.long_name = NULL_IF_CONFIG_SMALL("Sony PS2 ADS"),
.read_probe = ads_probe,
.read_header = ads_read_header,
.read_packet = ads_read_packet,
.extensions = "ads,ss2",
}
static int ads_probe(AVProbeData *p)
Definition: ads.c:26
static int ads_read_header(AVFormatContext *s)
Definition: ads.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int ads_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: ads.c:72

Definition at line 82 of file ads.c.