提交 77177335 编写于 作者: A Aurelien Jacobs

document clip functions

Originally committed as revision 5338 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册