FFmpeg
Macros | Functions | Variables
aea.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "pcm.h"

Go to the source code of this file.

Macros

#define AT1_SU_SIZE   212
 

Functions

static int aea_read_probe (const AVProbeData *p)
 
static int aea_read_header (AVFormatContext *s)
 
static int aea_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_aea_demuxer
 

Macro Definition Documentation

◆ AT1_SU_SIZE

#define AT1_SU_SIZE   212

Definition at line 29 of file aea.c.

Function Documentation

◆ aea_read_probe()

static int aea_read_probe ( const AVProbeData p)
static

Definition at line 31 of file aea.c.

◆ aea_read_header()

static int aea_read_header ( AVFormatContext s)
static

Definition at line 59 of file aea.c.

◆ aea_read_packet()

static int aea_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 88 of file aea.c.

Variable Documentation

◆ ff_aea_demuxer

const FFInputFormat ff_aea_demuxer
Initial value:
= {
.p.name = "aea",
.p.long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
.p.flags = AVFMT_GENERIC_INDEX,
.p.extensions = "aea",
.read_probe = aea_read_probe,
.read_header = aea_read_header,
.read_packet = aea_read_packet,
.read_seek = ff_pcm_read_seek,
}

Definition at line 93 of file aea.c.

aea_read_probe
static int aea_read_probe(const AVProbeData *p)
Definition: aea.c:31
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
aea_read_packet
static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aea.c:88
aea_read_header
static int aea_read_header(AVFormatContext *s)
Definition: aea.c:59
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
ff_pcm_read_seek
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:56