aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpeg4videodec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-10 19:37:37 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-10 19:38:24 +0200
commit43c609374ae61801577b12d480b913759825a308 (patch)
tree9c4cb70c8206f20518983a41672f18ea2596ebd9 /libavcodec/mpeg4videodec.c
parent0abab003034145a33077a613807165055013030a (diff)
downloadandroid_external_ffmpeg-43c609374ae61801577b12d480b913759825a308.tar.gz
android_external_ffmpeg-43c609374ae61801577b12d480b913759825a308.tar.bz2
android_external_ffmpeg-43c609374ae61801577b12d480b913759825a308.zip
mpeg4videodec: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r--libavcodec/mpeg4videodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c
index bbcafabf82..dfa3475bb0 100644
--- a/libavcodec/mpeg4videodec.c
+++ b/libavcodec/mpeg4videodec.c
@@ -1179,7 +1179,7 @@ static int mpeg4_decode_mb(MpegEncContext *s,
static int8_t quant_tab[4] = { -1, -2, 1, 2 };
const int xy= s->mb_x + s->mb_y * s->mb_stride;
- assert(s->h263_pred);
+ av_assert2(s->h263_pred);
if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type==AV_PICTURE_TYPE_S) {
do{