lpcomb.h
462 Bytes
/***************************************************************
*
* lpcomb.h
* the low-pass inside a comb function header
*
* 1/3/95 bfs initial version
*
*/
#ifndef __LPCOMB_H__
#define __LPCOMB_H__
/* exported data types */
struct lpc_info {
long length;
float lpcoef;
float lpzmem;
float coef;
float* base;
float* out_ptr;
float in_data;
float out_data;
};
/******* exported prototypes *********/
float lpcomb(struct lpc_info*);
#endif