summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-07 19:31:15 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-07 19:31:15 +0200
commit1822aee7e6d9b325d618804b451d2bc4b5bd7164 (patch)
tree34f72dc0eac4e795c245cad2ae4b2e2e558f23e0 /libavcodec/dsputil_template.c
parent87244c8f201502508055b9e7104bf36bab198480 (diff)
dsputil_template: replace assert() by av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dsputil_template.c')
-rw-r--r--libavcodec/dsputil_template.c2
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++){\