aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/lpc10/placea.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-19 01:20:23 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-19 01:20:23 +0000
commitf2ce8f47db1545ec52e1228b02f6e9240208ebe4 (patch)
treeec1706266dc862ec5bdb5f6a2012de235c1b0644 /codecs/lpc10/placea.c
parent65b7674a758892ccef2aadb1af838f58e520d124 (diff)
Code cleanups (bug #66)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1531 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/lpc10/placea.c')
-rwxr-xr-xcodecs/lpc10/placea.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/codecs/lpc10/placea.c b/codecs/lpc10/placea.c
index 7e705e7f1..3408f29a6 100755
--- a/codecs/lpc10/placea.c
+++ b/codecs/lpc10/placea.c
@@ -1,8 +1,11 @@
/*
$Log$
-Revision 1.14 2003/02/12 13:59:15 matteo
-mer feb 12 14:56:57 CET 2003
+Revision 1.15 2003/09/19 01:20:22 markster
+Code cleanups (bug #66)
+
+Revision 1.2 2003/09/19 01:20:22 markster
+Code cleanups (bug #66)
Revision 1.1.1.1 2003/02/12 13:59:15 matteo
mer feb 12 14:56:57 CET 2003
@@ -35,9 +38,12 @@ extern int placea_(integer *ipitch, integer *voibuf, integer *obound, integer *a
/* PLACEA Version 48 */
/* $Log$
- * Revision 1.14 2003/02/12 13:59:15 matteo
- * mer feb 12 14:56:57 CET 2003
+ * Revision 1.15 2003/09/19 01:20:22 markster
+ * Code cleanups (bug #66)
*
+/* Revision 1.2 2003/09/19 01:20:22 markster
+/* Code cleanups (bug #66)
+/*
/* Revision 1.1.1.1 2003/02/12 13:59:15 matteo
/* mer feb 12 14:56:57 CET 2003
/*
@@ -158,7 +164,7 @@ extern int placea_(integer *ipitch, integer *voibuf, integer *obound, integer *a
allv = allv && voibuf[(*af << 1) + 1] == 1;
allv = allv && voibuf[(*af << 1) + 2] == 1;
winv = voibuf[(*af << 1) + 1] == 1 || voibuf[(*af << 1) + 2] == 1;
- if (allv || winv && *obound == 0) {
+ if (allv || (winv && *obound == 0)) {
/* APHASE: Phase synchronous window placement. */
/* Get minimum lower index of the window. */
i__ = (lrange + *ipitch - 1 - awin[((*af - 1) << 1) + 1]) / *ipitch;