mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 01:06:46 +08:00
Enable AVX I422ToARGB for Windows.
BUG=393 TESTED=c:\intelsde\sde -ast -hsw -- out\release\libyuv_unittest.exe --gtest_catch_exceptions=0 --gtest_filter=*I422ToARGB_Opt R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/41789004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1261 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
9d67669697
commit
f7e5b5e361
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 1260
|
Version: 1261
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -196,11 +196,6 @@ extern "C" {
|
|||||||
#define HAS_ARGBTOYJROW_AVX2
|
#define HAS_ARGBTOYJROW_AVX2
|
||||||
#define HAS_ARGBTOYROW_AVX2
|
#define HAS_ARGBTOYROW_AVX2
|
||||||
#define HAS_COPYROW_AVX
|
#define HAS_COPYROW_AVX
|
||||||
// TODO(fbarchard): fix AVX2 versions of YUV conversion. bug=393
|
|
||||||
//#define HAS_I422TOABGRROW_AVX2
|
|
||||||
//#define HAS_I422TOARGBROW_AVX2
|
|
||||||
//#define HAS_I422TOBGRAROW_AVX2
|
|
||||||
//#define HAS_I422TORGBAROW_AVX2
|
|
||||||
#define HAS_INTERPOLATEROW_AVX2
|
#define HAS_INTERPOLATEROW_AVX2
|
||||||
#define HAS_MERGEUVROW_AVX2
|
#define HAS_MERGEUVROW_AVX2
|
||||||
#define HAS_MIRRORROW_AVX2
|
#define HAS_MIRRORROW_AVX2
|
||||||
@ -220,9 +215,14 @@ extern "C" {
|
|||||||
#define HAS_ARGBUNATTENUATEROW_AVX2
|
#define HAS_ARGBUNATTENUATEROW_AVX2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// The following are available require VS2012
|
// The following are available require VS2012. Port to GCC.
|
||||||
#if !defined(LIBYUV_DISABLE_X86) && defined(VISUALC_HAS_AVX2)
|
#if !defined(LIBYUV_DISABLE_X86) && defined(VISUALC_HAS_AVX2)
|
||||||
#define HAS_YTOARGBROW_AVX2
|
#define HAS_YTOARGBROW_AVX2
|
||||||
|
// TODO(fbarchard): fix AVX2 versions of YUV conversion. bug=393
|
||||||
|
#define HAS_I422TOABGRROW_AVX2
|
||||||
|
#define HAS_I422TOARGBROW_AVX2
|
||||||
|
#define HAS_I422TOBGRAROW_AVX2
|
||||||
|
#define HAS_I422TORGBAROW_AVX2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// The following are Yasm x86 only:
|
// The following are Yasm x86 only:
|
||||||
|
|||||||
@ -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 1260
|
#define LIBYUV_VERSION 1261
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user