diff mbox series

[FFmpeg-devel] avcodec/shorten: Fix discard of ‘const’ qualifier

Message ID 20240816134427.2776-1-jamrial@gmail.com
State New
Headers show
Series [FFmpeg-devel] avcodec/shorten: Fix discard of ‘const’ qualifier | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished

Commit Message

James Almer Aug. 16, 2024, 1:44 p.m. UTC
Signed-off-by: James Almer <jamrial@gmail.com>
---
 libavcodec/shorten.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c
index 12a179156a..46d3b7a615 100644
--- a/libavcodec/shorten.c
+++ b/libavcodec/shorten.c
@@ -563,7 +563,6 @@  static int shorten_decode_frame(AVCodecContext *avctx, AVFrame *frame,
     buf               = &s->bitstream[s->bitstream_index];
     buf_size         += s->bitstream_size;
     s->bitstream_size = buf_size;
-    memset(buf + buf_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
 
     /* do not decode until buffer has at least max_framesize bytes or
      * the end of the file has been reached */
@@ -583,10 +582,9 @@  static int shorten_decode_frame(AVCodecContext *avctx, AVFrame *frame,
             return ret;
 
         if (avpkt->size) {
-            int max_framesize;
+            int max_framesize = s->blocksize * s->channels * 8;
             void *tmp_ptr;
 
-            max_framesize = FFMAX(s->max_framesize, s->blocksize * s->channels * 8);
             tmp_ptr = av_fast_realloc(s->bitstream, &s->allocated_bitstream_size,
                                       max_framesize + AV_INPUT_BUFFER_PADDING_SIZE);
             if (!tmp_ptr) {
@@ -594,7 +592,10 @@  static int shorten_decode_frame(AVCodecContext *avctx, AVFrame *frame,
                 return AVERROR(ENOMEM);
             }
             s->bitstream = tmp_ptr;
-            s->max_framesize = max_framesize;
+            if (max_framesize > s->max_framesize)
+                memset(s->bitstream + s->max_framesize, 0, (max_framesize - s->max_framesize) +
+                                                            AV_INPUT_BUFFER_PADDING_SIZE);
+            s->max_framesize = FFMAX(s->max_framesize, max_framesize);
             *got_frame_ptr = 0;
             goto finish_frame;
         }