FFmpeg
Data Structures | Macros | Functions | Variables
adxdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  ADXDemuxerContext
 

Macros

#define BLOCK_SIZE   18
 
#define BLOCK_SAMPLES   32
 

Functions

static int adx_probe (const AVProbeData *p)
 
static int adx_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int adx_read_header (AVFormatContext *s)
 

Variables

const FFInputFormat ff_adx_demuxer
 

Detailed Description

CRI ADX demuxer

Definition in file adxdec.c.

Macro Definition Documentation

◆ BLOCK_SIZE

#define BLOCK_SIZE   18

Definition at line 31 of file adxdec.c.

◆ BLOCK_SAMPLES

#define BLOCK_SAMPLES   32

Definition at line 32 of file adxdec.c.

Function Documentation

◆ adx_probe()

static int adx_probe ( const AVProbeData p)
static

Definition at line 38 of file adxdec.c.

◆ adx_read_packet()

static int adx_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 51 of file adxdec.c.

◆ adx_read_header()

static int adx_read_header ( AVFormatContext s)
static

Definition at line 84 of file adxdec.c.

Variable Documentation

◆ ff_adx_demuxer

const FFInputFormat ff_adx_demuxer
Initial value:
= {
.p.name = "adx",
.p.long_name = NULL_IF_CONFIG_SMALL("CRI ADX"),
.p.extensions = "adx",
.p.flags = AVFMT_GENERIC_INDEX,
.read_probe = adx_probe,
.priv_data_size = sizeof(ADXDemuxerContext),
.raw_codec_id = AV_CODEC_ID_ADPCM_ADX,
}

Definition at line 131 of file adxdec.c.

adx_read_packet
static int adx_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: adxdec.c:51
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:42
adx_read_header
static int adx_read_header(AVFormatContext *s)
Definition: adxdec.c:84
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
AV_CODEC_ID_ADPCM_ADX
@ AV_CODEC_ID_ADPCM_ADX
Definition: codec_id.h:376
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:94
adx_probe
static int adx_probe(const AVProbeData *p)
Definition: adxdec.c:38
ADXDemuxerContext
Definition: adxdec.c:34