From 481e504c3738ea38505cc0377c07ea4257c5cda2 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Sun, 4 Apr 2004 21:29:26 +0000 Subject: [PATCH] *** empty log message *** --- CHANGELOG | 14 ++++++++++++++ Makefile | 6 +----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 83d147b..45c014a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +1.2.1 (April 4, 2004) + compiles cleanly with just about every -W warning flag under the sun + + reorganized kiss_fft_state so it could be read-only/const. This may be useful for embedded systems + that are willing to predeclare twiddle factors, factorization. + + Fixed C_MUL,S_MUL on 16-bit platforms. + + tmpbuf will only be allocated if input & output buffers are same + scratchbuf will only be allocated for ffts that are not multiples of 2,3,5 + + NOTE: The tmpbuf,scratchbuf changes may require synchronization code for multi-threaded apps. + + 1.2 (Feb 23, 2004) interface change -- cfg object is forward declaration of struct instead of void* This maintains type saftey and lets the compiler warn/error about stupid mistakes. diff --git a/Makefile b/Makefile index 2c3fa24..17771ab 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,9 @@ -KFVER=120 +KFVER=121 DISTDIR=kiss_fft_v$(KFVER) TARBALL=kiss_fft_v$(KFVER).tar.gz ZIPFILE=kiss_fft_v$(KFVER).zip -WARNINGS=-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return \ - -Wcast-align -Wcast-qual -Wnested-externs -Wshadow -Wbad-function-cast \ - -Wwrite-strings - testall: export DATATYPE=short && cd test && make test export DATATYPE=float && cd test && make test