diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-01 18:04:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-01 18:04:08 +0200 |
commit | 91ce7c21f042edda1add197d9456e69a11a19f05 (patch) | |
tree | 115201abcdae047202760e91d56d3e068ec78bdc /libavcodec/ituh263dec.c | |
parent | 9eb6e5cc48e5d96494fe497fb327937716ed7368 (diff) | |
download | ffmpeg-91ce7c21f042edda1add197d9456e69a11a19f05.tar.gz |
ituh263dec: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index 141cb02e70..16e8e5165e 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -346,7 +346,7 @@ static void preview_obmc(MpegEncContext *s){ s->block_index[i]+= 1; s->mb_x++; - assert(s->pict_type == AV_PICTURE_TYPE_P); + av_assert2(s->pict_type == AV_PICTURE_TYPE_P); do{ if (get_bits1(&s->gb)) { |