]> git.sesse.net Git - vlc/blob - modules/audio_filter/spatializer/denormals.h
Remove INT64_C hack.
[vlc] / modules / audio_filter / spatializer / denormals.h
1 // Macro for killing denormalled numbers
2 //
3 // Written by Jezar at Dreampoint, June 2000
4 // http://www.dreampoint.co.uk
5 // Based on IS_DENORMAL macro by Jon Watte
6 // This code is public domain
7
8 #ifndef _denormals_
9 #define _denormals_
10
11
12 #ifdef __cplusplus
13 extern "C"
14 #endif
15 float undenormalise( float );
16
17 #endif//_denormals_
18