Lines Matching refs:decoded
46 static void flac_lpc_16_c(int32_t *decoded, const int coeffs[32], in flac_lpc_16_c() argument
51 for (i = pred_order; i < len - 1; i += 2, decoded += 2) { in flac_lpc_16_c()
53 SUINT d = decoded[0]; in flac_lpc_16_c()
57 d = decoded[j]; in flac_lpc_16_c()
62 d = decoded[j] += (SUINT)(s0 >> qlevel); in flac_lpc_16_c()
64 decoded[j + 1] += (SUINT)(s1 >> qlevel); in flac_lpc_16_c()
69 sum += coeffs[j] * (SUINT)decoded[j]; in flac_lpc_16_c()
70 decoded[j] = decoded[j] + (unsigned)(sum >> qlevel); in flac_lpc_16_c()
74 static void flac_lpc_32_c(int32_t *decoded, const int coeffs[32], in flac_lpc_32_c() argument
79 for (i = pred_order; i < len; i++, decoded++) { in flac_lpc_32_c()
82 sum += (int64_t)coeffs[j] * decoded[j]; in flac_lpc_32_c()
83 decoded[j] += sum >> qlevel; in flac_lpc_32_c()