Reply To: Performance information when using wav file

Home Forums OpenEars Performance information when using wav file Reply To: Performance information when using wav file

#1017508
Halle Winkler
Politepix

No problem, and I’m also interested in your results so let me know if you have a moment.

Quick question, if you go to this code in tied_mgau_common.h in the current version of OpenEars:

#if defined(__STDC_VERSION__) && (__STDC_VERSION__ == 199901L)
#define LOGMATH_INLINE inline
#elif defined(__GNUC__)
#define LOGMATH_INLINE static inline
#elif defined(_MSC_VER)
#define LOGMATH_INLINE __inline
#else
#define LOGMATH_INLINE static
#endif

and change it to this:

//#if defined(__STDC_VERSION__) && (__STDC_VERSION__ == 199901L)
//#define LOGMATH_INLINE inline
//#elif defined(__GNUC__)
#define LOGMATH_INLINE static inline
//#elif defined(_MSC_VER)
//#define LOGMATH_INLINE __inline
//#else
//#define LOGMATH_INLINE static
//#endif

Does it then link correctly for you in the sample app? Assuming taking all precautions to avoid accidentally linking with an outdated version of the framework such as cleaning and rebuilding OpenEars.xcodeproj, cleaning and rebuilding the sample project, checking that the framework version the sample app is linking to is really the one you just compiled, and making sure that there is no old framework search path being referred to in the Framework Search Path build setting. Thanks for checking!