diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-01 15:31:43 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-03 14:00:47 +0200 |
commit | ca844b7be9c69c91113094ef21d720f1ca80db60 (patch) | |
tree | b23ec24dfc7cbebfd412781c5f0a79145ac11801 /libavcodec/x86/fft.c | |
parent | d3e0766fc00734adbb589eb4c865feb8d26785ab (diff) | |
download | ffmpeg-ca844b7be9c69c91113094ef21d720f1ca80db60.tar.gz |
x86: Use consistent 3dnowext function and macro name suffixes
Currently there is a wild mix of 3dn2/3dnow2/3dnowext. Switching to
"3dnowext", which is a more common name of the CPU flag, as reported
e.g. by the Linux kernel, unifies this.
Diffstat (limited to 'libavcodec/x86/fft.c')
-rw-r--r-- | libavcodec/x86/fft.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/fft.c b/libavcodec/x86/fft.c index f1c1c9d36b..fcde3fa797 100644 --- a/libavcodec/x86/fft.c +++ b/libavcodec/x86/fft.c @@ -34,9 +34,9 @@ av_cold void ff_fft_init_mmx(FFTContext *s) } if (has_vectors & AV_CPU_FLAG_3DNOWEXT && HAVE_AMD3DNOWEXT) { /* 3DNowEx for K7 */ - s->imdct_calc = ff_imdct_calc_3dnow2; - s->imdct_half = ff_imdct_half_3dnow2; - s->fft_calc = ff_fft_calc_3dnow2; + s->imdct_calc = ff_imdct_calc_3dnowext; + s->imdct_half = ff_imdct_half_3dnowext; + s->fft_calc = ff_fft_calc_3dnowext; } #endif if (has_vectors & AV_CPU_FLAG_SSE && HAVE_SSE) { |