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

/external/flac/libFLAC/include/private/
H A Dfloat.h73 #define FLAC__fixedpoint_mul(x, y) ( (FLAC__fixedpoint) ( ((FLAC__int64)(x)*(FLAC__int64)(y)) >> 16 ) )
75 #define FLAC__fixedpoint_div(x, y) ( (FLAC__fixedpoint) ( ( ((FLAC__int64)(x)<<32) / (FLAC__int64)(y) ) >> 16 ) )
H A Dbitmath.h184 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v);
/external/flac/libFLAC/
H A Dlpc.c271 FLAC__int64 sumo;
290 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
532 FLAC__int64 sum;
547 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
552 if(FLAC__bitmath_silog2_wide((FLAC__int64)(*data) - (sum >> lp_quantization)) > 32) {
553 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients_wide: OVERFLOW, i=%u, data=%d, sum=%" PRId64 ", residual=%" PRId64 "\n", i, *data, (int64_t)(sum >> lp_quantization), ((FLAC__int64)(*data) - (sum >> lp_quantization)));
562 FLAC__int64 sum;
578 sum += qlp_coeff[11] * (FLAC__int64)dat
[all...]
H A Dbitmath.c87 unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v)
H A Dstream_decoder.c2998 FLAC__int64 pos = -1;
3118 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;
3122 pos = (FLAC__int64)lower_bound + (FLAC__int64)(((target_sample - lower_bound_sample) * (upper_bound - lower_bound)) / (upper_bound_sample - lower_bound_sample)) - approx_bytes_per_frame;
3124 pos = (FLAC__int64)lower_bound + (FLAC__int64)((((target_sample - lower_bound_sample)>>8) * ((upper_bound - lower_bound)>>8)) / ((upper_bound_sample - lower_bound_sample)>>16)) - approx_bytes_per_frame;
3126 if(pos >= (FLAC__int64)upper_bound)
3127 pos = (FLAC__int64)upper_bound - 1;
3128 if(pos < (FLAC__int64)lower_boun
[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 Dcallback.h128 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
136 * \retval FLAC__int64
139 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
H A Dordinals.h47 typedef __int64 FLAC__int64; typedef
63 typedef int64_t FLAC__int64; typedef

Completed in 247 milliseconds