diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-07 19:31:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-07 19:31:15 +0200 |
commit | 1822aee7e6d9b325d618804b451d2bc4b5bd7164 (patch) | |
tree | 34f72dc0eac4e795c245cad2ae4b2e2e558f23e0 | |
parent | 87244c8f201502508055b9e7104bf36bab198480 (diff) | |
download | ffmpeg-1822aee7e6d9b325d618804b451d2bc4b5bd7164.tar.gz |
dsputil_template: replace assert() by av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dsputil_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil_template.c b/libavcodec/dsputil_template.c index 7286726410..0d6e8df313 100644 --- a/libavcodec/dsputil_template.c +++ b/libavcodec/dsputil_template.c @@ -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++){\ |