Fix warning about bitwise 'not' on boolean
cherry-picked from libaom: commit cf26ee5ad2b9da79fa68c33b7d22ff53c66d6509 Author: Sebastien Alaiwan <sebastien.alaiwan@allegrodvt.com> Date: Wed, 4 Oct 2017 10:09:13 +0200 BUG=webm:1491 Change-Id: I36c6e83ed716649f3d9ee10ce3aa9bb847cac2d9
This commit is contained in:
parent
de3a7e2630
commit
8001c5c7a8
@ -1174,7 +1174,7 @@ void vp9_filter_block_plane_non420(VP9_COMMON *cm,
|
||||
}
|
||||
|
||||
// Disable filtering on the leftmost column
|
||||
border_mask = ~(mi_col == 0);
|
||||
border_mask = ~(mi_col == 0 ? 1 : 0);
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
if (cm->use_highbitdepth) {
|
||||
highbd_filter_selectively_vert(
|
||||
|
Loading…
x
Reference in New Issue
Block a user