Browse Source

checkasm/vp9dsp: Fix iszero() to read the correct data

tags/n3.0
Henrik Gramner 10 years ago
parent
commit
69e456d7fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/checkasm/vp9dsp.c

+ 1
- 1
tests/checkasm/vp9dsp.c View File

@@ -297,7 +297,7 @@ static int iszero(const int16_t *c, int sz)
{
int n;

for (n = 0; n < sz; n += 4)
for (n = 0; n < sz / sizeof(int16_t); n += 2)
if (AV_RN32A(&c[n]))
return 0;



Loading…
Cancel
Save