mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-08 05:28:40 +00:00
VP8: slightly faster loopfilter sharpness logic
(cherry picked from commit 8a2c99b486
)
This commit is contained in:
parent
9efa368f19
commit
e9266a2be0
@ -1487,7 +1487,7 @@ static av_always_inline void filter_level_for_mb(VP8Context *s, VP8Macroblock *m
|
||||
|
||||
interior_limit = filter_level;
|
||||
if (s->filter.sharpness) {
|
||||
interior_limit >>= s->filter.sharpness > 4 ? 2 : 1;
|
||||
interior_limit >>= (s->filter.sharpness + 3) >> 2;
|
||||
interior_limit = FFMIN(interior_limit, 9 - s->filter.sharpness);
|
||||
}
|
||||
interior_limit = FFMAX(interior_limit, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user