OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__fixedpoint
(Results
1 - 5
of
5
) sorted by null
/external/flac/libFLAC/include/private/
float.h
60
* The convention for
FLAC__fixedpoint
is to use the upper 16 bits
63
typedef FLAC__int32
FLAC__fixedpoint
;
64
extern const
FLAC__fixedpoint
FLAC__FP_ZERO;
65
extern const
FLAC__fixedpoint
FLAC__FP_ONE_HALF;
66
extern const
FLAC__fixedpoint
FLAC__FP_ONE;
67
extern const
FLAC__fixedpoint
FLAC__FP_LN2;
68
extern const
FLAC__fixedpoint
FLAC__FP_E;
72
#define FLAC__fixedpoint_mul(x, y) ( (
FLAC__fixedpoint
) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16 ) )
74
#define FLAC__fixedpoint_div(x, y) ( (
FLAC__fixedpoint
) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(y) ) >> 16 ) )
fixed.h
65
unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len,
FLAC__fixedpoint
residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
66
unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len,
FLAC__fixedpoint
residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
/external/flac/libFLAC/
float.c
49
const
FLAC__fixedpoint
FLAC__FP_ZERO = 0;
50
const
FLAC__fixedpoint
FLAC__FP_ONE_HALF = 0x00008000;
51
const
FLAC__fixedpoint
FLAC__FP_ONE = 0x00010000;
52
const
FLAC__fixedpoint
FLAC__FP_LN2 = 45426;
53
const
FLAC__fixedpoint
FLAC__FP_E = 178145;
fixed.c
64
static
FLAC__fixedpoint
local__compute_rbps_integerized(FLAC__uint32 err, FLAC__uint32 n)
70
FLAC__ASSERT(sizeof(rbps) == sizeof(
FLAC__fixedpoint
));
143
static
FLAC__fixedpoint
local__compute_rbps_wide_integerized(FLAC__uint64 err, FLAC__uint32 n)
149
FLAC__ASSERT(sizeof(rbps) == sizeof(
FLAC__fixedpoint
));
226
unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len,
FLAC__fixedpoint
residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1])
284
unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len,
FLAC__fixedpoint
residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1])
stream_encoder.c
373
unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len,
FLAC__fixedpoint
residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
[
all
...]
Completed in 700 milliseconds