mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-04 18:29:45 +02:00
Support using tremor instead of libvorbis for audio decoding.
Tremor is a fixed point / integer only Vorbis decoder. This should improve playback performances on embedded platforms lacking hardware floating point support.
This commit is contained in:
parent
32fe895105
commit
ac5b34927f
5 changed files with 55 additions and 9 deletions
|
@ -21,7 +21,11 @@ extern crate time;
|
|||
extern crate tiny_http;
|
||||
extern crate tempfile;
|
||||
extern crate url;
|
||||
|
||||
#[cfg(not(feature = "with-tremor"))]
|
||||
extern crate vorbis;
|
||||
#[cfg(feature = "with-tremor")]
|
||||
extern crate tremor as vorbis;
|
||||
|
||||
#[cfg(feature = "dns-sd")]
|
||||
extern crate dns_sd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue