summaryrefslogtreecommitdiff
path: root/libavcodec/synth_filter.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-10-29 10:43:56 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-10-29 10:43:56 +0000
commitd886e4df10217b4c04a96872cefa375ebbbc143e (patch)
treee4cc9ddeeee2664f0b1ae16376c5071eef13a2c9 /libavcodec/synth_filter.c
parentde4070b5204a97c555bcc32746fb7c60da971a6c (diff)
Vertically align function arguments.
Originally committed as revision 20413 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/synth_filter.c')
-rw-r--r--libavcodec/synth_filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/synth_filter.c b/libavcodec/synth_filter.c
index 3df1a2a8a2..c54080a1e6 100644
--- a/libavcodec/synth_filter.c
+++ b/libavcodec/synth_filter.c
@@ -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;