From 00dd1704f15d77f4b5ca3694493812b8e49a8696 Mon Sep 17 00:00:00 2001 From: mattf Date: Fri, 10 Feb 2006 23:37:27 +0000 Subject: Lots of little fixes for doing MSVC compiling codecs in windows (#6022) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9450 f38db490-d61c-443f-a65b-d21fe96a405b --- codecs/lpc10/tbdm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'codecs/lpc10/tbdm.c') diff --git a/codecs/lpc10/tbdm.c b/codecs/lpc10/tbdm.c index 2ed6e34cf..3e206de34 100644 --- a/codecs/lpc10/tbdm.c +++ b/codecs/lpc10/tbdm.c @@ -121,7 +121,7 @@ extern int tbdm_(real *speech, integer *lpita, integer *tau, integer *ltau, real difmag_(&speech[1], lpita, &tau[1], ltau, &tau[*ltau], &amdf[1], minptr, maxptr); *mintau = tau[*minptr]; - minamd = amdf[*minptr]; + minamd = (integer)amdf[*minptr]; /* Build table containing all lags within +/- 3 of the AMDF minimum */ /* excluding all that have already been computed */ ltau2 = 0; @@ -147,7 +147,7 @@ extern int tbdm_(real *speech, integer *lpita, integer *tau, integer *ltau, real maxp2); if (amdf2[minp2 - 1] < (real) minamd) { *mintau = tau2[minp2 - 1]; - minamd = amdf2[minp2 - 1]; + minamd = (integer)amdf2[minp2 - 1]; } } /* Check one octave up, if there are any lags not yet computed */ @@ -165,7 +165,7 @@ extern int tbdm_(real *speech, integer *lpita, integer *tau, integer *ltau, real maxp2); if (amdf2[minp2 - 1] < (real) minamd) { *mintau = tau2[minp2 - 1]; - minamd = amdf2[minp2 - 1]; + minamd = (integer)amdf2[minp2 - 1]; *minptr += -20; } } -- cgit v1.2.3