Browse Source

Remove unused function

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.2
falkTX 2 years ago
parent
commit
7fd55e40df
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 0 additions and 18 deletions
  1. +0
    -14
      source/modules/zita-resampler/resampler-table.cc
  2. +0
    -4
      source/modules/zita-resampler/resampler-table.h

+ 0
- 14
source/modules/zita-resampler/resampler-table.cc View File

@@ -132,17 +132,3 @@ void Resampler_table::destroy (Resampler_table *T)
}
_mutex.unlock ();
}


void Resampler_table::print_list (void)
{
Resampler_table *P;

printf ("Resampler table\n----\n");
for (P = _list; P; P = P->_next)
{
printf ("refc = %3d fr = %10.6lf hl = %4d np = %4d\n", P->_refc, P->_fr, P->_hl, P->_np);
}
printf ("----\n\n");
}


+ 0
- 4
source/modules/zita-resampler/resampler-table.h View File

@@ -44,10 +44,6 @@ private:

class Resampler_table
{
public:

static void print_list (void);

private:

Resampler_table (double fr, unsigned int hl, unsigned int np);


Loading…
Cancel
Save