DAC: add interpolation settings

This commit is contained in:
tildearrow 2022-12-18 03:54:30 -05:00
parent 51ea3cec2a
commit e0723c7485
5 changed files with 101 additions and 2 deletions

View file

@ -21,6 +21,7 @@ class DivFilterTables {
public:
static float* cubicTable;
static float* sincTable;
static float* sincTable8;
static float* sincIntegralTable;
/**
@ -35,6 +36,12 @@ class DivFilterTables {
*/
static float* getSincTable();
/**
* get a 8192x4 one-side sine-windowed sinc table.
* @return the table.
*/
static float* getSincTable8();
/**
* get a 8192x8 one-side sine-windowed sinc integral table.
* @return the table.