Adjust WIENER_FILT_TAP2_MIDV value to fix convolve
Adjusts the value by 1 to make sure that the center tap
if the Wiener filter does not drop below 0.
BUG=aomedia:315
Change-Id: I41c3a2eb3f36dd49072a4873a995003d18f94ece
diff --git a/av1/common/restoration.h b/av1/common/restoration.h
index d4319d2..11885e8 100644
--- a/av1/common/restoration.h
+++ b/av1/common/restoration.h
@@ -86,7 +86,7 @@
// Central values for the taps
#define WIENER_FILT_TAP0_MIDV (3)
#define WIENER_FILT_TAP1_MIDV (-7)
-#define WIENER_FILT_TAP2_MIDV (16)
+#define WIENER_FILT_TAP2_MIDV (15)
#define WIENER_FILT_TAP0_BITS 4
#define WIENER_FILT_TAP1_BITS 5