[NORMATIVE] Make valid MV range symmetrical

BUG=aomedia:1959

Change-Id: Id69216b29617b9bbc64ca7d14b8e11b384e117d9
diff --git a/av1/common/entropymv.h b/av1/common/entropymv.h
index ca9b4b1..02ca7b6 100644
--- a/av1/common/entropymv.h
+++ b/av1/common/entropymv.h
@@ -72,7 +72,7 @@
 #define MV_VALS ((MV_MAX << 1) + 1)
 
 #define MV_IN_USE_BITS 14
-#define MV_UPP ((1 << MV_IN_USE_BITS) - 1)
+#define MV_UPP (1 << MV_IN_USE_BITS)
 #define MV_LOW (-(1 << MV_IN_USE_BITS))
 
 typedef struct {