Commit 4aed3ac8 authored by Michael Niedermayer's avatar Michael Niedermayer

msmpeg4enc: use av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 20a6fa77
...@@ -283,7 +283,7 @@ void ff_msmpeg4_encode_ext_header(MpegEncContext * s) ...@@ -283,7 +283,7 @@ void ff_msmpeg4_encode_ext_header(MpegEncContext * s)
if(s->msmpeg4_version>=3) if(s->msmpeg4_version>=3)
put_bits(&s->pb, 1, s->flipflop_rounding); put_bits(&s->pb, 1, s->flipflop_rounding);
else else
assert(s->flipflop_rounding==0); av_assert0(s->flipflop_rounding==0);
} }
void ff_msmpeg4_encode_motion(MpegEncContext * s, void ff_msmpeg4_encode_motion(MpegEncContext * s,
......
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