diff options
author | Gildas Bazin <gbazi@altern.org> | 2004-03-13 21:43:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-13 21:43:24 +0000 |
commit | 68951ecf0ced82b33f84d8ec79984d87291c93dc (patch) | |
tree | 1161da34081805c2fa2227bcba5e368344f7052f /libavcodec/i386 | |
parent | ebcd2f968969192dd1286d9cbdd41197bff09a2f (diff) | |
download | ffmpeg-68951ecf0ced82b33f84d8ec79984d87291c93dc.tar.gz |
fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
Originally committed as revision 2882 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r-- | libavcodec/i386/fft_sse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/fft_sse.c b/libavcodec/i386/fft_sse.c index 175cea506c..d07c943e91 100644 --- a/libavcodec/i386/fft_sse.c +++ b/libavcodec/i386/fft_sse.c @@ -42,7 +42,7 @@ static void print_v4sf(const char *str, __m128 a) #endif /* XXX: handle reverse case */ -void fft_calc_sse(FFTContext *s, FFTComplex *z) +void ff_fft_calc_sse(FFTContext *s, FFTComplex *z) { int ln = s->nbits; int j, np, np2; |