File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments