[FFmpeg-cvslog] avcodec/dvenc: Avoid using PutBitContext fields directly

Andreas Rheinhardt git at videolan.org
Tue Mar 30 16:49:41 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Thu Mar 25 12:28:54 2021 +0100| [73fb1b8a9bd6a563a6b58ce8aa215f2f07e91f57] | committer: Andreas Rheinhardt

avcodec/dvenc: Avoid using PutBitContext fields directly

Also avoid using bitcounts in case one is actually byte-aligned.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=73fb1b8a9bd6a563a6b58ce8aa215f2f07e91f57
---

 libavcodec/dvenc.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/libavcodec/dvenc.c b/libavcodec/dvenc.c
index 134315a834..e0679c538c 100644
--- a/libavcodec/dvenc.c
+++ b/libavcodec/dvenc.c
@@ -976,11 +976,8 @@ static int dv_encode_video_segment(AVCodecContext *avctx, void *arg)
     }
 
     for (j = 0; j < 5 * s->sys->bpm; j++) {
-        int pos;
-        int size = pbs[j].size_in_bits >> 3;
         flush_put_bits(&pbs[j]);
-        pos = put_bits_count(&pbs[j]) >> 3;
-        memset(pbs[j].buf + pos, 0xff, size - pos);
+        memset(put_bits_ptr(&pbs[j]), 0xff, put_bytes_left(&pbs[j], 0));
     }
 
     if (DV_PROFILE_IS_HD(s->sys))



More information about the ffmpeg-cvslog mailing list