door_player 0.3.20

Door Player, Cross by ffmpeg and egui
Documentation
use std::fmt::{Debug, Formatter};

#[derive(Default, Clone)]
pub struct VideoPlayFrame {
    pub width: usize,
    pub height: usize,
    pub pts: i64,
    pub duration: i64,
    pub timestamp: i64,
    pub color_image: egui::ColorImage,
}

impl Debug for VideoPlayFrame {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        //todo
        f.debug_struct("VideoFrame")
            // .field("color_image", &self.color_image)
            .field("pts", &self.pts)
            .field("duration", &self.duration)
            .finish()
    }
}

// impl VideoPlayFrame {
//     pub fn new(color_image: egui::ColorImage, width: usize, height: usize, pts: i64, duration: i64) -> Self {
//         Self {
//             color_image,
//             width,
//             height,
//             pts,
//             duration,
//             timestamp:0
//         }
//     }
// }