changeset 10479:bc20a950f9a7 libavcodec

Vertically align function arguments.
author michael
date Thu, 29 Oct 2009 10:43:56 +0000
parents decdb00e19a8
children bea92d25f53e
files synth_filter.c synth_filter.h
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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);