1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-23 04:24:35 +02:00

avcodec/msmpeg4enc: Fix indentation

Forgotten after 2b9ab1d54a35f7d689b2396cfc59f9dbdcae391f.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2022-10-02 23:38:01 +02:00
parent 3d6d127cd0
commit ddbaf6227b

@ -287,7 +287,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
av_assert0(s->flipflop_rounding==0); av_assert0(!s->flipflop_rounding);
} }
void ff_msmpeg4_encode_motion(MpegEncContext * s, void ff_msmpeg4_encode_motion(MpegEncContext * s,