1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef _Sound_and_LPC_robust_h_
- #define _Sound_and_LPC_robust_h_
- /* Sound_and_LPC_robust.h
- *
- * Copyright (C) 1993-2018 David Weenink
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- djmw 20030815 GPL header
- */
- #include "LPC.h"
- #include "Formant.h"
- #include "Sound.h"
- void LPC_Frames_Sound_huber (LPC_Frame me, Sound thee, LPC_Frame him, struct huber_struct *hs);
- /*int LPC_Frames_Sound_huber (LPC_Frame me, Sound thee, LPC_Frame him, void *huber);
- The gnu c compiler (version 3.3.1) complaints about having two LPC_Frame types
- in the argument list:
- error: two or more data types in declaration of `LPC_Frame_Sound_into_LPC_Frame_huber
- By defining a void pointer we circumvent the complaint.
- */
- autoLPC LPC_Sound_to_LPC_robust (LPC thee, Sound me, double analysisWidth,
- double preEmphasisFrequency, double k_stdev, int itermax, double tol, bool wantlocation);
- autoFormant Sound_to_Formant_robust (Sound me, double dt_in, double numberOfFormants, double maximumFrequency,
- double halfdt_window, double preemphasisFrequency, double safetyMargin, double k, int itermax, double tol, bool wantlocation);
- #endif /* _Sound_and_LPC_robust_h_ */
|