diff mbox series

[FFmpeg-devel,v2,2/4] avcodec/mmaldec: use avpkt from DecodeSimpleContext

Message ID 20210924090438.11954-3-cyph1984@gmail.com
State New
Headers show
Series Switch mmaldec to decoupled dataflow | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished

Commit Message

Ming Shun Ho Sept. 24, 2021, 9:04 a.m. UTC
Use spare packet allocated in DecodeSimpleContext to handle packet
submission into ffmmal_add_packet.

Signed-off-by: Ho Ming Shun <cyph1984@gmail.com>
---
 libavcodec/mmaldec.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/mmaldec.c b/libavcodec/mmaldec.c
index d4788b33f3..a8a568d239 100644
--- a/libavcodec/mmaldec.c
+++ b/libavcodec/mmaldec.c
@@ -781,10 +781,12 @@  done:
 static int ffmmal_receive_frame(AVCodecContext *avctx, AVFrame *frame)
 {
     MMALDecodeContext *ctx = avctx->priv_data;
-    AVPacket avpkt = {0};
     int ret = 0;
     int got_frame = 0;
 
+    // use spare packet from DecodeSimpleContext meant for simple API
+    AVPacket *avpkt = avctx->internal->ds.in_pkt;
+
     if (avctx->extradata_size && !ctx->extradata_sent) {
         AVPacket pkt = {0};
         av_init_packet(&pkt);
@@ -795,9 +797,9 @@  static int ffmmal_receive_frame(AVCodecContext *avctx, AVFrame *frame)
             return ret;
     }
 
-    ret = ff_decode_get_packet(avctx, &avpkt);
+    ret = ff_decode_get_packet(avctx, avpkt);
     if(ret == 0) {
-        if ((ret = ffmmal_add_packet(avctx, &avpkt, 0)) < 0)
+        if ((ret = ffmmal_add_packet(avctx, avpkt, 0)) < 0)
             return ret;
     } else if(ret < 0 && !(ret == AVERROR(EAGAIN)))
         return ret;