diff --git a/README.chromium b/README.chromium index 23f71d7e3..eb5781dae 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1228 +Version: 1229 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index e5bff361b..174c6f51f 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 1228 +#define LIBYUV_VERSION 1229 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/unit_test/color_test.cc b/unit_test/color_test.cc index 762339fe1..a5ecbc163 100644 --- a/unit_test/color_test.cc +++ b/unit_test/color_test.cc @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include // For round #include #include "libyuv/convert.h" @@ -183,7 +184,7 @@ TEST_F(libyuvTest, TestYUV) { TestYUVToRGB(240, 128, 128, r1, g1, b1, benchmark_width_, benchmark_height_); EXPECT_EQ(255, r1); - EXPECT_EQ(254, g1); + EXPECT_EQ(255, g1); EXPECT_EQ(255, b1); }