Skip to content
Snippets Groups Projects
Commit f187ea0c authored by Monty Montgomery's avatar Monty Montgomery
Browse files

Build fix for deblocking; collided with frame padding

Fix a type mismatch in deblocking
parent b94ad9a9
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,8 @@ fn deblock_params(fi: &FrameInvariants, bc: &mut BlockContext, in_bo: &BlockOffs
p: &mut Plane, pli: usize, pass: usize, block_edge: bool, bd: usize) ->
(usize, usize, u8, u16, u16, u16) {
let mut bo = in_bo.clone();
let w = p.cfg.width;
let h = p.cfg.height;
let w = p.cfg.width as isize;
let h = p.cfg.height as isize;
let xdec = p.cfg.xdec;
let ydec = p.cfg.ydec;
let po = bo.plane_offset(&p.cfg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment