Skip to content

Commit

Permalink
Conform all ASM functions to a module structure (xiph#1717)
Browse files Browse the repository at this point in the history
This includes finding any ASM functions that are
scattered throughout the codebase and moving them
into the asm module, but also reorganizes
the asm module so that x86 is a module
containing submodules for each native module.
This reduces the number of cfg statements needed,
and will also make it cleaner to implement assembly
for other architectures moving forward.

Partially addresses xiph#1714
  • Loading branch information
shssoichiro authored Oct 7, 2019
1 parent ea640ce commit 9a0479b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ mod deblock;
mod encoder;
mod entropymode;
mod lrf;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod lrf_simd;
mod mc;
mod me;
mod metrics;
Expand Down

0 comments on commit 9a0479b

Please sign in to comment.