From fdf46b4a6b36dd8551adc29c455326b1a13b4acb Mon Sep 17 00:00:00 2001 From: James Almer Date: Tue, 19 Nov 2019 19:42:48 -0300 Subject: [PATCH] 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 --- 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);