diff --git a/README.chromium b/README.chromium index 5347576d0..0ce6766ca 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 336 +Version: 337 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 3733ef89c..b3130d0e8 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 336 +#define LIBYUV_VERSION 337 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/unit_test/scale_argb_test.cc b/unit_test/scale_argb_test.cc index 0c84db25b..39c782afe 100644 --- a/unit_test/scale_argb_test.cc +++ b/unit_test/scale_argb_test.cc @@ -19,7 +19,7 @@ namespace libyuv { static int ARGBTestFilter(int src_width, int src_height, int dst_width, int dst_height, - FilterMode f, const int benchmark_iterations_) { + FilterMode f, int benchmark_iterations_) { const int b = 128; int src_argb_plane_size = (src_width + b * 2) * (src_height + b * 2) * 4; int src_stride_argb = (b * 2 + src_width) * 4; diff --git a/unit_test/scale_test.cc b/unit_test/scale_test.cc index 6152961d1..cd8c5e64f 100644 --- a/unit_test/scale_test.cc +++ b/unit_test/scale_test.cc @@ -19,7 +19,7 @@ namespace libyuv { static int TestFilter(int src_width, int src_height, int dst_width, int dst_height, - FilterMode f, int rounding, const int benchmark_iterations_) { + FilterMode f, int rounding, int benchmark_iterations_) { const int b = 128 * rounding; int src_width_uv = (src_width + rounding) >> 1; int src_height_uv = (src_height + rounding) >> 1;