mirror of
				https://github.com/mborgerding/kissfft.git
				synced 2025-11-04 01:05:19 -05:00 
			
		
		
		
	*** empty log message ***
This commit is contained in:
		
							
								
								
									
										14
									
								
								CHANGELOG
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								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.
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								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
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user