Revert "Merge pull request #548 from Lcchy/rodiojack-backend"

This reverts commit f483075b2c, reversing
changes made to ea8ece36d9.
This commit is contained in:
johannesd3 2021-02-23 14:24:03 +01:00 committed by Johannesd3
parent e8204c970e
commit 1fc5267a71
7 changed files with 360 additions and 609 deletions

View file

@ -46,7 +46,6 @@ Depending on the chosen backend, specific development libraries are required.
|PortAudio | `portaudio19-dev` | `portaudio-devel` | `portaudio` | |PortAudio | `portaudio19-dev` | `portaudio-devel` | `portaudio` |
|PulseAudio | `libpulse-dev` | `pulseaudio-libs-devel` | | |PulseAudio | `libpulse-dev` | `pulseaudio-libs-devel` | |
|JACK | `libjack-dev` | `jack-audio-connection-kit-devel` | | |JACK | `libjack-dev` | `jack-audio-connection-kit-devel` | |
|JACK over Rodio | `libjack-dev` | `jack-audio-connection-kit-devel` | - |
|SDL | `libsdl2-dev` | `SDL2-devel` | | |SDL | `libsdl2-dev` | `SDL2-devel` | |
|Pipe | - | - | - | |Pipe | - | - | - |

828
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -63,7 +63,6 @@ alsa-backend = ["librespot-playback/alsa-backend"]
portaudio-backend = ["librespot-playback/portaudio-backend"] portaudio-backend = ["librespot-playback/portaudio-backend"]
pulseaudio-backend = ["librespot-playback/pulseaudio-backend"] pulseaudio-backend = ["librespot-playback/pulseaudio-backend"]
jackaudio-backend = ["librespot-playback/jackaudio-backend"] jackaudio-backend = ["librespot-playback/jackaudio-backend"]
rodiojack-backend = ["librespot-playback/rodiojack-backend"]
rodio-backend = ["librespot-playback/rodio-backend"] rodio-backend = ["librespot-playback/rodio-backend"]
sdl-backend = ["librespot-playback/sdl-backend"] sdl-backend = ["librespot-playback/sdl-backend"]
gstreamer-backend = ["librespot-playback/gstreamer-backend"] gstreamer-backend = ["librespot-playback/gstreamer-backend"]

View file

@ -56,7 +56,6 @@ ALSA
PortAudio PortAudio
PulseAudio PulseAudio
JACK JACK
JACK over Rodio
SDL SDL
Pipe Pipe
``` ```

View file

@ -42,7 +42,6 @@ alsa-backend = ["alsa"]
portaudio-backend = ["portaudio-rs"] portaudio-backend = ["portaudio-rs"]
pulseaudio-backend = ["libpulse-binding", "libpulse-simple-binding"] pulseaudio-backend = ["libpulse-binding", "libpulse-simple-binding"]
jackaudio-backend = ["jack"] jackaudio-backend = ["jack"]
rodiojack-backend = ["rodio", "cpal/jack"]
rodio-backend = ["rodio", "cpal"] rodio-backend = ["rodio", "cpal"]
sdl-backend = ["sdl2"] sdl-backend = ["sdl2"]
gstreamer-backend = ["gstreamer", "gstreamer-app", "glib", "zerocopy"] gstreamer-backend = ["gstreamer", "gstreamer-app", "glib", "zerocopy"]

View file

@ -35,28 +35,15 @@ mod jackaudio;
#[cfg(feature = "jackaudio-backend")] #[cfg(feature = "jackaudio-backend")]
use self::jackaudio::JackSink; use self::jackaudio::JackSink;
#[cfg(all(
feature = "rodiojack-backend",
not(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))
))]
compile_error!("Rodio JACK backend is currently only supported on linux.");
#[cfg(all(
feature = "rodiojack-backend",
any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd")
))]
use self::rodio::JackRodioSink;
#[cfg(feature = "gstreamer-backend")] #[cfg(feature = "gstreamer-backend")]
mod gstreamer; mod gstreamer;
#[cfg(feature = "gstreamer-backend")] #[cfg(feature = "gstreamer-backend")]
use self::gstreamer::GstreamerSink; use self::gstreamer::GstreamerSink;
#[cfg(any(feature = "rodio-backend", feature = "rodiojack-backend"))] #[cfg(feature = "rodio-backend")]
mod rodio; mod rodio;
#[cfg(feature = "rodio-backend")] #[cfg(feature = "rodio-backend")]
use self::rodio::RodioSink; use self::rodio::RodioSink;
#[cfg(feature = "sdl-backend")] #[cfg(feature = "sdl-backend")]
mod sdl; mod sdl;
#[cfg(feature = "sdl-backend")] #[cfg(feature = "sdl-backend")]
@ -77,11 +64,6 @@ pub const BACKENDS: &'static [(&'static str, fn(Option<String>) -> Box<dyn Sink>
("pulseaudio", mk_sink::<PulseAudioSink>), ("pulseaudio", mk_sink::<PulseAudioSink>),
#[cfg(feature = "jackaudio-backend")] #[cfg(feature = "jackaudio-backend")]
("jackaudio", mk_sink::<JackSink>), ("jackaudio", mk_sink::<JackSink>),
#[cfg(all(
feature = "rodiojack-backend",
any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd")
))]
("rodiojack", mk_sink::<JackRodioSink>),
#[cfg(feature = "gstreamer-backend")] #[cfg(feature = "gstreamer-backend")]
("gstreamer", mk_sink::<GstreamerSink>), ("gstreamer", mk_sink::<GstreamerSink>),
#[cfg(feature = "rodio-backend")] #[cfg(feature = "rodio-backend")]

View file

@ -13,17 +13,6 @@ pub struct RodioSink {
stream: rodio::OutputStream, stream: rodio::OutputStream,
} }
#[cfg(all(
feature = "rodiojack-backend",
any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd")
))]
pub struct JackRodioSink {
jackrodio_sink: rodio::Sink,
// We have to keep hold of this object, or the Sink can't play...
#[allow(dead_code)]
stream: rodio::OutputStream,
}
fn list_formats(ref device: &rodio::Device) { fn list_formats(ref device: &rodio::Device) {
let default_fmt = match device.default_output_config() { let default_fmt = match device.default_output_config() {
Ok(fmt) => cpal::SupportedStreamConfig::from(fmt), Ok(fmt) => cpal::SupportedStreamConfig::from(fmt),
@ -51,19 +40,17 @@ fn list_formats(ref device: &rodio::Device) {
} }
} }
fn list_outputs(ref host: &cpal::Host) { fn list_outputs() {
let default_device = get_default_device(host); let default_device = get_default_device();
let default_device_name = default_device.name().expect("cannot get output name"); let default_device_name = default_device.name().expect("cannot get output name");
println!("Default Audio Device:\n {}", default_device_name); println!("Default Audio Device:\n {}", default_device_name);
list_formats(&default_device); list_formats(&default_device);
println!("Other Available Audio Devices:"); println!("Other Available Audio Devices:");
for device in cpal::default_host()
let found_devices = host.output_devices().expect(&format!( .output_devices()
"Cannot get list of output devices of Host: {:?}", .expect("cannot get list of output devices")
host.id() {
));
for device in found_devices {
let device_name = device.name().expect("cannot get output name"); let device_name = device.name().expect("cannot get output name");
if device_name != default_device_name { if device_name != default_device_name {
println!(" {}", device_name); println!(" {}", device_name);
@ -72,24 +59,23 @@ fn list_outputs(ref host: &cpal::Host) {
} }
} }
fn get_default_device(ref host: &cpal::Host) -> rodio::Device { fn get_default_device() -> rodio::Device {
host.default_output_device() cpal::default_host()
.default_output_device()
.expect("no default output device available") .expect("no default output device available")
} }
fn match_device(ref host: &cpal::Host, device: Option<String>) -> rodio::Device { fn match_device(device: Option<String>) -> rodio::Device {
match device { match device {
Some(device_name) => { Some(device_name) => {
if device_name == "?".to_string() { if device_name == "?".to_string() {
list_outputs(host); list_outputs();
exit(0) exit(0)
} }
for d in cpal::default_host()
let found_devices = host.output_devices().expect(&format!( .output_devices()
"Cannot get list of output devices of Host: {:?}", .expect("cannot get list of output devices")
host.id() {
));
for d in found_devices {
if d.name().expect("cannot get output name") == device_name { if d.name().expect("cannot get output name") == device_name {
return d; return d;
} }
@ -97,16 +83,18 @@ fn match_device(ref host: &cpal::Host, device: Option<String>) -> rodio::Device
println!("No output sink matching '{}' found.", device_name); println!("No output sink matching '{}' found.", device_name);
exit(0) exit(0)
} }
None => return get_default_device(host), None => return get_default_device(),
} }
} }
impl Open for RodioSink { impl Open for RodioSink {
fn open(device: Option<String>) -> RodioSink { fn open(device: Option<String>) -> RodioSink {
let host = cpal::default_host(); debug!(
debug!("Using rodio sink with cpal host: {:?}", host.id()); "Using rodio sink with cpal host: {:?}",
cpal::default_host().id()
);
let rodio_device = match_device(&host, device); let rodio_device = match_device(device);
debug!("Using cpal device"); debug!("Using cpal device");
let stream = rodio::OutputStream::try_from_device(&rodio_device) let stream = rodio::OutputStream::try_from_device(&rodio_device)
.expect("Couldn't open output stream."); .expect("Couldn't open output stream.");
@ -121,36 +109,6 @@ impl Open for RodioSink {
} }
} }
#[cfg(all(
feature = "rodiojack-backend",
any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd")
))]
impl Open for JackRodioSink {
fn open(device: Option<String>) -> JackRodioSink {
let host = cpal::host_from_id(
cpal::available_hosts()
.into_iter()
.find(|id| *id == cpal::HostId::Jack)
.expect("Jack Host not found"),
)
.expect("Jack Host not found");
debug!("Using jack rodio sink with cpal Jack host");
let rodio_device = match_device(&host, device);
debug!("Using cpal device");
let stream = rodio::OutputStream::try_from_device(&rodio_device)
.expect("Couldn't open output stream.");
debug!("Using jack rodio stream");
let sink = rodio::Sink::try_new(&stream.1).expect("Couldn't create output sink.");
debug!("Using jack rodio sink");
JackRodioSink {
jackrodio_sink: sink,
stream: stream.0,
}
}
}
impl Sink for RodioSink { impl Sink for RodioSink {
fn start(&mut self) -> io::Result<()> { fn start(&mut self) -> io::Result<()> {
// More similar to an "unpause" than "play". Doesn't undo "stop". // More similar to an "unpause" than "play". Doesn't undo "stop".
@ -179,36 +137,3 @@ impl Sink for RodioSink {
Ok(()) Ok(())
} }
} }
#[cfg(all(
feature = "rodiojack-backend",
any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd")
))]
impl Sink for JackRodioSink {
fn start(&mut self) -> io::Result<()> {
// More similar to an "unpause" than "play". Doesn't undo "stop".
// self.rodio_sink.play();
Ok(())
}
fn stop(&mut self) -> io::Result<()> {
// This will immediately stop playback, but the sink is then unusable.
// We just have to let the current buffer play till the end.
// self.rodio_sink.stop();
Ok(())
}
fn write(&mut self, data: &[i16]) -> io::Result<()> {
let source = rodio::buffer::SamplesBuffer::new(2, 44100, data);
self.jackrodio_sink.append(source);
// Chunk sizes seem to be about 256 to 3000 ish items long.
// Assuming they're on average 1628 then a half second buffer is:
// 44100 elements --> about 27 chunks
while self.jackrodio_sink.len() > 26 {
// sleep and wait for rodio to drain a bit
thread::sleep(time::Duration::from_millis(10));
}
Ok(())
}
}