diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-12 07:55:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-12 07:55:25 +0100 |
commit | ba4c808721592a8558686b518d12f36e0fe60957 (patch) | |
tree | 90bfefa3d3b0d524c562b6280776807595a10400 /thirdparty/opus/silk/debug.h | |
parent | 067c259ef139a1d60b64386ff596dfea690aa06d (diff) | |
parent | e00426c512a7905f5f925d382c443bab7a0ca693 (diff) |
Merge pull request #33311 from SneakyFish5/update-opus
Update opus to 1.3.1 and opusfile to 0.11
Diffstat (limited to 'thirdparty/opus/silk/debug.h')
-rw-r--r-- | thirdparty/opus/silk/debug.h | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/thirdparty/opus/silk/debug.h b/thirdparty/opus/silk/debug.h index efb6d3e99e..6f68c1ca0f 100644 --- a/thirdparty/opus/silk/debug.h +++ b/thirdparty/opus/silk/debug.h @@ -39,23 +39,10 @@ extern "C" unsigned long GetHighResolutionTime(void); /* O time in usec*/ -/* make SILK_DEBUG dependent on compiler's _DEBUG */ -#if defined _WIN32 - #ifdef _DEBUG - #define SILK_DEBUG 1 - #else - #define SILK_DEBUG 0 - #endif - - /* overrule the above */ - #if 0 - /* #define NO_ASSERTS*/ - #undef SILK_DEBUG - #define SILK_DEBUG 1 - #endif -#else - #define SILK_DEBUG 0 -#endif +/* Set to 1 to enable DEBUG_STORE_DATA() macros for dumping + * intermediate signals from the codec. + */ +#define SILK_DEBUG 0 /* Flag for using timers */ #define SILK_TIC_TOC 0 |