# HG changeset patch
# User Steve Borho <[email protected]>
# Date 1380665911 18000
# Tue Oct 01 17:18:31 2013 -0500
# Node ID 73f1415009ea83511469f34a9ddbf999e1c64757
# Parent c5dc3e37d76772b5e26c6996ab0df5ce325f54a7
primitives: shorten log message to prevent 80char terminal wrap
diff -r c5dc3e37d767 -r 73f1415009ea source/common/primitives.cpp
--- a/source/common/primitives.cpp Tue Oct 01 17:28:19 2013 +0530
+++ b/source/common/primitives.cpp Tue Oct 01 17:18:31 2013 -0500
@@ -108,8 +108,8 @@
cpuid = instrset_detect(); // Detect supported instruction set
if (param->logLevel >= X265_LOG_INFO)
{
- x265_log(param, X265_LOG_INFO, "detected SIMD architectures");
- for (int i = 1; i <= cpuid; i++)
+ x265_log(param, X265_LOG_INFO, "detected SIMD: ");
+ for (int i = 2; i <= cpuid; i++)
{
fprintf(stderr, "%s ", CpuType[i]);
}
# HG changeset patch
# User Steve Borho <[email protected]>
# Date 1380665911 18000
# Tue Oct 01 17:18:31 2013 -0500
# Node ID 73f1415009ea83511469f34a9ddbf999e1c64757
# Parent c5dc3e37d76772b5e26c6996ab0df5ce325f54a7
primitives: shorten log message to prevent 80char terminal wrap
diff -r c5dc3e37d767 -r 73f1415009ea source/common/primitives.cpp
--- a/source/common/primitives.cpp Tue Oct 01 17:28:19 2013 +0530
+++ b/source/common/primitives.cpp Tue Oct 01 17:18:31 2013 -0500
@@ -108,8 +108,8 @@
cpuid = instrset_detect(); // Detect supported instruction set
if (param->logLevel >= X265_LOG_INFO)
{
- x265_log(param, X265_LOG_INFO, "detected SIMD architectures");
- for (int i = 1; i <= cpuid; i++)
+ x265_log(param, X265_LOG_INFO, "detected SIMD: ");
+ for (int i = 2; i <= cpuid; i++)
{
fprintf(stderr, "%s ", CpuType[i]);
}
_______________________________________________
x265-devel mailing list
[email protected]
https://mailman.videolan.org/listinfo/x265-devel