summaryrefslogtreecommitdiff
path: root/libavcodec/synth_filter.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-01-02 11:14:28 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2016-01-02 11:14:28 +0100
commit10e075c138467b1fbe63cd9eec0dfd2c18cf903a (patch)
tree5eb36d69caf24a12e4e7b9018b50d5b7731e4a66 /libavcodec/synth_filter.c
parentde3a33784cb79c35fadb6fc22a0b406450bdef7c (diff)
parent705f5e5e155f6f280a360af220fc5b30cfcee702 (diff)
Merge commit '705f5e5e155f6f280a360af220fc5b30cfcee702'
* commit '705f5e5e155f6f280a360af220fc5b30cfcee702': arm64: port synth_filter_float_neon from arm Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec/synth_filter.c')
-rw-r--r--libavcodec/synth_filter.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavcodec/synth_filter.c b/libavcodec/synth_filter.c
index d49ffe642d..8dfca00ed9 100644
--- a/libavcodec/synth_filter.c
+++ b/libavcodec/synth_filter.c
@@ -60,6 +60,10 @@ av_cold void ff_synth_filter_init(SynthFilterContext *c)
{
c->synth_filter_float = synth_filter_float;
- if (ARCH_ARM) ff_synth_filter_init_arm(c);
- if (ARCH_X86) ff_synth_filter_init_x86(c);
+ if (ARCH_AARCH64)
+ ff_synth_filter_init_aarch64(c);
+ if (ARCH_ARM)
+ ff_synth_filter_init_arm(c);
+ if (ARCH_X86)
+ ff_synth_filter_init_x86(c);
}