OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAC__double
(Results
1 - 6
of
6
) sorted by null
/external/flac/libFLAC/
fixed.c
258
residual_bits_per_sample[0] = (FLAC__float)((total_error_0 > 0) ? log(M_LN2 * (
FLAC__double
)total_error_0 / (
FLAC__double
)data_len) / M_LN2 : 0.0);
259
residual_bits_per_sample[1] = (FLAC__float)((total_error_1 > 0) ? log(M_LN2 * (
FLAC__double
)total_error_1 / (
FLAC__double
)data_len) / M_LN2 : 0.0);
260
residual_bits_per_sample[2] = (FLAC__float)((total_error_2 > 0) ? log(M_LN2 * (
FLAC__double
)total_error_2 / (
FLAC__double
)data_len) / M_LN2 : 0.0);
261
residual_bits_per_sample[3] = (FLAC__float)((total_error_3 > 0) ? log(M_LN2 * (
FLAC__double
)total_error_3 / (
FLAC__double
)data_len) / M_LN2 : 0.0);
262
residual_bits_per_sample[4] = (FLAC__float)((total_error_4 > 0) ? log(M_LN2 * (
FLAC__double
)total_error_4 / (
FLAC__double
)data_len) / M_LN2 : 0.0)
[
all
...]
lpc.c
123
void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER],
FLAC__double
error[])
126
FLAC__double
r, err, lpc[FLAC__MAX_LPC_ORDER];
145
FLAC__double
tmp = lpc[j];
170
FLAC__double
cmax;
185
const
FLAC__double
d = fabs(lp_coeff[i]);
210
FLAC__double
error = 0.0;
236
FLAC__double
error = 0.0;
[
all
...]
stream_decoder.c
[
all
...]
stream_encoder.c
[
all
...]
/external/flac/libFLAC/include/private/
float.h
45
* in libFLAC should use FLAC__float and
FLAC__double
in place of
52
typedef double
FLAC__double
;
lpc.h
117
void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER],
FLAC__double
error[]);
230
FLAC__double
FLAC__lpc_compute_expected_bits_per_residual_sample(
FLAC__double
lpc_error, unsigned total_samples);
231
FLAC__double
FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(
FLAC__double
lpc_error,
FLAC__double
error_scale);
246
unsigned FLAC__lpc_compute_best_order(const
FLAC__double
lpc_error[], unsigned max_order, unsigned total_samples, unsigned overhead_bits_per_order);
Completed in 2321 milliseconds