[FFmpeg-devel] [PATCH 33/46] avcodec/rawenc: Allow user-supplied buffers

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Fri Apr 30 02:57:04 EEST 2021


Trivial for an encoder that knows the size of the output packet in advance.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
 libavcodec/rawenc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c
index baaab749fd..eec304448e 100644
--- a/libavcodec/rawenc.c
+++ b/libavcodec/rawenc.c
@@ -25,6 +25,7 @@
  */
 
 #include "avcodec.h"
+#include "encode.h"
 #include "raw.h"
 #include "internal.h"
 #include "libavutil/pixdesc.h"
@@ -53,7 +54,7 @@ static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
     if (ret < 0)
         return ret;
 
-    if ((ret = ff_alloc_packet2(avctx, pkt, ret, ret)) < 0)
+    if ((ret = ff_get_encode_buffer(avctx, pkt, ret, 0)) < 0)
         return ret;
     if ((ret = av_image_copy_to_buffer(pkt->data, pkt->size,
                                        (const uint8_t **)frame->data, frame->linesize,
@@ -85,6 +86,7 @@ const AVCodec ff_rawvideo_encoder = {
     .long_name      = NULL_IF_CONFIG_SMALL("raw video"),
     .type           = AVMEDIA_TYPE_VIDEO,
     .id             = AV_CODEC_ID_RAWVIDEO,
+    .capabilities   = AV_CODEC_CAP_DR1,
     .init           = raw_encode_init,
     .encode2        = raw_encode,
 };
-- 
2.27.0



More information about the ffmpeg-devel mailing list