ffmpeg | branch: release/4.2 | James Almer <jamr...@gmail.com> | Tue Nov 19 
19:42:48 2019 -0300| [57365f67a0701473bf012c24fb1a7d045471a682] | 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 <jamr...@gmail.com>
(cherry picked from commit fdf46b4a6b36dd8551adc29c455326b1a13b4acb)

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

 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);

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to