mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-23 09:54:14 +00:00
25 lines
484 B
C
25 lines
484 B
C
/*
|
|
* @brief Options controlling avmd module.
|
|
*
|
|
* @author Eric des Courtis
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Piotr Gregor <piotrgregor@rsyncme.org>
|
|
*/
|
|
|
|
|
|
#ifndef __AVMD_OPTIONS_H__
|
|
#define __AVMD_OPTIONS_H__
|
|
|
|
|
|
/* define/undefine this to enable/disable faster computation
|
|
* of arcus cosine - table will be created mapping floats
|
|
* to integers and returning arc cos values given these integer
|
|
* indices into table */
|
|
/* #define AVMD_FAST_MATH */
|
|
|
|
|
|
#endif /* __AVMD_OPTIONS_H__ */
|
|
|