shithub: libvpx

Download patch

ref: c1f611be74b63c4a930d8640a16bae6c9156677a
parent: c94e55add0ac2683b12e14540b8d0f2ffdd81055
parent: ab1cad9bdd339ada3c80c7ba061e06e760573edf
author: Yaowu Xu <yaowu@google.com>
date: Fri Feb 1 00:57:41 EST 2013

Merge "fix a small bug in 16 point forward dct" into experimental

--- a/vp9/encoder/vp9_dct.c
+++ b/vp9/encoder/vp9_dct.c
@@ -1288,7 +1288,7 @@
 
     output[15] = (intermediate[11] + intermediate[12] + output_rounding)
         >> output_shift;
-    output[ 1] = -(intermediate[11] - intermediate[12] + output_rounding)
+    output[ 1] = (intermediate[12] - intermediate[11] + output_rounding)
         >> output_shift;
 
     output[ 7] = (2 * (intermediate[13] * C8) + final_rounding) >> final_shift;