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

/external/flac/libFLAC/
H A Dstream_decoder.c2985 unsigned approx_bytes_per_frame; local
3005 approx_bytes_per_frame = (max_framesize + min_framesize) / 2 + 1;
3014 approx_bytes_per_frame = min_blocksize * channels * bps/8 + 64;
3017 approx_bytes_per_frame = 4096 * channels * bps/8 + 64;
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_sample - lower_bound_sample) * (upper_bound - lower_bound)) / (upper_bound_sample - lower_bound_sample)) - approx_bytes_per_frame;
3114 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;
3159 approx_bytes_per_frame = approx_bytes_per_frame
[all...]

Completed in 52 milliseconds