From 3393bff10d81fecc7e0ae702a038e315a8284301 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 24 Feb 2010 22:05:51 +0000 Subject: Fix doxy and assert(). Originally committed as revision 22040 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rectangle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/rectangle.h') diff --git a/libavcodec/rectangle.h b/libavcodec/rectangle.h index a367343676..e26d70f8a4 100644 --- a/libavcodec/rectangle.h +++ b/libavcodec/rectangle.h @@ -37,11 +37,11 @@ * fill a rectangle. * @param h height of the rectangle, should be a constant * @param w width of the rectangle, should be a constant - * @param size the size of val (1 or 4), should be a constant + * @param size the size of val (1, 2 or 4), should be a constant */ static av_always_inline void fill_rectangle(void *vp, int w, int h, int stride, uint32_t val, int size){ uint8_t *p= (uint8_t*)vp; - assert(size==1 || size==4); + assert(size==1 || size==2 || size==4); assert(w<=4); w *= size; -- cgit v1.2.3