[FFmpeg-cvslog] avcodec/amfnec: allocate packets using av_new_packet()

James Almer git at videolan.org
Wed Nov 20 00:44:57 EET 2019


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Nov 19 19:42:48 2019 -0300| [fdf46b4a6b36dd8551adc29c455326b1a13b4acb] | committer: James Almer

avcodec/amfnec: allocate packets using av_new_packet()

This ensures they will be reference counted, as required by the AVCodec.receive_packet()
API.

Should fix ticket #8386.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fdf46b4a6b36dd8551adc29c455326b1a13b4acb
---

 libavcodec/amfenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/amfenc.c b/libavcodec/amfenc.c
index f66b95645e..876fddd2b6 100644
--- a/libavcodec/amfenc.c
+++ b/libavcodec/amfenc.c
@@ -451,7 +451,7 @@ static int amf_copy_buffer(AVCodecContext *avctx, AVPacket *pkt, AMFBuffer *buff
     int64_t          timestamp = AV_NOPTS_VALUE;
     int64_t          size = buffer->pVtbl->GetSize(buffer);
 
-    if ((ret = ff_alloc_packet2(avctx, pkt, size, 0)) < 0) {
+    if ((ret = av_new_packet(pkt, size)) < 0) {
         return ret;
     }
     memcpy(pkt->data, buffer->pVtbl->GetNative(buffer), size);



More information about the ffmpeg-cvslog mailing list