mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 02:18:57 +00:00
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
|
||
|
|
||
|
|