shithub: libvpx

Download patch

ref: 74f038e6f8dac275941f6d825eac342dc0f5fcf0
parent: 3a57ce4478e85b534ecb369a599e41b7edb4d423
parent: 8db503063f65c4beda0240ad10ffd51e53e9b91c
author: Debargha Mukherjee <debargha@google.com>
date: Tue Sep 27 20:05:37 EDT 2016

Merge "Fix for compile error with range checking"

--- a/vp9/decoder/vp9_detokenize.c
+++ b/vp9/decoder/vp9_detokenize.c
@@ -188,9 +188,8 @@
     }
 #if CONFIG_COEFFICIENT_RANGE_CHECKING
 #if CONFIG_VP9_HIGHBITDEPTH
-    dqcoeff[scan[c]] =
-        highbd_check_range(read_bool(r, 128, &value, &count, &range) ? -v : v),
-                           xd->bd);
+    dqcoeff[scan[c]] = highbd_check_range(
+        read_bool(r, 128, &value, &count, &range) ? -v : v, xd->bd);
 #else
     dqcoeff[scan[c]] =
         check_range(read_bool(r, 128, &value, &count, &range) ? -v : v);