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
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
use crate::ffi;
use crate::frame::Frame;
#[allow(missing_debug_implementations)]
pub struct Player<F: Frame>(ffi::Player<F>);
impl<F: Frame> Player<F> {
pub fn new(sr: u32) -> Option<Player<F>> {
Some(Player(ffi::Player::new(sr)?))
}
pub fn play_last(&mut self, audio: &[F]) -> usize {
self.0.play_last(audio)
}
}
impl<F: Frame + Unpin> Future for Player<F> {
type Output = ();
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.get_mut().0.poll(cx)
}
}