Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-04-26 17:28:57 +0300
committerClément Bœsch <u@pkh.me>2017-04-26 17:28:57 +0300
commit0f00eb0e4ec173d290faa5985ac3fc4e903bb125 (patch)
tree9e83af2e71e0dcb16bce54ca9fc9b95d5cc412e6 /libavcodec/aarch64
parent06aafda03f1c097c9ff0c669eb456e86043451e2 (diff)
parent2425d7329fdccfa9954faba748f3865151354f0c (diff)
Merge commit '2425d7329fdccfa9954faba748f3865151354f0c'
* commit '2425d7329fdccfa9954faba748f3865151354f0c': arm64: replace 'bic' with immediate with 'and' with inverted immediate Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r--libavcodec/aarch64/synth_filter_neon.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aarch64/synth_filter_neon.S b/libavcodec/aarch64/synth_filter_neon.S
index 65551cbff7..8fcd71f252 100644
--- a/libavcodec/aarch64/synth_filter_neon.S
+++ b/libavcodec/aarch64/synth_filter_neon.S
@@ -50,7 +50,7 @@ function ff_synth_filter_float_neon, export=1
add x1, x1, x7, lsl #2 // synth_buf
sub w8, w7, #32
stp x5, x1, [sp, #16]
- bic x7, x7, #63
+ and x7, x7, #~63
and w8, w8, #511
stp x7, x30, [sp, #32]
str w8, [x2]