source: roaraudio/include/libroardsp/poly.h @ 383:56f41c54f169

Last change on this file since 383:56f41c54f169 was 383:56f41c54f169, checked in by phi, 16 years ago

added working 16 bit mono resampling code

File size: 430 bytes
Line 
1//math.h:
2
3#ifndef _LIBROARMATH_H_
4#define _LIBROARMATH_H_
5
6#include "libroar.h"
7
8int roar_math_mkpoly (float * poly, float * data, int len);
9
10int roar_math_mkpoly_2x2 (float * poly, float * data);
11int roar_math_mkpoly_3x3 (float * poly, float * data);
12int roar_math_mkpoly_4x4 (float * poly, float * data);
13int roar_math_mkpoly_5x5 (float * poly, float * data);
14
15float roar_math_cvpoly_4x4 (float * poly, float t);
16
17#endif
18
19//ll
Note: See TracBrowser for help on using the repository browser.