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.
Update readme and Cargo.toml for publication.
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 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
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,17 @@ | ||
# 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. | ||
|
||
There is a write-up of the translation process [here](https://wiki.alopex.li/PortingCToRust). | ||
|
||
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. | ||
|
||
Differences: | ||
Current status: about 90% translated, but there's still some panics lurking in the test cases. I need to find a nice few days and just finish it off. | ||
|
||
Differences from `minimp3`: | ||
|
||
* 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`??? |