From 131aef142a1f5daf190ec83a8c67dcd5e8bc4dca Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 15 Jan 2015 21:53:52 +0000 Subject: [PATCH] math header needed on osx version. BUG=391 TESTED=try bots R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/39529004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1230 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- unit_test/color_test.cc | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) 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); }