1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Audio playback config and [`AudioPlayback`] trait — the output half of this crate's
//! "Audio I/O" ([`crate::audio::AudioCapture`] is the input half).
//!
//! Moved from `mediaway-device` unchanged — see `mediaway-device/adr/0007-domain-crate-split.md`.
use crateSelect;
use cratePlaybackError;
use ;
/// Parameters for opening an audio playback session.
/// Streaming audio playback — push PCM frames, backend worker thread drains
/// them into the render device on its own schedule.