|
FFmpeg
|
Direct Stream Transfer (DST) decoder ISO/IEC 14496-3 Part 3 Subpart 10: Technical description of lossless coding of oversampled audio. More...
#include "libavutil/intreadwrite.h"#include "libavutil/mem_internal.h"#include "libavutil/reverse.h"#include "codec_internal.h"#include "decode.h"#include "get_bits.h"#include "avcodec.h"#include "golomb.h"#include "dsd.h"Go to the source code of this file.
Data Structures | |
| struct | ArithCoder |
| struct | Table |
| struct | DSTContext |
Macros | |
| #define | DST_MAX_CHANNELS 6 |
| #define | DST_MAX_ELEMENTS (2 * DST_MAX_CHANNELS) |
| #define | DSD_FS44(sample_rate) |
| #define | DST_SAMPLES_PER_FRAME(sample_rate) |
| #define | F(x) |
Functions | |
| static av_cold int | decode_init (AVCodecContext *avctx) |
| static int | read_map (GetBitContext *gb, Table *t, unsigned int map[DST_MAX_CHANNELS], int channels) |
| static av_always_inline int | get_sr_golomb_dst (GetBitContext *gb, unsigned int k) |
| static void | read_uncoded_coeff (GetBitContext *gb, int *dst, unsigned int elements, int coeff_bits, int is_signed, int offset) |
| static int | read_table (GetBitContext *gb, Table *t, const int8_t code_pred_coeff[3][3], int length_bits, int coeff_bits, int is_signed, int offset) |
| static void | ac_init (ArithCoder *ac, GetBitContext *gb) |
| static av_always_inline void | ac_get (ArithCoder *ac, GetBitContext *gb, int p, int *e) |
| static uint8_t | prob_dst_x_bit (int c) |
| static int | build_filter (int16_t table[DST_MAX_ELEMENTS][16][256], const Table *fsets) |
| static int | decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt) |
Variables | |
| static const int8_t | fsets_code_pred_coeff [3][3] |
| static const int8_t | probs_code_pred_coeff [3][3] |
| const FFCodec | ff_dst_decoder |
Direct Stream Transfer (DST) decoder ISO/IEC 14496-3 Part 3 Subpart 10: Technical description of lossless coding of oversampled audio.
Definition in file dstdec.c.
| #define DST_MAX_CHANNELS 6 |
Definition at line 38 of file dstdec.c.
Referenced by decode_frame(), decode_init(), and read_map().
| #define DST_MAX_ELEMENTS (2 * DST_MAX_CHANNELS) |
Definition at line 39 of file dstdec.c.
Referenced by build_filter(), and read_map().
| #define DSD_FS44 | ( | sample_rate | ) |
| #define DST_SAMPLES_PER_FRAME | ( | sample_rate | ) |
Definition at line 43 of file dstdec.c.
Referenced by decode_frame(), and decode_init().
| #define F | ( | x | ) |
Referenced by av_camellia_init(), camellia_decrypt(), camellia_encrypt(), check_loopfilter(), create_cb_handler(), decode_frame(), epx2_slice(), epx3_slice(), FFTypedCBHandler< Iface, F, Args >::FFTypedCBHandler(), idct(), idct10(), idct_msa(), loop_filter(), main(), main(), randomize_loopfilter_buffers(), run_on_wgc_thread(), and run_psnr().
|
static |
|
static |
Definition at line 109 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 132 of file dstdec.c.
Referenced by read_table().
|
static |
Definition at line 140 of file dstdec.c.
Referenced by read_table().
|
static |
Definition at line 150 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 186 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 192 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 213 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 218 of file dstdec.c.
Referenced by decode_frame().
|
static |
|
static |
Definition at line 45 of file dstdec.c.
Referenced by decode_frame().
|
static |
Definition at line 51 of file dstdec.c.
Referenced by decode_frame().
| const FFCodec ff_dst_decoder |