mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-07 17:26:49 +08:00
disable lint warning on movzx instructions
BUG=none TEST=lint R=johannkoenig@google.com Review URL: https://webrtc-codereview.appspot.com/2290004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@802 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
2732591d46
commit
0d19fc5ed3
@ -1,6 +1,6 @@
|
||||
Name: libyuv
|
||||
URL: http://code.google.com/p/libyuv/
|
||||
Version: 801
|
||||
Version: 802
|
||||
License: BSD
|
||||
License File: LICENSE
|
||||
|
||||
|
||||
@ -11,6 +11,6 @@
|
||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||
#define INCLUDE_LIBYUV_VERSION_H_
|
||||
|
||||
#define LIBYUV_VERSION 801
|
||||
#define LIBYUV_VERSION 802
|
||||
|
||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||
|
||||
@ -2239,9 +2239,9 @@ static const vec16 kUVBiasR = { BR, BR, BR, BR, BR, BR, BR, BR };
|
||||
|
||||
// Read 2 UV from 411, upsample to 8 UV.
|
||||
#define READYUV411 __asm { \
|
||||
__asm movzx ebx, word ptr [esi] /* U */ \
|
||||
__asm movzx ebx, word ptr [esi] /* U */ /* NOLINT */ \
|
||||
__asm movd xmm0, ebx \
|
||||
__asm movzx ebx, word ptr [esi + edi] /* V */ \
|
||||
__asm movzx ebx, word ptr [esi + edi] /* V */ /* NOLINT */ \
|
||||
__asm movd xmm1, ebx \
|
||||
__asm lea esi, [esi + 2] \
|
||||
__asm punpcklbw xmm0, xmm1 /* UV */ \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user