diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-16 08:39:13 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-16 08:39:13 +0000 |
commit | d8f3f340ad2308033577142e8f67070dea312979 (patch) | |
tree | ceae42f4afae29a2654f7e46cebc41d3d7060579 /libavcodec/arm/dsputil_neon_s.S | |
parent | 2d08f9ea54a347eb0282c227bae359d1a9c3d4bb (diff) | |
download | ffmpeg-d8f3f340ad2308033577142e8f67070dea312979.tar.gz |
Add guaranteed alignment for loading dest pixels in avg_pixels16_neon
Originally committed as revision 18535 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/dsputil_neon_s.S')
-rw-r--r-- | libavcodec/arm/dsputil_neon_s.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/arm/dsputil_neon_s.S b/libavcodec/arm/dsputil_neon_s.S index 5b95717427..f16293db03 100644 --- a/libavcodec/arm/dsputil_neon_s.S +++ b/libavcodec/arm/dsputil_neon_s.S @@ -38,13 +38,13 @@ pld [r1, r2] pld [r1, r2, lsl #1] .if \avg - vld1.64 {d16,d17}, [ip], r2 + vld1.64 {d16,d17}, [ip,:128], r2 vrhadd.u8 q0, q0, q8 - vld1.64 {d18,d19}, [ip], r2 + vld1.64 {d18,d19}, [ip,:128], r2 vrhadd.u8 q1, q1, q9 - vld1.64 {d20,d21}, [ip], r2 + vld1.64 {d20,d21}, [ip,:128], r2 vrhadd.u8 q2, q2, q10 - vld1.64 {d22,d23}, [ip], r2 + vld1.64 {d22,d23}, [ip,:128], r2 vrhadd.u8 q3, q3, q11 .endif subs r3, r3, #4 |