Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CPAL to version 0.10.0. #298

Merged
merged 4 commits into from
Jul 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Unreleased

# Version 0.10.0 (2019-07-05)

- core-foundation-sys and coreaudio-rs version bumps.
- Add an ASIO host, available under Windows.
- Introduce a new Host API, adding support for alternative audio APIs.
- Remove sleep loop on macOS in favour of using a `Condvar`.
- Allow users to handle stream callback errors with a new `StreamEvent` type.
- Overhaul error handling throughout the crate.
- Remove unnecessary Mutex from ALSA and WASAPI backends in favour of channels.
- Remove `panic!` from OutputBuffer Deref impl as it is no longer necessary.

# Version 0.9.0 (2019-06-06)

- Better buffer handling
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "cpal"
version = "0.9.0"
version = "0.10.0"
authors = ["The CPAL contributors", "Pierre Krieger <[email protected]>"]
description = "Low-level cross-platform audio playing library in pure Rust."
description = "Low-level cross-platform audio I/O library in pure Rust."
repository = "https://github.com/tomaka/cpal"
documentation = "https://docs.rs/cpal"
license = "Apache-2.0"
5 changes: 5 additions & 0 deletions asio-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -2,6 +2,11 @@
name = "asio-sys"
version = "0.1.0"
authors = ["Tom Gowan <[email protected]>"]
description = "Low-level interface and binding generation for the steinberg ASIO SDK."
repository = "https://github.com/tomaka/cpal"
documentation = "https://docs.rs/asio-sys"
license = "Apache-2.0"
keywords = ["audio", "sound", "asio", "steinberg"]
build = "build.rs"

[target.'cfg(any(target_os = "windows"))'.build-dependencies]
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -150,8 +150,8 @@ extern crate lazy_static;
extern crate stdweb;

pub use platform::{
ALL_HOSTS, Device, EventLoop, Host, HostId, StreamId, available_hosts,
default_host, host_from_id,
ALL_HOSTS, Device, Devices, EventLoop, Host, HostId, SupportedInputFormats,
SupportedOutputFormats, StreamId, available_hosts, default_host, host_from_id,
};
pub use samples_formats::{Sample, SampleFormat};

4 changes: 2 additions & 2 deletions src/platform/mod.rs
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ macro_rules! impl_platform_host {

/// The **StreamId** implementation associated with the platform's dynamically dispatched
/// **Host** type.
#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct StreamId(StreamIdInner);

/// The **SupportedInputFormats** iterator associated with the platform's dynamically
@@ -107,7 +107,7 @@ macro_rules! impl_platform_host {
)*
}

#[derive(Clone, Debug, Eq, PartialEq)]
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
enum StreamIdInner {
$(
$HostVariant(crate::host::$host_mod::StreamId),
2 changes: 1 addition & 1 deletion src/traits.rs
Original file line number Diff line number Diff line change
@@ -195,4 +195,4 @@ pub trait EventLoopTrait {
}

/// The set of required bounds for host `StreamId` types.
pub trait StreamIdTrait: Clone + std::fmt::Debug + PartialEq + Eq {}
pub trait StreamIdTrait: Clone + std::fmt::Debug + std::hash::Hash + PartialEq + Eq {}