FFmpeg
|
#include "config.h"
#include "libavutil/samplefmt.h"
#include "mpegaudio.h"
#include "mpegaudiodec_template.c"
Go to the source code of this file.
Macros | |
#define | USE_FLOATS 0 |
#define | SHR(a, b) (((int)(a))>>(b)) |
#define | FIXR_OLD(a) ((int)((a) * FRAC_ONE + 0.5)) |
#define | FIXR(a) ((int)((a) * FRAC_ONE + 0.5)) |
#define | FIXHR(a) ((int)((a) * (1LL<<32) + 0.5)) |
#define | MULH3(x, y, s) MULH((s)*(x), y) |
#define | MULLx(x, y, s) MULL((int)(x),(y),s) |
#define | RENAME(a) a ## _fixed |
#define | OUT_FMT AV_SAMPLE_FMT_S16 |
#define | OUT_FMT_P AV_SAMPLE_FMT_S16P |
Variables | |
static const int32_t | is_table [2][16] |
static const int32_t | csa_table [8][4] |
#define USE_FLOATS 0 |
Definition at line 24 of file mpegaudiodec_fixed.c.
Definition at line 30 of file mpegaudiodec_fixed.c.
Definition at line 32 of file mpegaudiodec_fixed.c.
Definition at line 33 of file mpegaudiodec_fixed.c.
Definition at line 35 of file mpegaudiodec_fixed.c.
#define OUT_FMT AV_SAMPLE_FMT_S16 |
Definition at line 36 of file mpegaudiodec_fixed.c.
#define OUT_FMT_P AV_SAMPLE_FMT_S16P |
Definition at line 37 of file mpegaudiodec_fixed.c.
|
static |
Definition at line 41 of file mpegaudiodec_fixed.c.
Referenced by compute_stereo().
|
static |
Definition at line 48 of file mpegaudiodec_fixed.c.