[FFmpeg-devel] [PATCH 2/2] avcodec/dnxhdenc: Simplify padding
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Wed Jun 5 15:25:39 EEST 2024
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 at outlook.com>
---
libavcodec/dnxhdenc.c | 2 --
1 file changed, 2 deletions(-)
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;
--
2.40.1
More information about the ffmpeg-devel
mailing list