FFmpeg
|
#include "config_components.h"
#include "libavutil/channel_layout.h"
#include "libavutil/intfloat.h"
#include "libavutil/mem_internal.h"
#include "libavutil/tx.h"
#include "avcodec.h"
#include "decode.h"
#include "get_bits.h"
#include "codec_internal.h"
#include "internal.h"
#include "wma_freqs.h"
Go to the source code of this file.
Data Structures | |
struct | BinkAudioContext |
Macros | |
#define | BITSTREAM_READER_LE |
#define | MAX_DCT_CHANNELS 6 |
#define | MAX_CHANNELS 2 |
#define | BINK_BLOCK_MAX_SIZE (MAX_CHANNELS << 11) |
Functions | |
static av_cold int | decode_init (AVCodecContext *avctx) |
static float | get_float (GetBitContext *gb) |
static int | decode_block (BinkAudioContext *s, float **out, int use_dct, int channels, int ch_offset) |
Decode Bink Audio block. More... | |
static av_cold int | decode_end (AVCodecContext *avctx) |
static void | get_bits_align32 (GetBitContext *s) |
static int | binkaudio_receive_frame (AVCodecContext *avctx, AVFrame *frame) |
static void | decode_flush (AVCodecContext *avctx) |
Variables | |
static const uint8_t | rle_length_tab [16] |
const FFCodec | ff_binkaudio_rdft_decoder |
const FFCodec | ff_binkaudio_dct_decoder |
Bink Audio decoder
Technical details here: http://wiki.multimedia.cx/index.php?title=Bink_Audio
Definition in file binkaudio.c.
#define BITSTREAM_READER_LE |
Definition at line 38 of file binkaudio.c.
#define MAX_DCT_CHANNELS 6 |
Definition at line 46 of file binkaudio.c.
#define MAX_CHANNELS 2 |
Definition at line 47 of file binkaudio.c.
#define BINK_BLOCK_MAX_SIZE (MAX_CHANNELS << 11) |
Definition at line 48 of file binkaudio.c.
|
static |
Definition at line 70 of file binkaudio.c.
|
static |
Definition at line 155 of file binkaudio.c.
Referenced by decode_block().
|
static |
Decode Bink Audio block.
[out] | out | Output buffer (must contain s->block_size elements) |
Definition at line 173 of file binkaudio.c.
Referenced by binkaudio_receive_frame().
|
static |
Definition at line 282 of file binkaudio.c.
|
static |
Definition at line 289 of file binkaudio.c.
Referenced by binkaudio_receive_frame().
|
static |
Definition at line 295 of file binkaudio.c.
|
static |
Definition at line 361 of file binkaudio.c.
|
static |
Definition at line 164 of file binkaudio.c.
Referenced by decode_block().
const FFCodec ff_binkaudio_rdft_decoder |
Definition at line 371 of file binkaudio.c.
const FFCodec ff_binkaudio_dct_decoder |
Definition at line 385 of file binkaudio.c.