Home
last modified time | relevance | path

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

/external/flac/libFLAC/include/private/
Dfloat.h61 typedef FLAC__int32 FLAC__fixedpoint; typedef
62 extern const FLAC__fixedpoint FLAC__FP_ZERO;
63 extern const FLAC__fixedpoint FLAC__FP_ONE_HALF;
64 extern const FLAC__fixedpoint FLAC__FP_ONE;
65 extern const FLAC__fixedpoint FLAC__FP_LN2;
66 extern const FLAC__fixedpoint FLAC__FP_E;
70 #define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16…
72 #define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(…
Dfixed.h75 …compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
76 …te_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
/external/flac/libFLAC/
Dfloat.c43 const FLAC__fixedpoint FLAC__FP_ZERO = 0;
44 const FLAC__fixedpoint FLAC__FP_ONE_HALF = 0x00008000;
45 const FLAC__fixedpoint FLAC__FP_ONE = 0x00010000;
46 const FLAC__fixedpoint FLAC__FP_LN2 = 45426;
47 const FLAC__fixedpoint FLAC__FP_E = 178145;
Dfixed.c57 static FLAC__fixedpoint local__compute_rbps_integerized(FLAC__uint32 err, FLAC__uint32 n) in local__compute_rbps_integerized()
63 FLAC__ASSERT(sizeof(rbps) == sizeof(FLAC__fixedpoint)); in local__compute_rbps_integerized()
136 static FLAC__fixedpoint local__compute_rbps_wide_integerized(FLAC__uint64 err, FLAC__uint32 n) in local__compute_rbps_wide_integerized()
142 FLAC__ASSERT(sizeof(rbps) == sizeof(FLAC__fixedpoint)); in local__compute_rbps_wide_integerized()
219 …compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits… in FLAC__fixed_compute_best_predictor()
277 …te_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits… in FLAC__fixed_compute_best_predictor_wide()
Dstream_encoder.c359 …ompute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
360 …e_best_predictor_wide)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits…
3374 FLAC__fixedpoint fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]; in process_subframe_()