mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Merge remote-tracking branch 'badaix/master'
This commit is contained in:
commit
512304c6c3
4 changed files with 42 additions and 0 deletions
|
@ -31,6 +31,7 @@ script:
|
|||
- cargo build --no-default-features --features "with-syntex facebook"
|
||||
- cargo build --no-default-features --features "with-syntex portaudio-backend"
|
||||
- cargo build --no-default-features --features "with-syntex pulseaudio-backend"
|
||||
- cargo build --no-default-features --features "with-syntex stdout-backend"
|
||||
- cargo build --no-default-features --features "with-syntex alsa-backend"
|
||||
- cargo build --no-default-features --features "with-syntex" --target armv7-unknown-linux-gnueabihf
|
||||
|
||||
|
|
|
@ -71,6 +71,7 @@ nightly = ["serde_macros"]
|
|||
|
||||
with-tremor = ["tremor"]
|
||||
facebook = ["hyper/ssl", "openssl"]
|
||||
stdout-backend = []
|
||||
alsa-backend = ["alsa"]
|
||||
portaudio-backend = ["portaudio"]
|
||||
pulseaudio-backend= ["libpulse-sys"]
|
||||
|
|
|
@ -54,6 +54,11 @@ fn mk_sink<S: Sink + Open + 'static>(device: Option<&str>) -> Box<Sink> {
|
|||
Box::new(S::open(device))
|
||||
}
|
||||
|
||||
#[cfg(feature = "stdout-backend")]
|
||||
mod stdout;
|
||||
#[cfg(feature = "stdout-backend")]
|
||||
use self::stdout::StdoutSink;
|
||||
|
||||
#[cfg(feature = "alsa-backend")]
|
||||
mod alsa;
|
||||
#[cfg(feature = "alsa-backend")]
|
||||
|
@ -75,6 +80,8 @@ declare_backends! {
|
|||
(&'static str,
|
||||
&'static (Fn(Option<&str>) -> Box<Sink> + Sync + Send + 'static))
|
||||
] = &[
|
||||
#[cfg(feature = "stdout-backend")]
|
||||
("stdout", &mk_sink::<StdoutSink>),
|
||||
#[cfg(feature = "alsa-backend")]
|
||||
("alsa", &mk_sink::<AlsaSink>),
|
||||
#[cfg(feature = "portaudio-backend")]
|
||||
|
|
33
src/audio_backend/stdout.rs
Normal file
33
src/audio_backend/stdout.rs
Normal file
|
@ -0,0 +1,33 @@
|
|||
use super::{Open, Sink};
|
||||
use std::io::{self, Write};
|
||||
use std::slice;
|
||||
use std::mem;
|
||||
|
||||
|
||||
pub struct StdoutSink;//Option<PCM>, String);
|
||||
|
||||
impl Open for StdoutSink {
|
||||
fn open(_: Option<&str>) -> StdoutSink {
|
||||
StdoutSink
|
||||
}
|
||||
}
|
||||
|
||||
impl Sink for StdoutSink {
|
||||
fn start(&mut self) -> io::Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn stop(&mut self) -> io::Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn write(&mut self, data: &[i16]) -> io::Result<()> {
|
||||
// http://stackoverflow.com/questions/30838358/writing-vecu16-to-a-file
|
||||
let slice_u8: &[u8] = unsafe { slice::from_raw_parts(data.as_ptr() as *const u8, data.len() * mem::size_of::<i16>()) };
|
||||
try!(io::stdout().write_all(slice_u8));
|
||||
try!(io::stdout().flush());
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue