When the packet size is known in advance like here, one can avoid
an intermediate buffer for the packet data.

Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com>
---
 libavcodec/s302menc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/s302menc.c b/libavcodec/s302menc.c
index b04a54e482..1dcee7c208 100644
--- a/libavcodec/s302menc.c
+++ b/libavcodec/s302menc.c
@@ -83,7 +83,7 @@ static int s302m_encode2_frame(AVCodecContext *avctx, 
AVPacket *avpkt,
         return AVERROR(EINVAL);
     }
 
-    if ((ret = ff_alloc_packet2(avctx, avpkt, buf_size, 0)) < 0)
+    if ((ret = ff_alloc_packet2(avctx, avpkt, buf_size, buf_size)) < 0)
         return ret;
 
     o = avpkt->data;
-- 
2.27.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to