1 | // Copyright (c) 2019, The rav1e contributors. All rights reserved |
2 | // |
3 | // This source code is subject to the terms of the BSD 2 Clause License and |
4 | // the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
5 | // was not distributed with this source code in the LICENSE file, you can |
6 | // obtain it at www.aomedia.org/license/software. If the Alliance for Open |
7 | // Media Patent License 1.0 was not distributed with this source code in the |
8 | // PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
9 | |
10 | #[cfg (nasm_x86_64)] |
11 | pub mod x86; |
12 | |
13 | #[cfg (asm_neon)] |
14 | pub mod aarch64; |
15 | |
16 | #[cfg (any(nasm_x86_64, asm_neon))] |
17 | pub mod shared; |
18 | |