Yaowu Xu 152ce6b2b9 fixed the wrong rounding in inverse haar transform
Given the current forward haar transform:
 f0 = I0 + I1 + I2 + I3
 f1 = I0 + I1 - I2 - I3
 f2 = I0 - I1 + I2 - I3
 f3 = I0 - I1 - I2 + I3
the output of the inverse haar prior rounding:
 i0 = f0 + f1 + f2 + f3 = I0 * 4;
 i1 = f0 + f1 - f2 - f3 = I1 * 4;
 i2 = f0 - f1 + f2 - f3 = I2 * 4;
 i3 = f0 - f1 - f2 + f3 = I3 * 4;
As all the numbers are 4 multiples, simply >>2 always produces prefect
results in term of forward-inverse transform round trip error.

Change-Id: Id6658b00ea819ee61cfeef8c5985d4cd3e77f44e
2011-10-14 09:33:54 -07:00
..
2011-09-16 15:55:19 -07:00
2011-04-25 17:37:41 -04:00
2011-08-02 19:26:46 -04:00
2011-02-24 14:35:18 -05:00
2011-07-21 09:01:53 -07:00
2011-05-24 13:24:52 -04:00
2011-09-16 15:55:19 -07:00
2011-09-13 11:26:39 +01:00
2011-09-16 15:55:19 -07:00
2010-10-27 18:08:04 -07:00
2011-08-19 10:29:41 -04:00
2011-08-19 10:29:41 -04:00
2011-02-08 17:42:54 -05:00
2011-09-16 15:55:19 -07:00
2011-09-16 15:55:19 -07:00
2011-07-21 09:01:53 -07:00
2011-07-08 09:31:41 +03:00
2011-09-15 10:19:09 +01:00
2011-07-22 12:33:57 -04:00
2010-10-27 18:08:04 -07:00
2010-10-27 18:08:04 -07:00
2011-05-12 11:08:16 -04:00
2011-07-26 11:34:36 -07:00
2011-06-27 09:43:21 -07:00
2011-09-16 15:55:19 -07:00
2011-09-16 15:55:19 -07:00
2011-08-24 14:42:26 -04:00
2011-08-24 14:42:26 -04:00
2011-09-16 15:55:19 -07:00
2010-10-27 18:08:04 -07:00
2010-10-27 18:08:04 -07:00
2011-05-06 00:13:59 -04:00
2010-10-27 18:08:04 -07:00
2010-10-27 18:08:04 -07:00