Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ jobs:
PKG_CONFIG_ALLOW_CROSS: "1"
PKG_CONFIG_PATH: /usr/lib/mipsel-linux-gnu/pkgconfig/
CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_LINKER: mipsel-linux-gnu-gcc
# Nightly's default force-frame-pointers setting for this target gets forwarded by cc-rs
# to mipsel-linux-gnu-gcc as -mno-omit-leaf-frame-pointer, which it doesn't recognize.
RUSTFLAGS: "-C force-frame-pointers=no"
steps:
- uses: actions/checkout@v5

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **PipeWire**: Fix streams starting audio before `play()` is called.
- **PipeWire**: Fix rtkit burst limit errors from repeated real-time promotion on quantum jitter.
- **PipeWire**: Fix real-time promotion blocking the audio callback thread on Linux.
- **PipeWire**: Fix 24-bit sample format mapping.
- **PipeWire**: Nodes with an `/Internal` media class are now enumerated as devices.
- **PipeWire**: Streams for a specific device no longer auto-reroute if it disappears.
- **PipeWire**: Build on 32-bit targets without native 64-bit atomics.
Expand Down
8 changes: 4 additions & 4 deletions src/host/pipewire/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,13 @@ impl From<SampleFormat> for AudioFormat {
SampleFormat::U16 => Self::U16BE,

#[cfg(target_endian = "little")]
SampleFormat::I24 => Self::S24LE,
SampleFormat::I24 => Self::S24_32LE,
#[cfg(target_endian = "big")]
SampleFormat::I24 => Self::S24BE,
SampleFormat::I24 => Self::S24_32BE,
#[cfg(target_endian = "little")]
SampleFormat::U24 => Self::U24LE,
SampleFormat::U24 => Self::U24_32LE,
#[cfg(target_endian = "big")]
SampleFormat::U24 => Self::U24BE,
SampleFormat::U24 => Self::U24_32BE,
#[cfg(target_endian = "little")]
SampleFormat::I32 => Self::S32LE,
#[cfg(target_endian = "big")]
Expand Down
Loading