ref: 3aed85f717b498276aebdb1c72c8a0faab1d7f44
parent: fc4e9058916a0c127accfb83c3d724daf27840a1
parent: f21aaa1cd433bb855a70909275224f0e86e589c6
author: sijchen <sijchen@cisco.com>
date: Tue May 5 07:44:13 EDT 2015
Merge pull request #1926 from mstorsjo/remove-unnecessary-continuation Remove unnecessary line continuation for concatenating strings
--- a/codec/encoder/core/src/encoder_ext.cpp
+++ b/codec/encoder/core/src/encoder_ext.cpp
@@ -2321,26 +2321,26 @@
void OutputCpuFeaturesLog (SLogContext* pLogCtx, uint32_t uiCpuFeatureFlags, uint32_t uiCpuCores,
int32_t iCacheLineSize) {
// welstracer output
- WelsLog (pLogCtx, WELS_LOG_INFO, "WELS CPU features/capacities (0x%x) detected: \t" \
- "HTT: %c, " \
- "MMX: %c, " \
- "MMXEX: %c, " \
- "SSE: %c, " \
- "SSE2: %c, " \
- "SSE3: %c, " \
- "SSSE3: %c, " \
- "SSE4.1: %c, " \
- "SSE4.2: %c, " \
- "AVX: %c, " \
- "FMA: %c, " \
- "X87-FPU: %c, " \
- "3DNOW: %c, " \
- "3DNOWEX: %c, " \
- "ALTIVEC: %c, " \
- "CMOV: %c, " \
- "MOVBE: %c, " \
- "AES: %c, " \
- "NUMBER OF LOGIC PROCESSORS ON CHIP: %d, " \
+ WelsLog (pLogCtx, WELS_LOG_INFO, "WELS CPU features/capacities (0x%x) detected: \t"
+ "HTT: %c, "
+ "MMX: %c, "
+ "MMXEX: %c, "
+ "SSE: %c, "
+ "SSE2: %c, "
+ "SSE3: %c, "
+ "SSSE3: %c, "
+ "SSE4.1: %c, "
+ "SSE4.2: %c, "
+ "AVX: %c, "
+ "FMA: %c, "
+ "X87-FPU: %c, "
+ "3DNOW: %c, "
+ "3DNOWEX: %c, "
+ "ALTIVEC: %c, "
+ "CMOV: %c, "
+ "MOVBE: %c, "
+ "AES: %c, "
+ "NUMBER OF LOGIC PROCESSORS ON CHIP: %d, "
"CPU CACHE LINE SIZE (BYTES): %d",
uiCpuFeatureFlags,
(uiCpuFeatureFlags & WELS_CPU_HTT) ? 'Y' : 'N',