[FFmpeg-cvslog] avformat/flacenc: Avoid stack packet

Andreas Rheinhardt git at videolan.org
Sun Oct 3 23:49:06 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Mar 18 22:00:39 2021 +0100| [f42a2b13496e6a5286164fd7241d64aebf74ec4e] | committer: Andreas Rheinhardt

avformat/flacenc: Avoid stack packet

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

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

 libavformat/flacenc.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
index 44c9341493..f884e5d2c8 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 = ffformatcontext(s)->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;
 }



More information about the ffmpeg-cvslog mailing list