Commit 1822aee7 authored by Michael Niedermayer's avatar Michael Niedermayer

dsputil_template: replace assert() by av_assert2()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 87244c8f
......@@ -680,7 +680,7 @@ static void FUNCC(OPNAME ## h264_chroma_mc2)(uint8_t *p_dst/*align 8*/, uint8_t
int i;\
stride >>= sizeof(pixel)-1;\
\
assert(x<8 && y<8 && x>=0 && y>=0);\
av_assert2(x<8 && y<8 && x>=0 && y>=0);\
\
if(D){\
for(i=0; i<h; i++){\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment