[FFmpeg-devel] [PATCH 16/34] avcodec/s302menc: Avoid copying packet data
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Mon Apr 26 01:34:30 EEST 2021
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.rheinhardt at 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
More information about the ffmpeg-devel
mailing list