aboutsummaryrefslogtreecommitdiffstats
path: root/libFDK/include/fixpoint_math.h
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2016-04-05 17:51:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-04-05 17:51:06 +0000
commitb802750fd273c5914970b4cfa0c959fc5fcc32a4 (patch)
treea8dc54ef8dba931c72627e7bbebf1844b81a31f7 /libFDK/include/fixpoint_math.h
parentbb7ad8711b3b620a7c7de669b7b6409e610c29dd (diff)
parent65750eae6583754ea9d84fed41dc12d1fc3d73d0 (diff)
downloadfdk-aac-b802750fd273c5914970b4cfa0c959fc5fcc32a4.tar.gz
fdk-aac-b802750fd273c5914970b4cfa0c959fc5fcc32a4.tar.bz2
fdk-aac-b802750fd273c5914970b4cfa0c959fc5fcc32a4.zip
SBR/AAC encoder updates, code clean up am: e1c78ed
am: 65750ea * commit '65750eae6583754ea9d84fed41dc12d1fc3d73d0': SBR/AAC encoder updates, code clean up Change-Id: Ife18fb3ee2fe76fab1e5ab8256addf5d39834c2f
Diffstat (limited to 'libFDK/include/fixpoint_math.h')
-rw-r--r--libFDK/include/fixpoint_math.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libFDK/include/fixpoint_math.h b/libFDK/include/fixpoint_math.h
index df141d3..88e2f09 100644
--- a/libFDK/include/fixpoint_math.h
+++ b/libFDK/include/fixpoint_math.h
@@ -2,7 +2,7 @@
/* -----------------------------------------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android
-© Copyright 1995 - 2013 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
+© Copyright 1995 - 2015 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V.
All rights reserved.
1. INTRODUCTION
@@ -438,11 +438,11 @@ inline FIXP_DBL fAddSaturate(const FIXP_DBL a, const FIXP_DBL b)
/*****************************************************************************
- array for 1/n, n=1..50
+ array for 1/n, n=1..80
****************************************************************************/
- extern const FIXP_DBL invCount[50];
+ extern const FIXP_DBL invCount[80];
LNK_SECTION_INITCODE
inline void InitInvInt(void) {}
@@ -450,14 +450,14 @@ inline FIXP_DBL fAddSaturate(const FIXP_DBL a, const FIXP_DBL b)
/**
* \brief Calculate the value of 1/i where i is a integer value. It supports
- * input values from 1 upto 50.
+ * input values from 1 upto 80.
* \param intValue Integer input value.
* \param FIXP_DBL representation of 1/intValue
*/
inline FIXP_DBL GetInvInt(int intValue)
{
- FDK_ASSERT((intValue > 0) && (intValue < 50));
- FDK_ASSERT(intValue<50);
+ FDK_ASSERT((intValue > 0) && (intValue < 80));
+ FDK_ASSERT(intValue<80);
return invCount[intValue];
}