aboutsummaryrefslogtreecommitdiff
path: root/libvpx/vp8/encoder/ethreading.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvpx/vp8/encoder/ethreading.c')
-rw-r--r--libvpx/vp8/encoder/ethreading.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvpx/vp8/encoder/ethreading.c b/libvpx/vp8/encoder/ethreading.c
index 55a1528b1..cb35f4f49 100644
--- a/libvpx/vp8/encoder/ethreading.c
+++ b/libvpx/vp8/encoder/ethreading.c
@@ -470,8 +470,8 @@ void vp8cx_init_mbrthread_data(VP8_COMP *cpi, MACROBLOCK *x,
setup_mbby_copy(&mbr_ei[i].mb, x);
- mbd->fullpixel_mask = 0xffffffff;
- if (cm->full_pixel) mbd->fullpixel_mask = 0xfffffff8;
+ mbd->fullpixel_mask = ~0;
+ if (cm->full_pixel) mbd->fullpixel_mask = ~7;
vp8_zero(mb->coef_counts);
vp8_zero(x->ymode_count);