avcodec/rectangle: Remove nonsense assert

pull/9/merge
Diego Biurrun 12 years ago
parent 375ef6528c
commit 6fb296e97e
  1. 1
      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;

Loading…
Cancel
Save