Commit 91ce7c21 authored by Michael Niedermayer's avatar Michael Niedermayer

ituh263dec: use av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9eb6e5cc
...@@ -346,7 +346,7 @@ static void preview_obmc(MpegEncContext *s){ ...@@ -346,7 +346,7 @@ static void preview_obmc(MpegEncContext *s){
s->block_index[i]+= 1; s->block_index[i]+= 1;
s->mb_x++; s->mb_x++;
assert(s->pict_type == AV_PICTURE_TYPE_P); av_assert2(s->pict_type == AV_PICTURE_TYPE_P);
do{ do{
if (get_bits1(&s->gb)) { if (get_bits1(&s->gb)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment