Skip to content

Commit

Permalink
Remove redundant cast
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zero committed Sep 24, 2023
1 parent 885ab24 commit 781492d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asm/x86/cdef.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ pub(crate) unsafe fn cdef_filter_block<T: Pixel>(
(func)(
dst.data_ptr_mut() as *mut _,
T::to_asm_stride(dst.plane_cfg.stride),
tmp.data.as_ptr().offset(3 * TMPSTRIDE) as *const u16,
tmp.data.as_ptr().offset(3 * TMPSTRIDE),
TMPSTRIDE,
pri_strength,
sec_strength,
Expand Down

0 comments on commit 781492d

Please sign in to comment.