ffmpeg stuff

This commit is contained in:
2025-03-27 13:25:45 -04:00
parent 68e5d9fc3a
commit 278ccafb11
6 changed files with 91 additions and 116 deletions

View File

@@ -24,7 +24,7 @@ impl ThinGridData {
pub fn new_from_grid_vec(in_grids: &[Grid]) -> Vec<Self> {
in_grids
.iter()
.map(|grid| Self::new_from_grid(grid))
.map(Self::new_from_grid)
.collect()
}