crosvm/audio_util/Cargo.toml
Norman Bintang 54f2727231 audio_util: Implement FileStream for AudioStream
FileStream can be used to output audio playback buffer to a file. It
receives a memory mapped file and makes it act as an audio buffer.

BUG=b:233542268
TEST=emerge crosvm

Change-Id: I2b013fe0422db8475145537adf9c36492f52ae26
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4306259
Reviewed-by: Chih-Yang Hsia <paulhsia@chromium.org>
Reviewed-by: Dennis Kempin <denniskempin@google.com>
2023-03-21 07:46:05 +00:00

11 lines
210 B
TOML

[package]
name = "audio_util"
version = "0.1.0"
authors = ["The ChromiumOS Authors"]
edition = "2021"
[dependencies]
audio_streams = "*"
async-trait = "0.1.36"
base = { path = "../base" }
thiserror = "1.0.20"