commit | b69486ea18ed1a278501911c161a5f72f1622ad3 | [log] [tgz] |
---|---|---|
author | Geoff Hill <[email protected]> | Sat Apr 06 14:25:51 2024 |
committer | Martin Storsjö <[email protected]> | Mon Apr 08 10:36:28 2024 |
tree | a30ceddae941075020100c462dcf57d73a8e6f88 | |
parent | 2d33d6bfcc2ab4031862aeb35bc0cb536019ac09 [diff] [blame] |
avcodec/ac3: Implement float_to_fixed24 for aarch64 NEON Signed-off-by: Geoff Hill <[email protected]> Signed-off-by: Martin Storsjö <[email protected]>
diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index 8397e03..730fa70 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c
@@ -389,7 +389,9 @@ c->downmix = NULL; c->downmix_fixed = NULL; -#if ARCH_ARM +#if ARCH_AARCH64 + ff_ac3dsp_init_aarch64(c); +#elif ARCH_ARM ff_ac3dsp_init_arm(c); #elif ARCH_X86 ff_ac3dsp_init_x86(c);