mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 17:26:49 +08:00
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
This commit is contained in:
parent
de6eca3104
commit
26d088e770
@ -1,6 +1,6 @@
|
||||
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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user