From edc6aa8fa2bc16aa36419e39a9c697a75ff9665b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Thu, 23 Jan 2014 14:47:37 +0200 Subject: [PATCH] Only print detected cpu info when in debug mode The ifdef guards from this block were (accidentally?) commented out in ec84f4bc. --- codec/encoder/core/src/encoder_ext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codec/encoder/core/src/encoder_ext.cpp b/codec/encoder/core/src/encoder_ext.cpp index b41a584d..47cba1c0 100644 --- a/codec/encoder/core/src/encoder_ext.cpp +++ b/codec/encoder/core/src/encoder_ext.cpp @@ -1966,7 +1966,7 @@ void OutputCpuFeaturesLog (uint32_t uiCpuFeatureFlags, uint32_t uiCpuCores, int3 uiCpuCores, iCacheLineSize); -//#ifdef _DEBUG // output at console & _debug +#ifdef _DEBUG // output at console & _debug fprintf (stderr, "WELS CPU features/capacities (0x%x) detected: \n" \ "HTT: %c, " \ "MMX: %c, " \ @@ -2009,7 +2009,7 @@ void OutputCpuFeaturesLog (uint32_t uiCpuFeatureFlags, uint32_t uiCpuCores, int3 (uiCpuFeatureFlags & WELS_CPU_AES) ? 'Y' : 'N', uiCpuCores, iCacheLineSize); -//#endif//_DEBUG +#endif//_DEBUG } /*!