mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
avcodec/msmpeg4enc: Combine writing bits
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -71,8 +71,7 @@ void ff_msmpeg4_code012(PutBitContext *pb, int n)
|
||||
if (n == 0) {
|
||||
put_bits(pb, 1, 0);
|
||||
} else {
|
||||
put_bits(pb, 1, 1);
|
||||
put_bits(pb, 1, (n >= 2));
|
||||
put_bits(pb, 2, 2 | (n >= 2));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user