mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
#ifndef __FAST_ACOSF_H__
|
|
#define __FAST_ACOSF_H__
|
|
|
|
|
|
#define ACOS_TABLE_FILENAME "/tmp/acos_table.dat"
|
|
|
|
/*! \brief Arc cosine table initialization.
|
|
*
|
|
* @author Eric des Courtis
|
|
* @par Modifications: Piotr Gregor < piotrek.gregor gmail.com >
|
|
* @return 0 on success, negative value otherwise:
|
|
* -1 can't access arc cos table with error != NOENT,
|
|
* -2 table creation failed (compute_table)
|
|
* -3 can access table but fopen failed
|
|
* -4 mmap failed
|
|
*/
|
|
extern int init_fast_acosf(void);
|
|
|
|
/*! \brief Arc cosine table deinitialization.
|
|
*
|
|
* @author Eric des Courtis
|
|
* @par Modifications: Piotr Gregor < piotrek.gregor gmail.com >
|
|
* @return 0 on success, negative value otherwise:
|
|
* -1 munmap failed,
|
|
* -2 close failed
|
|
*/
|
|
extern int destroy_fast_acosf(void);
|
|
|
|
/*! \brief Return arc cos for this argument.
|
|
* @details Uses previously created and mmapped file.
|
|
* @author Eric des Courtis
|
|
*/
|
|
extern float fast_acosf(float x);
|
|
|
|
/*! \brief Arc cosine table creation.
|
|
*
|
|
* @author Eric des Courtis
|
|
* @par Modifications: Piotr Gregor < piotrek.gregor gmail.com >
|
|
* @return 0 on success, negative value otherwise:
|
|
* -1 fwrite failed,
|
|
* -2 fclose failed
|
|
*/
|
|
extern int compute_table(void);
|
|
|
|
#endif
|
|
|