diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-11 16:58:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-11 16:58:18 +0200 |
commit | 5a49482cc08b3ab32665d76b4c0dbf6d43159225 (patch) | |
tree | 2bc9acfab84c568e0c0cc4fc8ae0bf0890260355 | |
parent | f5f3684fb8d3881a6f90913417b2b5272df76e49 (diff) | |
download | ffmpeg-5a49482cc08b3ab32665d76b4c0dbf6d43159225.tar.gz |
dsputil_template: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dsputil_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/dsputil_template.c b/libavcodec/dsputil_template.c index 4258f0fb00..cef7cca5fc 100644 --- a/libavcodec/dsputil_template.c +++ b/libavcodec/dsputil_template.c @@ -149,8 +149,8 @@ void FUNC(ff_emulated_edge_mc)(uint8_t *buf, const uint8_t *src, int linesize, i start_x= FFMAX(0, -src_x); end_y= FFMIN(block_h, h-src_y); end_x= FFMIN(block_w, w-src_x); - assert(start_y < end_y && block_h); - assert(start_x < end_x && block_w); + av_assert2(start_y < end_y && block_h); + av_assert2(start_x < end_x && block_w); w = end_x - start_x; src += start_y*linesize + start_x*sizeof(pixel); @@ -711,7 +711,7 @@ static void FUNCC(OPNAME ## h264_chroma_mc4)(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++){\ @@ -746,7 +746,7 @@ static void FUNCC(OPNAME ## h264_chroma_mc8)(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++){\ |