FFmpeg
Classes | Macros | Typedefs | Variables
binkaudio.c File Reference

Bink Audio decoder. More...

#include "libavutil/channel_layout.h"
#include "libavutil/intfloat.h"
#include "avcodec.h"
#include "dct.h"
#include "decode.h"
#include "get_bits.h"
#include "internal.h"
#include "rdft.h"
#include "wma_freqs.h"

Classes

struct  BinkAudioContext
 

Macros

#define BITSTREAM_READER_LE
 
#define MAX_CHANNELS   2
 
#define BINK_BLOCK_MAX_SIZE   (MAX_CHANNELS << 11)
 

Typedefs

typedef struct BinkAudioContext BinkAudioContext
 

Variables

AVCodec ff_binkaudio_rdft_decoder
 
AVCodec ff_binkaudio_dct_decoder
 

Detailed Description

Bink Audio decoder.

Technical details here: http://wiki.multimedia.cx/index.php?title=Bink_Audio

Variable Documentation

§ ff_binkaudio_dct_decoder

AVCodec ff_binkaudio_dct_decoder
Initial value:
= {
.name = "binkaudio_dct",
.long_name = NULL_IF_CONFIG_SMALL("Bink Audio (DCT)"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_BINKAUDIO_DCT,
.priv_data_size = sizeof(BinkAudioContext),
.init = decode_init,
.close = decode_end,
.receive_frame = binkaudio_receive_frame,
}
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:984
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: binkaudio.c:48
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959

§ ff_binkaudio_rdft_decoder

AVCodec ff_binkaudio_rdft_decoder
Initial value:
= {
.name = "binkaudio_rdft",
.long_name = NULL_IF_CONFIG_SMALL("Bink Audio (RDFT)"),
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_BINKAUDIO_RDFT,
.priv_data_size = sizeof(BinkAudioContext),
.init = decode_init,
.close = decode_end,
.receive_frame = binkaudio_receive_frame,
}
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:984
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: binkaudio.c:48
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959