FFmpeg
Classes | Typedefs | Variables
dsicinaudio.c File Reference

Delphine Software International CIN audio decoder. More...

#include "libavutil/channel_layout.h"
#include "avcodec.h"
#include "bytestream.h"
#include "internal.h"
#include "mathops.h"

Classes

struct  CinAudioContext
 

Typedefs

typedef struct CinAudioContext CinAudioContext
 

Variables

AVCodec ff_dsicinaudio_decoder
 

Detailed Description

Delphine Software International CIN audio decoder.

Variable Documentation

§ ff_dsicinaudio_decoder

AVCodec ff_dsicinaudio_decoder
Initial value:
= {
.name = "dsicinaudio",
.long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN audio"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_DSICINAUDIO,
.priv_data_size = sizeof(CinAudioContext),
.init = cinaudio_decode_init,
.decode = cinaudio_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
Definition: dsicinaudio.c:34
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959