Skip to content

Commit 73ec7bd

Browse files
committed
fn lr_sbrow::pre_lr_border: Align.
1 parent 1d72d4f commit 73ec7bd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lr_apply_tmpl_16.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ unsafe extern "C" fn lr_sbrow(
869869
let max_unit_size = unit_size + half_unit_size;
870870
let row_y = y + (8 >> ss_ver) * (y != 0) as libc::c_int;
871871
let shift_hor = 7 - ss_hor;
872-
let mut pre_lr_border: [[[pixel; 4]; 136]; 2] = [[[0; 4]; 136]; 2];
872+
let mut pre_lr_border: Align16<[[[pixel; 4]; 136]; 2]> = Align16([[[0; 4]; 136]; 2]);
873873
let mut lr: [*const Av1RestorationUnit; 2] = [0 as *const Av1RestorationUnit; 2];
874874
let mut edges: LrEdgeFlags = ((if y > 0 {
875875
LR_HAVE_TOP as libc::c_int

src/lr_apply_tmpl_8.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ unsafe extern "C" fn lr_sbrow(
840840
let max_unit_size = unit_size + half_unit_size;
841841
let row_y = y + (8 >> ss_ver) * (y != 0) as libc::c_int;
842842
let shift_hor = 7 - ss_hor;
843-
let mut pre_lr_border: [[[pixel; 4]; 136]; 2] = [[[0; 4]; 136]; 2];
843+
let mut pre_lr_border: Align16<[[[pixel; 4]; 136]; 2]> = Align16([[[0; 4]; 136]; 2]);
844844
let mut lr: [*const Av1RestorationUnit; 2] = [0 as *const Av1RestorationUnit; 2];
845845
let mut edges: LrEdgeFlags = ((if y > 0 {
846846
LR_HAVE_TOP as libc::c_int

0 commit comments

Comments
 (0)