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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
use std::convert::TryInto;
use std::time::Duration;
extern crate ndk;
use crate::{
BackendSpecificError, BuildStreamError, PauseStreamError, PlayStreamError, StreamError,
StreamInstant,
};
pub fn to_stream_instant(duration: Duration) -> StreamInstant {
StreamInstant::new(
duration.as_secs().try_into().unwrap(),
duration.subsec_nanos(),
)
}
pub fn stream_instant(stream: &ndk::audio::AudioStream) -> StreamInstant {
let ts = stream
.timestamp(ndk::audio::Clockid::Monotonic)
.unwrap_or(ndk::audio::Timestamp {
frame_position: 0,
time_nanoseconds: 0,
});
to_stream_instant(Duration::from_nanos(ts.time_nanoseconds as u64))
}
impl From<ndk::audio::AudioError> for StreamError {
fn from(error: ndk::audio::AudioError) -> Self {
use self::ndk::audio::AudioError::*;
match error {
Disconnected | Unavailable => Self::DeviceNotAvailable,
e => (BackendSpecificError {
description: e.to_string(),
})
.into(),
}
}
}
impl From<ndk::audio::AudioError> for PlayStreamError {
fn from(error: ndk::audio::AudioError) -> Self {
use self::ndk::audio::AudioError::*;
match error {
Disconnected | Unavailable => Self::DeviceNotAvailable,
e => (BackendSpecificError {
description: e.to_string(),
})
.into(),
}
}
}
impl From<ndk::audio::AudioError> for PauseStreamError {
fn from(error: ndk::audio::AudioError) -> Self {
use self::ndk::audio::AudioError::*;
match error {
Disconnected | Unavailable => Self::DeviceNotAvailable,
e => (BackendSpecificError {
description: e.to_string(),
})
.into(),
}
}
}
impl From<ndk::audio::AudioError> for BuildStreamError {
fn from(error: ndk::audio::AudioError) -> Self {
use self::ndk::audio::AudioError::*;
match error {
Disconnected | Unavailable => Self::DeviceNotAvailable,
NoFreeHandles => Self::StreamIdOverflow,
InvalidFormat | InvalidRate => Self::StreamConfigNotSupported,
IllegalArgument => Self::InvalidArgument,
e => (BackendSpecificError {
description: e.to_string(),
})
.into(),
}
}
}
|