-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove aligned block format and do all calculations in the standard r…
…aster coefficient format (#59) * not working yet * make sure we encode coefficients in the right order * revert model changes * changes * fix idct * optimize idct now that we dont have the weird aligned order * update versions and build avx and non-avx2 versions * always trigger on pull request * add all build types * add toolchains * add all build types * make compile under linux and wasm * fix build * fix rust build * fix rust build
- Loading branch information
Showing
17 changed files
with
162 additions
and
160 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lepton_jpeg" | ||
version = "0.3.4" | ||
version = "0.3.5" | ||
edition = "2021" | ||
authors = ["Kristof Roomp <[email protected]>"] | ||
|
||
|
@@ -34,9 +34,11 @@ anyhow = { version="1.0", features = ["backtrace"]} | |
wide = "0.7" | ||
log = "0.4" | ||
simple_logger ="4.0" | ||
cpu-time = "1.0" | ||
rayon = "1.10" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
cpu-time = "1.0" | ||
|
||
[dev-dependencies] | ||
rstest = "0.18" | ||
rand = "0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.