Sophie

Sophie

distrib > * > 2008.0 > x86_64 > by-pkgid > bd9d1e2afb7339c2bb1e00c56bc81002 > files > 2

libsamplerate-0.1.3-0.pre6.3.1mdv2008.0.src.rpm

--- libsamplerate-0.1.3/src/src_sinc.c	2008-03-14 18:23:48.000000000 -0600
+++ libsamplerate-0.1.4/src/src_sinc.c	2008-07-02 06:23:59.000000000 -0600
@@ -201,8 +201,8 @@ sinc_set_converter (SRC_PRIVATE *psrc, i
 	** a better way. Need to look at prepare_data () at the same time.
 	*/
 
-	temp_filter.b_len = 1000 + 2 * lrint (0.5 + 2 * temp_filter.coeff_half_len / (temp_filter.index_inc * 1.0) * SRC_MAX_RATIO) ;
-	temp_filter.b_len = MIN (temp_filter.b_len, 4096) ;
+	temp_filter.b_len = 2 * lrint (1.0 + temp_filter.coeff_half_len / (temp_filter.index_inc * 1.0) * SRC_MAX_RATIO) ;
+	temp_filter.b_len = MAX (temp_filter.b_len, 4096) ;
 	temp_filter.b_len *= temp_filter.channels ;
 
 	if ((filter = calloc (1, sizeof (SINC_FILTER) + sizeof (filter->buffer [0]) * (temp_filter.b_len + temp_filter.channels))) == NULL)