mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2026-02-13 13:49:53 +08:00
clobber list fix for arm
BUG=196 TEST=none Review URL: https://webrtc-codereview.appspot.com/1172004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@597 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
1096543eaa
commit
4f4c8b544c
@ -1,6 +1,6 @@
|
|||||||
Name: libyuv
|
Name: libyuv
|
||||||
URL: http://code.google.com/p/libyuv/
|
URL: http://code.google.com/p/libyuv/
|
||||||
Version: 596
|
Version: 597
|
||||||
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 596
|
#define LIBYUV_VERSION 597
|
||||||
|
|
||||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||||
|
|||||||
@ -1183,11 +1183,11 @@ void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer,
|
|||||||
"vtbl.8 d3, {d0, d1}, d2 \n" // look up 4 pixels
|
"vtbl.8 d3, {d0, d1}, d2 \n" // look up 4 pixels
|
||||||
"vst1.u32 {d3[0]}, [%1]! \n" // store 4.
|
"vst1.u32 {d3[0]}, [%1]! \n" // store 4.
|
||||||
"bgt 1b \n"
|
"bgt 1b \n"
|
||||||
: "+r"(src_argb), // %0
|
: "+r"(src_argb), // %0
|
||||||
"+r"(dst_bayer), // %1
|
"+r"(dst_bayer), // %1
|
||||||
"+r"(pix) // %2
|
"+r"(pix) // %2
|
||||||
: "r"(selector), // %3
|
: "r"(selector) // %3
|
||||||
: "cc", "memory", "q0", "d2" // Clobber List
|
: "cc", "memory", "q0", "q1" // Clobber List
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user