2
0

sd.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /*--------------------------------------------------------------------------*\
  2. FILE........: sd.h
  3. AUTHOR......: David Rowe
  4. DATE CREATED: 22/7/93
  5. Function to determine spectral distortion between two sets of LPCs.
  6. \*--------------------------------------------------------------------------*/
  7. /*
  8. Copyright (C) 2009 David Rowe
  9. All rights reserved.
  10. This program is free software; you can redistribute it and/or modify
  11. it under the terms of the GNU Lesser General Public License version 2, as
  12. published by the Free Software Foundation. This program is
  13. distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with this program; if not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef __SD__
  21. #define __SD__
  22. float spectral_dist(float ak1[], float ak2[], int p, int n);
  23. #endif /* __SD__ */