You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
dsputil_template: replace assert() by av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -680,7 +680,7 @@ static void FUNCC(OPNAME ## h264_chroma_mc2)(uint8_t *p_dst/*align 8*/, uint8_t
|
|||||||
int i;\
|
int i;\
|
||||||
stride >>= sizeof(pixel)-1;\
|
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){\
|
if(D){\
|
||||||
for(i=0; i<h; i++){\
|
for(i=0; i<h; i++){\
|
||||||
|
Reference in New Issue
Block a user