/*==================================================================================== EVS Codec 3GPP TS26.443 Jun 30, 2015. Version CR 26.443-0006 ====================================================================================*/ #include #include #include "cnst.h" #include "prot.h" #include "stat_com.h" #include "assert.h" #include "basop_util.h" #ifndef int32 #define int32 int #endif /*--------------------------------------------------------------- Ari 14 bits common routines -------------------------------------------------------------*/ /** * \brief Integer Multiply * * \param[i] r * \param[i] c * * \return r*c */ long mul_sbc_14bits(long r,long c) { long temp; /*function in line*/ temp = (((int32) r)*((int32) c))>>stat_bitsnew; return temp; /*function in line*/ }