Fix spelling in comment
authorVitor Sessak <vitor1001@gmail.com>
Mon, 1 Mar 2010 20:42:13 +0000 (20:42 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Mon, 1 Mar 2010 20:42:13 +0000 (20:42 +0000)
Originally committed as revision 22137 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/celp_filters.c

index 862db76..26a62ee 100644 (file)
@@ -86,7 +86,7 @@ void ff_celp_lp_synthesis_filterf(float *out, const float *filter_coeffs,
 {
     int i,n;
 
-#if 0 // Unoptimized code patch for improved readability
+#if 0 // Unoptimized code path for improved readability
     for (n = 0; n < buffer_length; n++) {
         out[n] = in[n];
         for (i = 1; i <= filter_length; i++)