Commit 77177335 authored by Aurelien Jacobs's avatar Aurelien Jacobs

document clip functions

Originally committed as revision 5338 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 89ddb72a
......@@ -427,6 +427,13 @@ static inline int mid_pred(int a, int b, int c)
#endif
}
/**
* clip a signed integer value into the amin-amax range
* @param a value to clip
* @param amin minimum value of the clip range
* @param amax maximum value of the clip range
* @return cliped value
*/
static inline int clip(int a, int amin, int amax)
{
if (a < amin)
......@@ -437,6 +444,11 @@ static inline int clip(int a, int amin, int amax)
return a;
}
/**
* clip a signed integer value into the 0-255 range
* @param a value to clip
* @return cliped value
*/
static inline uint8_t clip_uint8(int a)
{
if (a&(~255)) return (-a)>>31;
......
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