[FFmpeg-cvslog] ARM: fix av_clipl_int32_arm()
Mans Rullgard
git at videolan.org
Fri May 27 02:53:57 CEST 2011
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Wed May 25 18:43:28 2011 +0100| [74cc8c52ed42e269715e128d5aa0708b9f7ec463] | committer: Mans Rullgard
ARM: fix av_clipl_int32_arm()
Signed-off-by: Mans Rullgard <mans at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=74cc8c52ed42e269715e128d5aa0708b9f7ec463
---
libavutil/arm/intmath.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/libavutil/arm/intmath.h b/libavutil/arm/intmath.h
index 2f651d1..155d1a8 100644
--- a/libavutil/arm/intmath.h
+++ b/libavutil/arm/intmath.h
@@ -93,6 +93,7 @@ static av_always_inline av_const int32_t av_clipl_int32_arm(int64_t a)
int x, y;
__asm__ volatile ("adds %1, %R2, %Q2, lsr #31 \n\t"
"mvnne %1, #1<<31 \n\t"
+ "moveq %0, %Q2 \n\t"
"eorne %0, %1, %R2, asr #31 \n\t"
: "=r"(x), "=&r"(y) : "r"(a));
return x;
More information about the ffmpeg-cvslog
mailing list