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
use super::image::Image;
#[derive(Clone)]
pub struct Video {
pub frame: usize,
pub images: Vec<Image>,
}
impl From<Vec<(u32, u32, Vec<u8>)>> for Video {
fn from(raw_video: Vec<(u32, u32, Vec<u8>)>) -> Self {
let mut video = Self {
frame: 0,
images: Vec::new(),
};
for frame in raw_video {
let image = Image::from(frame);
video.images.push(image);
}
video
}
}
impl Video {
pub fn mirror_y(&self) -> Self {
let mut mirrored_video = Self {
frame: 0,
images: Vec::new(),
};
for image in &self.images {
mirrored_video.images.push(image.mirror_y());
}
mirrored_video
}
}