projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
240c5d6
)
ARM: allow unaligned buffer in fixed-point NEON FFT4
author
Mans Rullgard
<mans@mansr.com>
Mon, 4 Jul 2011 19:36:35 +0000
(20:36 +0100)
committer
Mans Rullgard
<mans@mansr.com>
Mon, 4 Jul 2011 19:36:35 +0000
(20:36 +0100)
This function is called with only 8-byte alignment from
imdct for size 16. The fft4 function is not called for
the larger FFT or MDCT sizes, so this has no impact on
typical uses.
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/arm/fft_fixed_neon.S
patch
|
blob
|
history
diff --git
a/libavcodec/arm/fft_fixed_neon.S
b/libavcodec/arm/fft_fixed_neon.S
index 14884d3736755a7c15cab5c5af4ad30926111b7e..2cfd817fc9494c4b3b88f13e891f63e8daa37658 100644
(file)
--- a/
libavcodec/arm/fft_fixed_neon.S
+++ b/
libavcodec/arm/fft_fixed_neon.S
@@
-75,9
+75,9
@@
.endm
function fft4_neon
- vld1.16 {d0-d1}, [r0
,:128
]
+ vld1.16 {d0-d1}, [r0]
fft4 d0, d1, d2, d3
- vst1.16 {d0-d1}, [r0
,:128
]
+ vst1.16 {d0-d1}, [r0]
bx lr
endfunc