This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 2dfe02aff8 fftools/ffmpeg_demux: free stream group reference array in 
DemuxStream
2dfe02aff8 is described below

commit 2dfe02aff861836445735735aca1d5e8ec869721
Author:     James Almer <[email protected]>
AuthorDate: Mon Jul 6 21:09:06 2026 -0300
Commit:     James Almer <[email protected]>
CommitDate: Mon Jul 6 21:09:06 2026 -0300

    fftools/ffmpeg_demux: free stream group reference array in DemuxStream
    
    Missed in 4eb56054c203a4e5139ef485ec51ffa214cb469f.
    
    Signed-off-by: James Almer <[email protected]>
---
 fftools/ffmpeg_demux.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c
index 640744b88f..8a165faf1d 100644
--- a/fftools/ffmpeg_demux.c
+++ b/fftools/ffmpeg_demux.c
@@ -1007,6 +1007,7 @@ static void ist_free(InputStream **pist)
 
     av_frame_free(&ds->decoded_params);
 
+    av_freep(&ds->dsg);
     av_bsf_free(&ds->bsf);
 
     av_freep(pist);

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to