This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
checkasm/vp9dsp: Fix iszero() to read the correct data
tags/n3.0
Henrik Gramner
10 years ago
parent
0b227c6d47
commit
69e456d7fb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save