[FFmpeg-devel] [PATCH 25/34] avformat/flacenc: Avoid stack packet

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Mon Sep 6 05:27:53 EEST 2021


Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
 libavformat/flacenc.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
index 44c9341493..ab57a1e45a 100644
--- a/libavformat/flacenc.c
+++ b/libavformat/flacenc.c
@@ -299,7 +299,7 @@ static int flac_write_audio_packet(struct AVFormatContext *s, AVPacket *pkt)
 static int flac_queue_flush(AVFormatContext *s)
 {
     FlacMuxerContext *c = s->priv_data;
-    AVPacket pkt;
+    AVPacket *const pkt = s->internal->pkt;
     int ret, write = 1;
 
     ret = flac_finish_header(s);
@@ -307,10 +307,10 @@ static int flac_queue_flush(AVFormatContext *s)
         write = 0;
 
     while (c->queue) {
-        avpriv_packet_list_get(&c->queue, &c->queue_end, &pkt);
-        if (write && (ret = flac_write_audio_packet(s, &pkt)) < 0)
+        avpriv_packet_list_get(&c->queue, &c->queue_end, pkt);
+        if (write && (ret = flac_write_audio_packet(s, pkt)) < 0)
             write = 0;
-        av_packet_unref(&pkt);
+        av_packet_unref(pkt);
     }
     return ret;
 }
-- 
2.30.2



More information about the ffmpeg-devel mailing list