mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Warn about broken backends
This commit is contained in:
parent
cc60dc11dc
commit
d252eeedc5
2 changed files with 4 additions and 2 deletions
|
@ -55,6 +55,9 @@ impl<'a> Open for PortAudioSink<'a> {
|
||||||
fn open(device: Option<String>, format: AudioFormat) -> PortAudioSink<'a> {
|
fn open(device: Option<String>, format: AudioFormat) -> PortAudioSink<'a> {
|
||||||
info!("Using PortAudio sink with format: {:?}", format);
|
info!("Using PortAudio sink with format: {:?}", format);
|
||||||
|
|
||||||
|
warn!("This backend is known to panic on several platforms.");
|
||||||
|
warn!("Consider using some other backend, or better yet, contributing a fix.");
|
||||||
|
|
||||||
portaudio_rs::initialize().unwrap();
|
portaudio_rs::initialize().unwrap();
|
||||||
|
|
||||||
let device_idx = match device.as_ref().map(AsRef::as_ref) {
|
let device_idx = match device.as_ref().map(AsRef::as_ref) {
|
||||||
|
|
|
@ -54,8 +54,7 @@ macro_rules! rodio_sink {
|
||||||
AudioFormat::F32 => {
|
AudioFormat::F32 => {
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
{
|
{
|
||||||
warn!("Rodio output to Alsa is known to cause garbled sound on output formats other than 16-bit signed integer.");
|
warn!("Rodio output to Alsa is known to cause garbled sound, consider using `--backend alsa`");
|
||||||
warn!("Consider using `--backend alsa` OR `--format {:?}`", AudioFormat::S16);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
AudioFormat::S16 => {},
|
AudioFormat::S16 => {},
|
||||||
|
|
Loading…
Reference in a new issue