Additional scale resolutions tested

BUG=none
TEST=*Scale*
R=mikhal@webrtc.org

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

git-svn-id: http://libyuv.googlecode.com/svn/trunk@718 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2013-06-05 15:10:43 +00:00
parent eed4149e10
commit 76f86067a2
5 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 716 Version: 718
License: BSD License: BSD
License File: LICENSE License File: LICENSE

View File

@ -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 716 #define LIBYUV_VERSION 718
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT

View File

@ -274,7 +274,9 @@ TEST_FACTOR(3by8, 3 / 8)
TEST_SCALETO(640, 360) TEST_SCALETO(640, 360)
TEST_SCALETO(853, 480) TEST_SCALETO(853, 480)
TEST_SCALETO(1280, 720) TEST_SCALETO(1280, 720)
TEST_SCALETO(1280, 800)
TEST_SCALETO(1366, 768) TEST_SCALETO(1366, 768)
TEST_SCALETO(1920, 1080)
#undef TEST_SCALETO1 #undef TEST_SCALETO1
#undef TEST_SCALETO #undef TEST_SCALETO

View File

@ -218,7 +218,9 @@ TEST_FACTOR(3by8, 3 / 8)
TEST_SCALETO(640, 360) TEST_SCALETO(640, 360)
TEST_SCALETO(853, 480) TEST_SCALETO(853, 480)
TEST_SCALETO(1280, 720) TEST_SCALETO(1280, 720)
TEST_SCALETO(1280, 800)
TEST_SCALETO(1366, 768) TEST_SCALETO(1366, 768)
TEST_SCALETO(1920, 1080)
#undef TEST_SCALETO1 #undef TEST_SCALETO1
#undef TEST_SCALETO #undef TEST_SCALETO

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "./psnr.h" #include "./psnr.h" // NOLINT
#include <math.h> #include <math.h>
@ -23,7 +23,7 @@
extern "C" { extern "C" {
#endif #endif
typedef unsigned int uint32; // NOLINT typedef unsigned int uint32; // NOLINT
#ifdef _MSC_VER #ifdef _MSC_VER
typedef unsigned __int64 uint64; typedef unsigned __int64 uint64;
#else // COMPILER_MSVC #else // COMPILER_MSVC