FFmpeg
Loading...
Searching...
No Matches
aeadec.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "avio_internal.h"
#include "demux.h"
#include "internal.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 31 of file aeadec.c.

Function Documentation

◆ aea_read_probe()

static int aea_read_probe ( const AVProbeData * p)
static

Definition at line 33 of file aeadec.c.

◆ aea_read_header()

static int aea_read_header ( AVFormatContext * s)
static

Definition at line 61 of file aeadec.c.

◆ aea_read_packet()

static int aea_read_packet ( AVFormatContext * s,
AVPacket * pkt )
static

Definition at line 99 of file aeadec.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,
}
static int aea_read_probe(const AVProbeData *p)
Definition aeadec.c:33
static int aea_read_header(AVFormatContext *s)
Definition aeadec.c:61
static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition aeadec.c:99
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition pcm.c:73
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88

Definition at line 104 of file aeadec.c.