[SCM] libav/experimental: Change whitespace placement a little to improve readabiliy slightly. Thats not an attempt to emulate indent -kr behavior down to the finest fineprint, first it would not be worth the work, second it would be less readable, third it would not be K&R but indent -kr then.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:53:52 UTC 2013
The following commit has been merged in the experimental branch:
commit 8a08175f3f81907ca39b0fa5b3bf6a3da061edd3
Author: Michael Niedermayer <michaelni at gmx.at>
Date: Thu Oct 29 10:58:59 2009 +0000
Change whitespace placement a little to improve readabiliy slightly.
Thats not an attempt to emulate indent -kr behavior down to the finest
fineprint, first it would not be worth the work, second it would be less
readable, third it would not be K&R but indent -kr then.
Originally committed as revision 20416 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/synth_filter.c b/libavcodec/synth_filter.c
index c54080a..a48939d 100644
--- a/libavcodec/synth_filter.c
+++ b/libavcodec/synth_filter.c
@@ -31,26 +31,26 @@ void ff_synth_filter_float(FFTContext *imdct,
ff_imdct_half(imdct, synth_buf, in);
for (i = 0; i < 16; i++){
- float a= synth_buf2[i ];
- float b= synth_buf2[i+16];
+ float a= synth_buf2[i ];
+ float b= synth_buf2[i + 16];
float c= 0;
float d= 0;
for (j = 0; j < 512 - *synth_buf_offset; j += 64){
- a += window[i+j ]*(-synth_buf[15-i+j]);
- b += window[i+j+16]*( synth_buf[ i+j]);
- c += window[i+j+32]*( synth_buf[16+i+j]);
- d += window[i+j+48]*( synth_buf[31-i+j]);
+ a += window[i + j ]*(-synth_buf[15 - i + j ]);
+ b += window[i + j + 16]*( synth_buf[ i + j ]);
+ c += window[i + j + 32]*( synth_buf[16 + i + j ]);
+ d += window[i + j + 48]*( synth_buf[31 - i + j ]);
}
for ( ; j < 512; j += 64){
- a += window[i+j ]*(-synth_buf[15-i+j-512]);
- b += window[i+j+16]*( synth_buf[ i+j-512]);
- c += window[i+j+32]*( synth_buf[16+i+j-512]);
- d += window[i+j+48]*( synth_buf[31-i+j-512]);
+ a += window[i + j ]*(-synth_buf[15 - i + j - 512]);
+ b += window[i + j + 16]*( synth_buf[ i + j - 512]);
+ c += window[i + j + 32]*( synth_buf[16 + i + j - 512]);
+ d += window[i + j + 48]*( synth_buf[31 - i + j - 512]);
}
- out[i ] = a * scale + bias;
- out[i+16] = b * scale + bias;
- synth_buf2[i ] = c;
- synth_buf2[i+16] = d;
+ out[i ] = a*scale + bias;
+ out[i + 16] = b*scale + bias;
+ synth_buf2[i ] = c;
+ synth_buf2[i + 16] = d;
}
- *synth_buf_offset= (*synth_buf_offset-32)&511;
+ *synth_buf_offset= (*synth_buf_offset - 32)&511;
}
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list