[FFmpeg-cvslog] r20413 - in trunk/libavcodec: synth_filter.c synth_filter.h

michael subversion
Thu Oct 29 11:43:56 CET 2009


Author: michael
Date: Thu Oct 29 11:43:56 2009
New Revision: 20413

Log:
Vertically align function arguments.

Modified:
   trunk/libavcodec/synth_filter.c
   trunk/libavcodec/synth_filter.h

Modified: trunk/libavcodec/synth_filter.c
==============================================================================
--- trunk/libavcodec/synth_filter.c	Thu Oct 29 01:55:35 2009	(r20412)
+++ trunk/libavcodec/synth_filter.c	Thu Oct 29 11:43:56 2009	(r20413)
@@ -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;

Modified: trunk/libavcodec/synth_filter.h
==============================================================================
--- trunk/libavcodec/synth_filter.h	Thu Oct 29 01:55:35 2009	(r20412)
+++ trunk/libavcodec/synth_filter.h	Thu Oct 29 11:43:56 2009	(r20413)
@@ -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);
 



More information about the ffmpeg-cvslog mailing list