mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
msmpeg4enc: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
20a6fa77a6
commit
4aed3ac86a
@ -283,7 +283,7 @@ void ff_msmpeg4_encode_ext_header(MpegEncContext * s)
|
||||
if(s->msmpeg4_version>=3)
|
||||
put_bits(&s->pb, 1, s->flipflop_rounding);
|
||||
else
|
||||
assert(s->flipflop_rounding==0);
|
||||
av_assert0(s->flipflop_rounding==0);
|
||||
}
|
||||
|
||||
void ff_msmpeg4_encode_motion(MpegEncContext * s,
|
||||
|
Loading…
Reference in New Issue
Block a user