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

James Almer git at videolan.org
Wed Nov 20 00:51:50 EET 2019


ffmpeg | branch: release/4.1 | James Almer <jamrial at gmail.com> | Tue Nov 19 19:42:48 2019 -0300| [08d3cc2f1dafe406b257d1daaae82ccae5d5378e] | 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>
(cherry picked from commit fdf46b4a6b36dd8551adc29c455326b1a13b4acb)

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

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

diff --git a/libavcodec/amfenc.c b/libavcodec/amfenc.c
index 384d8efc92..5af1cd002f 100644
--- a/libavcodec/amfenc.c
+++ b/libavcodec/amfenc.c
@@ -438,7 +438,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