From 6cd62dad198be7ef497fcaf10c1c34784dc0f94b Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 12 Jul 2001 21:21:53 +0000 Subject: [PATCH] rename _slow to _wide --- src/libFLAC/include/private/fixed.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libFLAC/include/private/fixed.h b/src/libFLAC/include/private/fixed.h index 25636064..d6458901 100644 --- a/src/libFLAC/include/private/fixed.h +++ b/src/libFLAC/include/private/fixed.h @@ -26,7 +26,7 @@ * FLAC__fixed_compute_best_predictor() * -------------------------------------------------------------------- * Compute the best fixed predictor and the expected bits-per-sample - * of the residual signal for each order. The _slow() version uses + * of the residual signal for each order. The _wide() version uses * 64-bit integers which is statistically necessary when bits-per- * sample + log2(blocksize) > 30 * @@ -42,7 +42,7 @@ unsigned FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov(const FLAC__int32 #endif #endif #endif -unsigned FLAC__fixed_compute_best_predictor_slow(const FLAC__int32 data[], unsigned data_len, FLAC__real residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]); +unsigned FLAC__fixed_compute_best_predictor_wide(const FLAC__int32 data[], unsigned data_len, FLAC__real residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]); /* * FLAC__fixed_compute_residual()