Commit 69aa303d authored by Aaron Watry's avatar Aaron Watry
Browse files

Reduce computational complexity of generic C loop filter.

Change-Id: I1e7f9ed3cd907844a495b9e0073bc140b87e5c06
Showing with 8 additions and 9 deletions
...@@ -29,15 +29,14 @@ static __inline signed char vp8_filter_mask(uc limit, uc blimit, ...@@ -29,15 +29,14 @@ static __inline signed char vp8_filter_mask(uc limit, uc blimit,
uc q0, uc q1, uc q2, uc q3) uc q0, uc q1, uc q2, uc q3)
{ {
signed char mask = 0; signed char mask = 0;
mask |= (abs(p3 - p2) > limit) * -1; mask |= (abs(p3 - p2) > limit);
mask |= (abs(p2 - p1) > limit) * -1; mask |= (abs(p2 - p1) > limit);
mask |= (abs(p1 - p0) > limit) * -1; mask |= (abs(p1 - p0) > limit);
mask |= (abs(q1 - q0) > limit) * -1; mask |= (abs(q1 - q0) > limit);
mask |= (abs(q2 - q1) > limit) * -1; mask |= (abs(q2 - q1) > limit);
mask |= (abs(q3 - q2) > limit) * -1; mask |= (abs(q3 - q2) > limit);
mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1; mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit);
mask = ~mask; return mask - 1;
return mask;
} }
/* is there high variance internal edge ( 11111111 yes, 00000000 no) */ /* is there high variance internal edge ( 11111111 yes, 00000000 no) */
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment