1
0
Fork 0
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:
Paul Lietar 2016-03-13 15:15:15 +00:00
parent 32fe895105
commit ac5b34927f
5 changed files with 55 additions and 9 deletions

View file

@ -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;