Home
last modified time | relevance | path

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

/aosp_15_r20/external/flac/src/libFLAC/
H A Dlpc.c835 FLAC__int64 sum, residual_to_check; in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual() local
876 residual_to_check = data[i] - (sum >> lp_quantization); in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual()
878 if(residual_to_check <= INT32_MIN || residual_to_check > INT32_MAX) in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual()
881 residual[i] = residual_to_check; in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual()
889 FLAC__int64 sum, residual_to_check; in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual_33bit() local
930 residual_to_check = data[i] - (sum >> lp_quantization); in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual_33bit()
932 if(residual_to_check <= INT32_MIN || residual_to_check > INT32_MAX) in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual_33bit()
935 residual[i] = residual_to_check; in FLAC__lpc_compute_residual_from_qlp_coefficients_limit_residual_33bit()