ref: 936ada3304ec17ce4aaa75e610f053d2103ad42c
parent: a7ccc91e3a4e0d1f706407e54bd90b728bd59cf7
author: James Zern <jzern@google.com>
date: Thu Jan 31 12:52:48 EST 2019
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
--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -917,7 +917,7 @@
}
}
- 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,