Question about VideoMeta::add_full()
What is the expected behavior of that function if n_planes = 3? I'm asking because the offset and stride slices are &[usize;4]
. Am I supposed to add a 0 to complete each slice?
Wouldn't something like this be simpler? add_full(..., height: u32, offsets: Vec<usize>, stride: Vec<i32>)
?