2016-03-20 23:58:45 +00:00
|
|
|
/*
|
|
|
|
* @brief Options controlling avmd module.
|
|
|
|
*
|
|
|
|
* @author Eric des Courtis
|
2016-04-07 15:56:49 +01:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
2016-06-24 18:36:55 +01:00
|
|
|
* Piotr Gregor <piotrgregor@rsyncme.org>
|
2016-03-20 23:58:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2016-03-28 01:46:02 +01:00
|
|
|
#ifndef __AVMD_OPTIONS_H__
|
|
|
|
#define __AVMD_OPTIONS_H__
|
2010-05-25 15:03:14 -04:00
|
|
|
|
2016-03-20 23:58:45 +00:00
|
|
|
|
|
|
|
/* 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
|
2016-03-28 01:46:02 +01:00
|
|
|
* indices into table */
|
2016-03-20 23:58:45 +00:00
|
|
|
/* #define AVMD_FAST_MATH */
|
|
|
|
|
2016-03-28 01:46:02 +01:00
|
|
|
|
|
|
|
#endif /* __AVMD_OPTIONS_H__ */
|
2010-05-25 15:03:14 -04:00
|
|
|
|