FFmpeg
Functions | Variables
acedec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int ace_probe (const AVProbeData *p)
 
static int ace_read_header (AVFormatContext *s)
 
static int ace_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_ace_demuxer
 

Function Documentation

◆ ace_probe()

static int ace_probe ( const AVProbeData p)
static

Definition at line 27 of file acedec.c.

◆ ace_read_header()

static int ace_read_header ( AVFormatContext s)
static

Definition at line 44 of file acedec.c.

◆ ace_read_packet()

static int ace_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 101 of file acedec.c.

Variable Documentation

◆ ff_ace_demuxer

const FFInputFormat ff_ace_demuxer
Initial value:
= {
.p.name = "ace",
.p.long_name = NULL_IF_CONFIG_SMALL("tri-Ace Audio Container"),
.p.flags = AVFMT_GENERIC_INDEX,
.read_probe = ace_probe,
.read_header = ace_read_header,
.read_packet = ace_read_packet,
}

Definition at line 108 of file acedec.c.

ace_probe
static int ace_probe(const AVProbeData *p)
Definition: acedec.c:27
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
ace_read_header
static int ace_read_header(AVFormatContext *s)
Definition: acedec.c:44
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:106
ace_read_packet
static int ace_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: acedec.c:101