diff libaf/filter.h @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 72d0b1444141
children 0dfbb22d68c8
line wrap: on
line diff
--- a/libaf/filter.h	Tue May 12 19:25:35 2009 +0000
+++ b/libaf/filter.h	Wed May 13 02:58:57 2009 +0000
@@ -26,7 +26,7 @@
 #define MPLAYER_FILTER_H
 
 
-// Design and implementation of different types of digital filters 
+// Design and implementation of different types of digital filters
 
 
 // Flags used for filter design
@@ -79,7 +79,7 @@
 /* Add new data to circular queue designed to be used with a FIR
    filter. xq is the circular queue, in pointing at the new sample, xi
    current index for xq and n the length of the filter. xq must be n*2
-   long. 
+   long.
 */
 #define af_filter_updateq(n,xi,xq,in)\
   xq[xi]=(xq)[(xi)+(n)]=*(in);\