mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 02:18:57 +00:00
It provides better detection than mod_vmd but is a little more CPU intensive than mod_vmd. Perhaps someone would like to CUDAfy this code?
11 lines
200 B
C
11 lines
200 B
C
#ifndef __FAST_ACOSF_H__
|
|
#define __FAST_ACOSF_H__
|
|
|
|
extern void init_fast_acosf(void);
|
|
extern float fast_acosf(float x);
|
|
extern void destroy_fast_acosf(void);
|
|
extern void compute_table(void);
|
|
|
|
#endif
|
|
|