diff mbox series

[FFmpeg-devel,2/2] avcodec/dnxhdenc: Simplify padding

Message ID GV1P250MB0737D6C8F5ABB6D206A8845F8FF92@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State New
Headers show
Series [FFmpeg-devel,1/2] avcodec/dnxhdenc: Move PutBitContext from ctx to stack | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt June 5, 2024, 12:25 p.m. UTC
It is unnecessary to first pad to 32bits; the memset later
will pad everything will with zeroes anyway.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/dnxhdenc.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 4760a2932c..028604a6e5 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -908,8 +908,6 @@  static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg,
             dnxhd_encode_block(pb, ctx, block, last_index, n);
         }
     }
-    if (put_bits_count(pb) & 31)
-        put_bits(pb, 32 - (put_bits_count(pb) & 31), 0);
     flush_put_bits(pb);
     memset(put_bits_ptr(pb), 0, put_bytes_left(pb, 0));
     return 0;