LFCC.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef _LFCC_h_
  2. #define _LFCC_h_
  3. /* LFCC.h
  4. *
  5. * Linear Frequency Cepstral Coefficients class.
  6. *
  7. * Copyright (C) 1993-2017 David Weenink
  8. *
  9. * This code is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or (at
  12. * your option) any later version.
  13. *
  14. * This code is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. /*
  23. djmw 20001213
  24. djmw 20020813 GPL header
  25. djmw 20110306 Latest modification.
  26. */
  27. #include "CC.h"
  28. Thing_define (LFCC, CC) {
  29. };
  30. autoLFCC LFCC_create (double tmin, double tmax, integer nt, double dt, double t1,
  31. integer maximumNumberOfCoefficients, double fmin, double fmax);
  32. #endif /* _LFCC_h_ */