# HG changeset patch # User michael # Date 1256813036 0 # Node ID bc20a950f9a7e1bed283df12cb76bdebdb4d59d7 # Parent decdb00e19a888e09a26d5b8397f4e689aac31af Vertically align function arguments. diff -r decdb00e19a8 -r bc20a950f9a7 synth_filter.c --- a/synth_filter.c Thu Oct 29 00:55:35 2009 +0000 +++ b/synth_filter.c Thu Oct 29 10:43:56 2009 +0000 @@ -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; diff -r decdb00e19a8 -r bc20a950f9a7 synth_filter.h --- a/synth_filter.h Thu Oct 29 00:55:35 2009 +0000 +++ b/synth_filter.h Thu Oct 29 10:43:56 2009 +0000 @@ -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);