From 936ada3304ec17ce4aaa75e610f053d2103ad42c Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 31 Jan 2019 17:52:48 -0800 Subject: [PATCH] vp9_temporal_filter: convert blk_fw[0] || ... to | this matches what is done to reduce the cost of the test of filter values in convolve. Change-Id: I692b58801a962b593b810c1d1dac42f72c78caf9 --- vp9/encoder/vp9_temporal_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_temporal_filter.c b/vp9/encoder/vp9_temporal_filter.c index 5d4583f..c622fd8 100644 --- a/vp9/encoder/vp9_temporal_filter.c +++ b/vp9/encoder/vp9_temporal_filter.c @@ -917,7 +917,7 @@ void vp9_temporal_filter_iterate_row_c(VP9_COMP *cpi, ThreadData *td, } } - if (blk_fw[0] || blk_fw[1] || blk_fw[2] || blk_fw[3]) { + if (blk_fw[0] | blk_fw[1] | blk_fw[2] | blk_fw[3]) { // Construct the predictors temporal_filter_predictors_mb_c( mbd, frames[frame]->y_buffer + mb_y_offset, -- 2.7.4