mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
i've tested, now you can too
This commit is contained in:
@@ -22,13 +22,22 @@
|
||||
License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __INTERP__
|
||||
#define __INTERP__
|
||||
|
||||
#include "kiss_fft.h"
|
||||
|
||||
void interpolate(MODEL *interp, MODEL *prev, MODEL *next);
|
||||
void interpolate_lsp(kiss_fft_cfg fft_dec_cfg,
|
||||
MODEL *interp, MODEL *prev, MODEL *next,
|
||||
float *prev_lsps, float prev_e,
|
||||
float *next_lsps, float next_e,
|
||||
float *ak_interp, float *lsps_interp);
|
||||
void interp_Wo(MODEL *interp, MODEL *prev, MODEL *next);
|
||||
float interp_energy(float prev, float next);
|
||||
void interpolate_lsp_ver2(float interp[], float prev[], float next[], float weight);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user