|
FFmpeg
|
#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"Go to the source code of this file.
Data Structures | |
| struct | BinkAudioContext |
Macros | |
| #define | BITSTREAM_READER_LE |
| #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) |
| 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) |
Variables | |
| static float | quant_table [96] |
| static const uint8_t | rle_length_tab [16] |
| AVCodec | ff_binkaudio_rdft_decoder |
| AVCodec | 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 34 of file binkaudio.c.
| #define MAX_CHANNELS 2 |
Definition at line 45 of file binkaudio.c.
| #define BINK_BLOCK_MAX_SIZE (MAX_CHANNELS << 11) |
Definition at line 46 of file binkaudio.c.
|
static |
Definition at line 69 of file binkaudio.c.
|
static |
Definition at line 153 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 171 of file binkaudio.c.
Referenced by binkaudio_receive_frame().
|
static |
Definition at line 275 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 43 of file binkaudio.c.
Referenced by decode_block(), decode_init(), read_quant_table(), read_quant_tables(), write_quant_table(), and write_quant_tables().
|
static |
Definition at line 162 of file binkaudio.c.
Referenced by decode_block().
| AVCodec ff_binkaudio_rdft_decoder |
Definition at line 344 of file binkaudio.c.
| AVCodec ff_binkaudio_dct_decoder |
Definition at line 356 of file binkaudio.c.
1.8.17