Fix neon comment

BUG=none
TEST=none
Review URL: https://webrtc-codereview.appspot.com/1286006

git-svn-id: http://libyuv.googlecode.com/svn/trunk@646 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2013-04-05 19:13:13 +00:00
parent aa544f3205
commit ff4a84168d
3 changed files with 5 additions and 5 deletions

View File

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

View File

@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 645
#define LIBYUV_VERSION 646
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT

View File

@ -2514,7 +2514,7 @@ void ARGBColorMatrixRow_NEON(uint8* dst_argb, const int8* matrix_argb,
"vqadd.s16 q14, q14, q6 \n" // Accumulate R
"vqshrun.s16 d16, q12, #7 \n" // 16 bit to 8 bit B
"vqshrun.s16 d18, q13, #7 \n" // 16 bit to 8 bit G
"vqshrun.s16 d20, q14, #7 \n" // 16 bit to 8 bit G
"vqshrun.s16 d20, q14, #7 \n" // 16 bit to 8 bit R
"vst4.8 {d16, d18, d20, d22}, [%0]! \n" // store 8 ARGB pixels.
"bgt 1b \n"
: "+r"(dst_argb), // %0
@ -2655,8 +2655,8 @@ void SobelXYRow_NEON(const uint8* src_sobelx, const uint8* src_sobely,
"bgt 1b \n"
: "+r"(src_sobelx), // %0
"+r"(src_sobely), // %1
"+r"(dst_argb), // %2
"+r"(width) // %3
"+r"(dst_argb), // %2
"+r"(width) // %3
:
: "cc", "memory", "q0", "q1"
);