Commit 26d088e7 authored by fbarchard@google.com's avatar fbarchard@google.com

Unittest fix 80 column limit

BUG=none
TEST=none
Review URL: https://webrtc-codereview.appspot.com/762007

git-svn-id: http://libyuv.googlecode.com/svn/trunk@337 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent de6eca31
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 336
Version: 337
License: BSD
License File: LICENSE
......
......@@ -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
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment