summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-08 18:24:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-08 18:24:47 +0200
commit718607be28fd1c3cb1d2d7ad7dd589211b93ab3f (patch)
treefe6acc7b6ff08d922c763b759cce613613571d41 /libavcodec
parent1be7bfdd2bc65f841391e7141ea08031c075833f (diff)
rv10: change assert() to av_assert()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/rv10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 5e9e01627a..056c8b5fcc 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -443,7 +443,7 @@ av_log(s->avctx, AV_LOG_DEBUG, "\n");*/
seq, s->mb_x, s->mb_y, s->pict_type, s->qscale, s->no_rounding);
}
- assert(s->pict_type != AV_PICTURE_TYPE_B || !s->low_delay);
+ av_assert0(s->pict_type != AV_PICTURE_TYPE_B || !s->low_delay);
return s->mb_width*s->mb_height - mb_pos;
}