Commit ff0db0ea authored by fbarchard@google.com's avatar fbarchard@google.com

change tile size for convert util and unittest to 32x32 which would lend itself to AVX2 or VP9

BUG=none
TEST=none
R=dingkai@google.com

Review URL: https://webrtc-codereview.appspot.com/1667004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@726 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent 47c4989b
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 725 Version: 726
License: BSD License: BSD
License File: LICENSE License File: LICENSE
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 725 #define LIBYUV_VERSION 726
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -99,8 +99,8 @@ static int ARGBTestFilter(int src_width, int src_height, ...@@ -99,8 +99,8 @@ static int ARGBTestFilter(int src_width, int src_height,
return max_diff; return max_diff;
} }
static const int kTileX = 16; static const int kTileX = 32;
static const int kTileY = 16; static const int kTileY = 32;
static int TileARGBScale(const uint8* src_argb, int src_stride_argb, static int TileARGBScale(const uint8* src_argb, int src_stride_argb,
int src_width, int src_height, int src_width, int src_height,
......
...@@ -155,8 +155,8 @@ void ParseOptions(int argc, const char* argv[]) { ...@@ -155,8 +155,8 @@ void ParseOptions(int argc, const char* argv[]) {
} }
} }
static const int kTileX = 12; static const int kTileX = 32;
static const int kTileY = 8; static const int kTileY = 32;
static int TileARGBScale(const uint8* src_argb, int src_stride_argb, static int TileARGBScale(const uint8* src_argb, int src_stride_argb,
int src_width, int src_height, int src_width, int src_height,
......
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