Vertically align function arguments.
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 29 Oct 2009 10:43:56 +0000 (10:43 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 29 Oct 2009 10:43:56 +0000 (10:43 +0000)
Originally committed as revision 20413 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/synth_filter.c
libavcodec/synth_filter.h

index 3df1a2a..c54080a 100644 (file)
@@ -21,9 +21,9 @@
 #include "synth_filter.h"
 
 void ff_synth_filter_float(FFTContext *imdct,
-                         float *synth_buf_ptr, int *synth_buf_offset,
-                         float synth_buf2[32], const float window[512],
-                         float out[32], const float in[32], float scale, float bias)
+                           float *synth_buf_ptr, int *synth_buf_offset,
+                           float synth_buf2[32], const float window[512],
+                           float out[32], const float in[32], float scale, float bias)
 {
     float *synth_buf= synth_buf_ptr + *synth_buf_offset;
     int i, j;
index 0472048..8f1a8b4 100644 (file)
@@ -21,7 +21,7 @@
 #include "dsputil.h"
 
 void ff_synth_filter_float(FFTContext *imdct,
-                         float *synth_buf_ptr, int *synth_buf_offset,
-                         float synth_buf2[32], const float window[512],
-                         float out[32], const float in[32], float scale, float bias);
+                           float *synth_buf_ptr, int *synth_buf_offset,
+                           float synth_buf2[32], const float window[512],
+                           float out[32], const float in[32], float scale, float bias);