comparison synth_filter.c @ 10479:bc20a950f9a7 libavcodec

Vertically align function arguments.
author michael
date Thu, 29 Oct 2009 10:43:56 +0000
parents 212a837ebd27
children 90daf9b3083d
comparison
equal deleted inserted replaced
10478:decdb00e19a8 10479:bc20a950f9a7
19 */ 19 */
20 20
21 #include "synth_filter.h" 21 #include "synth_filter.h"
22 22
23 void ff_synth_filter_float(FFTContext *imdct, 23 void ff_synth_filter_float(FFTContext *imdct,
24 float *synth_buf_ptr, int *synth_buf_offset, 24 float *synth_buf_ptr, int *synth_buf_offset,
25 float synth_buf2[32], const float window[512], 25 float synth_buf2[32], const float window[512],
26 float out[32], const float in[32], float scale, float bias) 26 float out[32], const float in[32], float scale, float bias)
27 { 27 {
28 float *synth_buf= synth_buf_ptr + *synth_buf_offset; 28 float *synth_buf= synth_buf_ptr + *synth_buf_offset;
29 int i, j; 29 int i, j;
30 30
31 ff_imdct_half(imdct, synth_buf, in); 31 ff_imdct_half(imdct, synth_buf, in);