[FFmpeg-devel] [PATCH 17/34] avcodec/v308enc: Avoid copying packet data
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Mon Apr 26 01:34:31 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/v308enc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/v308enc.c b/libavcodec/v308enc.c
index 0891251dea..bbaa454880 100644
--- a/libavcodec/v308enc.c
+++ b/libavcodec/v308enc.c
@@ -44,7 +44,8 @@ static int v308_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
uint8_t *y, *u, *v;
int i, j, ret;
- if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 3, 0)) < 0)
+ if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 3,
+ avctx->width * avctx->height * 3)) < 0)
return ret;
dst = pkt->data;
--
2.27.0
More information about the ffmpeg-devel
mailing list