Delete ChangeFilterWorks test
commit1ec0853d171edbfa5e2e61da6881c4b951f542f7
authorScott LaVarnway <slavarnway@google.com>
Wed, 22 Jul 2015 16:05:17 +0000 (22 09:05 -0700)
committerScott LaVarnway <slavarnway@google.com>
Wed, 22 Jul 2015 16:05:17 +0000 (22 09:05 -0700)
tree9441b66fa0d6705d1a0e9cb5f4c0754ed66d3f53
parent2cdd3beac90cf35eab5ff0d25da937150fca2bc0
Delete ChangeFilterWorks test

This test places 128 in positions that would not be found
in the VP9 filter tables.  The ssse3 code packs this table
into chars and uses the pmaddubsw instruction, which treats
the value as signed.  The ssse3 code checks for 128 in
position 3, skipping the ssse3 code if found, and calls
vp9_convolve8_c().  vp9_convolve8_c() is also used for scaling.
ChangeFilterWorks breaks the ssse3 scaling code found in other
commits.

Change-Id: I1f5a76834bc35180b9094c48f9421bdb19d3d1cb
test/convolve_test.cc