Consistently use inline instead of __inline

This seemed to have been missed in 109fecc.
This commit is contained in:
Martin Storsjö 2014-02-08 14:08:46 +02:00
parent e366f5779b
commit ba6bf7da18

View File

@ -63,7 +63,7 @@ extern const uint8_t g_kuiTemporalIdListTable[MAX_TEMPORAL_LEVEL][MAX_GOP_SIZE
* \param upper input upper value * \param upper input upper value
* \return 2 based scaling factor * \return 2 based scaling factor
*/ */
static __inline uint32_t GetLogFactor (real32_t base, real32_t upper) { static inline uint32_t GetLogFactor (real32_t base, real32_t upper) {
const double dLog2factor = log10 (1.0 * upper / base) / log10 (2.0); const double dLog2factor = log10 (1.0 * upper / base) / log10 (2.0);
const double dEpsilon = 0.0001; const double dEpsilon = 0.0001;
const double dRound = floor (dLog2factor + 0.5); const double dRound = floor (dLog2factor + 0.5);