ref: 4f774ac50e4d94b4e6b333762e1cc568d247b109
parent: e4bdbd3c0b670b4af61e44f087535033031b2851
parent: 971c5a16a935afb5596215e3c33f66fa1c987884
author: James Zern <[email protected]>
date: Fri May 20 15:15:52 EDT 2016
Merge "vp8/error_concealment: remove shift of negative value"
--- a/vp8/decoder/error_concealment.c
+++ b/vp8/decoder/error_concealment.c
@@ -194,7 +194,7 @@
return;
}
- if (new_row <= (-4 << 3) || new_col <= (-4 << 3))
+ if (new_row <= -32 || new_col <= -32)
{
/* outside the frame */
return;