]> granicus.if.org Git - libvpx/commitdiff
Fix a missing space
authorhui su <huisu@google.com>
Thu, 28 Jul 2016 16:54:50 +0000 (09:54 -0700)
committerhui su <huisu@google.com>
Thu, 28 Jul 2016 16:55:17 +0000 (09:55 -0700)
Change-Id: I6a9ab351012b731308d6b4fc78c09744c6afb61a

vp10/common/reconintra.c

index 7cb2bed3b50280d4dc0bdefd19d332e1d134a6ea..265b0e59d5263bee45871f014713eda96eb43506 100644 (file)
@@ -691,7 +691,7 @@ static inline int get_dy(int angle) {
   if (angle > 90 && angle < 180) {
       return dr_intra_derivative[angle - 90];
     } else if (angle > 180 && angle < 270) {
-      return -dr_intra_derivative[270 -angle];
+      return -dr_intra_derivative[270 - angle];
     } else {
     // In this case, we are not really going to use dy. We may return any value.
     return 1;