forked from icefoxen/rinimp3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request icefoxen#5 from skierpage/patch-1
link to excellent blog post in README
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
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,12 +1,12 @@ | ||
# rinimp3 | ||
An attempt to make a port of [lieff's minimp3](https://github.com/lieff/minimp3) to Rust. The goal is basically to make the minimp3-rs crate, bindings to the C library, unnecessary. | ||
|
||
First step is to just duplicate it as closely as possible, including passing its tests and fuzzing. Next step would be to smooth its API out and make it more Rusty; https://github.com/germangb/minimp3-rs might be useful for inspiration. | ||
First step is to just duplicate it as closely as possible, including passing its tests and fuzzing. https://wiki.alopex.li/PortingCToRust comments on the conversion. Next step would be to smooth its API out and make it more Rusty; https://github.com/germangb/minimp3-rs might be useful for inspiration. | ||
|
||
Differences: | ||
|
||
* i16 output only | ||
* No SIMD | ||
* No conditional compilation -- basically should operate as if the following flags are defined: | ||
* `#define MINIMP3_NO_SIMD` | ||
* `#define MINIMP3_NONSTANDARD_BUT_LOGICAL`??? | ||
* `#define MINIMP3_NONSTANDARD_BUT_LOGICAL`??? |