summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-12-02 14:19:49 +0000
committerDiego Biurrun <diego@biurrun.de>2006-12-02 14:19:49 +0000
commitc6c367254f3b1e920c8f14e1d35fa6e0d7dd68dc (patch)
treed01a148d7090bd977040afe8102e0e1ac636f317 /libavutil
parent08baa3e0d78d337e19121dcecd628d251ea55e7e (diff)
spelling cosmetics: cliped --> clipped
Originally committed as revision 7208 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index 41bbe8f63d..a602ea7fac 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -264,7 +264,7 @@ static inline int mid_pred(int a, int b, int c)
* @param a value to clip
* @param amin minimum value of the clip range
* @param amax maximum value of the clip range
- * @return cliped value
+ * @return clipped value
*/
static inline int clip(int a, int amin, int amax)
{
@@ -276,7 +276,7 @@ static inline int clip(int a, int amin, int amax)
/**
* clip a signed integer value into the 0-255 range
* @param a value to clip
- * @return cliped value
+ * @return clipped value
*/
static inline uint8_t clip_uint8(int a)
{