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

Function Documentation

◆ ace_probe()

static int ace_probe ( const AVProbeData p)
static

Definition at line 26 of file acedec.c.

◆ ace_read_header()

static int ace_read_header ( AVFormatContext s)
static

Definition at line 43 of file acedec.c.

◆ ace_read_packet()

static int ace_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 100 of file acedec.c.

Variable Documentation

◆ ff_ace_demuxer

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

Definition at line 107 of file acedec.c.

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