[FFmpeg-cvslog] avcodec/dcaenc: Don't write one bit at a time
Andreas Rheinhardt
git at videolan.org
Wed May 5 15:37:56 EEST 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Tue Apr 27 17:11:27 2021 +0200| [72c521e80af9ff9b8ab7145e4af973c5e2969840] | committer: Andreas Rheinhardt
avcodec/dcaenc: Don't write one bit at a time
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=72c521e80af9ff9b8ab7145e4af973c5e2969840
---
libavcodec/dcaenc.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/libavcodec/dcaenc.c b/libavcodec/dcaenc.c
index bd08ccd331..76f1f141d1 100644
--- a/libavcodec/dcaenc.c
+++ b/libavcodec/dcaenc.c
@@ -1206,14 +1206,10 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
for (i = 0; i < SUBFRAMES; i++)
put_subframe(c, i);
-
- for (i = put_bits_count(&c->pb); i < 8*c->frame_size; i++)
- put_bits(&c->pb, 1, 0);
-
flush_put_bits(&c->pb);
+ memset(put_bits_ptr(&c->pb), 0, put_bytes_left(&c->pb, 0));
avpkt->pts = frame->pts;
- avpkt->size = put_bytes_output(&c->pb);
avpkt->duration = ff_samples_to_time_base(avctx, frame->nb_samples);
*got_packet_ptr = 1;
return 0;
More information about the ffmpeg-cvslog
mailing list