Home
last modified time | relevance | path

Searched refs:FLAC__fixedpoint (Results 1 – 5 of 5) sorted by relevance

/external/flac/libFLAC/include/private/
Dfloat.h63 typedef FLAC__int32 FLAC__fixedpoint; typedef
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)(…
Dfixed.h65 …compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
66 …te_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
/external/flac/libFLAC/
Dfloat.c49 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;
Dfixed.c64 static FLAC__fixedpoint local__compute_rbps_integerized(FLAC__uint32 err, FLAC__uint32 n) in local__compute_rbps_integerized()
70 FLAC__ASSERT(sizeof(rbps) == sizeof(FLAC__fixedpoint)); in local__compute_rbps_integerized()
143 static FLAC__fixedpoint local__compute_rbps_wide_integerized(FLAC__uint64 err, FLAC__uint32 n) in local__compute_rbps_wide_integerized()
149 FLAC__ASSERT(sizeof(rbps) == sizeof(FLAC__fixedpoint)); in local__compute_rbps_wide_integerized()
226 …compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits… in FLAC__fixed_compute_best_predictor()
284 …te_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits… in FLAC__fixed_compute_best_predictor_wide()
Dstream_encoder.c373 …ompute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
3190 FLAC__fixedpoint fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]; in process_subframe_()