Commit f900ae0c authored by michael's avatar michael

h264 loop filter optimizations


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2909 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a3d44a55
......@@ -1163,6 +1163,12 @@ static inline int clip(int a, int amin, int amax)
return a;
}
static inline int clip_uint8(int a)
{
if (a&(~255)) return (-a)>>31;
else return a;
}
/* math */
extern const uint8_t ff_sqrt_tab[128];
......
This diff is collapsed.
Markdown is supported
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