ARNR filter pointer update bug fix
authorAdrian Grange <agrange@google.com>
Fri, 14 Jan 2011 15:04:39 +0000 (15:04 +0000)
committerAdrian Grange <agrange@google.com>
Fri, 14 Jan 2011 15:04:39 +0000 (15:04 +0000)
commit2c1b06e67213d5e7375d911f326810dbf086f9e6
tree9cee3a0e45a45e65897e48fb451bd1673113072d
parentb082790c7d1e16dde329f1baea153c0fe86112d5
ARNR filter pointer update bug fix

In cases where the frame width is not a multiple of 16 the
ARNR filter would go wrong.

In vp8_temporal_filter_iterate_c when updating pointers
at the end of a row of MBs,  the image size was
incorrectly used rather than using Num_MBs_In_Row
times 16 (Y) or 8 (U,V).

This worked when width is multiple of 16 but failed
otherwise.

Change-Id: I008919062715bd3d17c7aa2562ab58d1cb37053a
vp8/encoder/temporal_filter.c