Searched refs:FLAC__int64 (Results 1 - 10 of 10) sorted by relevance

/external/flac/libFLAC/include/private/
H A Dbitmath.h40 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v);
H A Dfloat.h72 #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 ) )
/external/flac/libFLAC/
H A Dlpc.c268 FLAC__int64 sumo;
287 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
535 FLAC__int64 sum;
550 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
559 if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) {
561 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%I64d, residual=%I64d\n", i, *data, sum >> lp_quantization, (FLAC__int64)(*data) - (sum >> lp_quantization));
563 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%lld, residual=%lld\n", i, *data, (long long)(sum >> lp_quantization), (long long)((FLAC__int64)(*data) - (sum >> lp_quantization)));
573 FLAC__int64 su
[all...]
H A Dbitmath.c127 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v)
H A Dmemory.c54 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
63 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32)));
H A Dfixed.c329 residual_bits_per_sample[0] = (FLAC__float)((total_error_0 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_0 / (FLAC__double)data_len) / M_LN2 : 0.0);
330 residual_bits_per_sample[1] = (FLAC__float)((total_error_1 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_1 / (FLAC__double)data_len) / M_LN2 : 0.0);
331 residual_bits_per_sample[2] = (FLAC__float)((total_error_2 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_2 / (FLAC__double)data_len) / M_LN2 : 0.0);
332 residual_bits_per_sample[3] = (FLAC__float)((total_error_3 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_3 / (FLAC__double)data_len) / M_LN2 : 0.0);
333 residual_bits_per_sample[4] = (FLAC__float)((total_error_4 > 0) ? log(M_LN2 * (FLAC__double)(FLAC__int64)total_error_4 / (FLAC__double)data_len) / M_LN2 : 0.0);
H A Dstream_decoder.c2983 FLAC__int64 pos = -1;
3105 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(FLAC__int64)(target_sample - lower_bound_sample) / (FLAC__double)(FLAC__int64)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(FLAC__int64)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3107 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(target_sample - lower_bound_sample) / (FLAC__double)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3112 pos = (FLAC__int64)lower_bound + (FLAC__int64)(((target_sampl
[all...]
H A Dmetadata_iterators.c142 static int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence);
143 static FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle);
1199 FLAC__int64 pos = tell_cb(handle);
1245 FLAC__int64 pos = tell_cb(handle);
3323 int fseek_wrapper_(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
3328 FLAC__int64 ftell_wrapper_(FLAC__IOHandle handle)
/external/flac/include/FLAC/
H A Dordinals.h45 typedef __int64 FLAC__int64; typedef
52 typedef long long FLAC__int64; typedef
59 typedef int64_t FLAC__int64; typedef
H A Dcallback.h127 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
135 * \retval FLAC__int64
138 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);

Completed in 458 milliseconds