diff mbox series

[FFmpeg-devel,5/9] avcodec/asvenc: Simplify flushing and padding packet

Message ID 20201013091017.1899676-5-andreas.rheinhardt@gmail.com
State Accepted
Commit c9e8f031955ffc00d681bd31e6ad3c8146cf015d
Headers show
Series [FFmpeg-devel,1/9] avcodec/asvdec: Reduce the size of some VLCs | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt Oct. 13, 2020, 9:10 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavcodec/asvenc.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/asvenc.c b/libavcodec/asvenc.c
index 054ec8ee65..49df3ffbe1 100644
--- a/libavcodec/asvenc.c
+++ b/libavcodec/asvenc.c
@@ -291,12 +291,9 @@  static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
     }
     emms_c();
 
-    avpriv_align_put_bits(&a->pb);
-    while (put_bits_count(&a->pb) & 31)
-        put_bits(&a->pb, 8, 0);
-
     flush_put_bits(&a->pb);
-    size = put_bits_count(&a->pb) / 32;
+    AV_WN32(put_bits_ptr(&a->pb), 0);
+    size = (put_bits_count(&a->pb) + 31) / 32;
 
     if (avctx->codec_id == AV_CODEC_ID_ASV1) {
         a->bbdsp.bswap_buf((uint32_t *) pkt->data,