mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-12 13:19:52 +08:00
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:
parent
aa544f3205
commit
ff4a84168d
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 645
|
Version: 646
|
||||||
License: BSD
|
License: BSD
|
||||||
License File: LICENSE
|
License File: LICENSE
|
||||||
|
|
||||||
|
|||||||
@ -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 645
|
#define LIBYUV_VERSION 646
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -2514,7 +2514,7 @@ void ARGBColorMatrixRow_NEON(uint8* dst_argb, const int8* matrix_argb,
|
|||||||
"vqadd.s16 q14, q14, q6 \n" // Accumulate R
|
"vqadd.s16 q14, q14, q6 \n" // Accumulate R
|
||||||
"vqshrun.s16 d16, q12, #7 \n" // 16 bit to 8 bit B
|
"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 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.
|
"vst4.8 {d16, d18, d20, d22}, [%0]! \n" // store 8 ARGB pixels.
|
||||||
"bgt 1b \n"
|
"bgt 1b \n"
|
||||||
: "+r"(dst_argb), // %0
|
: "+r"(dst_argb), // %0
|
||||||
@ -2655,8 +2655,8 @@ void SobelXYRow_NEON(const uint8* src_sobelx, const uint8* src_sobely,
|
|||||||
"bgt 1b \n"
|
"bgt 1b \n"
|
||||||
: "+r"(src_sobelx), // %0
|
: "+r"(src_sobelx), // %0
|
||||||
"+r"(src_sobely), // %1
|
"+r"(src_sobely), // %1
|
||||||
"+r"(dst_argb), // %2
|
"+r"(dst_argb), // %2
|
||||||
"+r"(width) // %3
|
"+r"(width) // %3
|
||||||
:
|
:
|
||||||
: "cc", "memory", "q0", "q1"
|
: "cc", "memory", "q0", "q1"
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user