aboutsummaryrefslogtreecommitdiff
path: root/evc/src/header.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-12-07 17:16:40 +0100
committermetamuffin <metamuffin@disroot.org>2022-12-07 17:16:40 +0100
commit85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d (patch)
tree06497577894131a66f3f4874a9865da5b814fe17 /evc/src/header.rs
parenta713143ef9c1187c37004043b1d3322d773f9ea0 (diff)
downloadvideo-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar
video-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar.bz2
video-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar.zst
refactor, matrix math
Diffstat (limited to 'evc/src/header.rs')
-rw-r--r--evc/src/header.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/evc/src/header.rs b/evc/src/header.rs
index a613627..4c9118e 100644
--- a/evc/src/header.rs
+++ b/evc/src/header.rs
@@ -1,11 +1,11 @@
use crate::{
+ helpers::vector::Vec2,
ser::{Ser, Sink, Source},
- vec2::Vec2,
};
#[derive(Debug, Clone, PartialEq, Copy)]
pub struct Header {
- pub resolution: Vec2,
+ pub resolution: Vec2<isize>,
pub frame_count: usize,
}