Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy B. Terriberry <tterribe@xiph.org>2013-05-23 02:46:00 +0400
committerTimothy B. Terriberry <tterribe@xiph.org>2013-05-23 02:46:00 +0400
commitcc6e26a25fc65e3cfbae8142ceafd734fd0c07fe (patch)
tree70885e4f2fddf31382605257105e63d6b6255aed
parentcd3850c1d97d3a21e53e79c0a7feb6f052feb181 (diff)
Minor FFT cleanups.
Remove a redundant include and some dead stores. Patch by Aurélien Zanelli <aurelien.zanelli@parrot.com>.
-rw-r--r--celt/kiss_fft.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/celt/kiss_fft.c b/celt/kiss_fft.c
index dcd69686..ad706c73 100644
--- a/celt/kiss_fft.c
+++ b/celt/kiss_fft.c
@@ -40,7 +40,6 @@
#include "os_support.h"
#include "mathops.h"
#include "stack_alloc.h"
-#include "os_support.h"
/* The guts header contains all the multiplication and addition macros that are defined for
complex numbers. It also delares the kf_ internal functions.
@@ -142,8 +141,6 @@ static void kf_bfly4(
C_ADDTO(*Fout, scratch[1]);
C_ADD( scratch[3] , scratch[0] , scratch[2] );
C_SUB( scratch[4] , scratch[0] , scratch[2] );
- Fout[m2].r = PSHR32(Fout[m2].r, 2);
- Fout[m2].i = PSHR32(Fout[m2].i, 2);
C_SUB( Fout[m2], *Fout, scratch[3] );
tw1 += fstride;
tw2 += fstride*2;