diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-12-17 18:14:38 +0000 |
commit | 115329f16062074e11ccf3b89ead6176606c9696 (patch) | |
tree | e98aa993905a702688bf821737ab9a443969fc28 /libavcodec/mdct.c | |
parent | d76319b1ab716320f6e6a4d690b85fe4504ebd5b (diff) | |
download | ffmpeg-115329f16062074e11ccf3b89ead6176606c9696.tar.gz |
COSMETICS: Remove all trailing whitespace.
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdct.c')
-rw-r--r-- | libavcodec/mdct.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c index 6628958b62..c5a5999c5d 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct.c @@ -74,7 +74,7 @@ int ff_mdct_init(MDCTContext *s, int nbits, int inverse) * @param input N/2 samples * @param tmp N/2 samples */ -void ff_imdct_calc(MDCTContext *s, FFTSample *output, +void ff_imdct_calc(MDCTContext *s, FFTSample *output, const FFTSample *input, FFTSample *tmp) { int k, n8, n4, n2, n, j; @@ -126,7 +126,7 @@ void ff_imdct_calc(MDCTContext *s, FFTSample *output, * @param out N/2 samples * @param tmp temporary storage of N/2 samples */ -void ff_mdct_calc(MDCTContext *s, FFTSample *out, +void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input, FFTSample *tmp) { int i, j, n, n8, n4, n2, n3; @@ -156,7 +156,7 @@ void ff_mdct_calc(MDCTContext *s, FFTSample *out, } ff_fft_calc(&s->fft, x); - + /* post rotation */ for(i=0;i<n4;i++) { re = x[i].re; |