From 6fb296e97edcf455350fe01493c9dc3847044c5f Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 8 Feb 2013 15:55:24 +0100 Subject: avcodec/rectangle: Remove nonsense assert --- libavcodec/rectangle.h | 1 - 1 file changed, 1 deletion(-) (limited to 'libavcodec/rectangle.h') diff --git a/libavcodec/rectangle.h b/libavcodec/rectangle.h index 5cc81feeaa..f18f667ad3 100644 --- a/libavcodec/rectangle.h +++ b/libavcodec/rectangle.h @@ -47,7 +47,6 @@ static av_always_inline void fill_rectangle(void *vp, int w, int h, int stride, w *= size; stride *= size; - assert((((long)vp)&(FFMIN(w, STRIDE_ALIGN)-1)) == 0); assert((stride&(w-1))==0); if(w==2){ const uint16_t v= size==4 ? val : val*0x0101; -- cgit v1.2.3