comparison celp_filters.c @ 11329:fb56293a501a libavcodec

Fix spelling in comment
author vitor
date Mon, 01 Mar 2010 20:42:13 +0000
parents 51d5b29fc4fc
children
comparison
equal deleted inserted replaced
11328:51d5b29fc4fc 11329:fb56293a501a
84 const float* in, int buffer_length, 84 const float* in, int buffer_length,
85 int filter_length) 85 int filter_length)
86 { 86 {
87 int i,n; 87 int i,n;
88 88
89 #if 0 // Unoptimized code patch for improved readability 89 #if 0 // Unoptimized code path for improved readability
90 for (n = 0; n < buffer_length; n++) { 90 for (n = 0; n < buffer_length; n++) {
91 out[n] = in[n]; 91 out[n] = in[n];
92 for (i = 1; i <= filter_length; i++) 92 for (i = 1; i <= filter_length; i++)
93 out[n] -= filter_coeffs[i-1] * out[n-i]; 93 out[n] -= filter_coeffs[i-1] * out[n-i];
94 } 94 }