door_player 0.3.20

Door Player, Cross by ffmpeg and egui
Documentation
1
2
3
4
5
6
7
use std::{collections::VecDeque, sync::Arc};

pub type Deque<T> = Arc<parking_lot::Mutex<VecDeque<T>>>;

pub fn new_deque<T>() -> Deque<T> {
    Arc::new(parking_lot::Mutex::new(VecDeque::new()))
}