diff --git a/README.chromium b/README.chromium index d42db11c1..20b08d3b4 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 413 +Version: 414 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index eef9ce8ef..11891ad21 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 413 +#define LIBYUV_VERSION 414 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/cpu_id.cc b/source/cpu_id.cc index b40814332..8fc11ef48 100644 --- a/source/cpu_id.cc +++ b/source/cpu_id.cc @@ -139,7 +139,7 @@ static bool TestEnv(const char* name) { LIBYUV_API int InitCpuFlags(void) { #if !defined(__CLR_VER) && defined(CPU_X86) - int cpu_info[4]; + int cpu_info[4] = { 0, 0, 0, 0 }; __cpuid(cpu_info, 1); cpu_info_ = ((cpu_info[3] & 0x04000000) ? kCpuHasSSE2 : 0) | ((cpu_info[2] & 0x00000200) ? kCpuHasSSSE3 : 0) |