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?
12 lines
174 B
C
12 lines
174 B
C
#ifndef __GOERTZEL_H__
|
|
#define __GOERTZEL_H__
|
|
|
|
#include <stdint.h>
|
|
#include "buffer.h"
|
|
|
|
extern double goertzel(circ_buffer_t *b, size_t pos, double f, size_t num);
|
|
|
|
#endif
|
|
|
|
|