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

Git pushed a commit to branch master
in repository ffmpeg.

commit 82871857eb84f77aa5942102ce7ff6279e521248
Author:     Niklas Haas <[email protected]>
AuthorDate: Tue Mar 24 18:26:26 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Fri Apr 10 15:12:17 2026 +0200

    avfilter/framepool: actually use specified allocator for audio frames
    
    This bug means audio buffers were never correctly zero'd as intended by
    libavfilter/audio.c
    
    Signed-off-by: Niklas Haas <[email protected]>
---
 libavfilter/framepool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/framepool.c b/libavfilter/framepool.c
index 0259415620..15ea66cdc6 100644
--- a/libavfilter/framepool.c
+++ b/libavfilter/framepool.c
@@ -137,7 +137,7 @@ av_cold FFFramePool *ff_frame_pool_audio_init(AVBufferRef* 
(*alloc)(size_t size)
 
     if (pool->linesize[0] > SIZE_MAX - align)
         goto fail;
-    pool->pools[0] = av_buffer_pool_init(pool->linesize[0] + align, NULL);
+    pool->pools[0] = av_buffer_pool_init(pool->linesize[0] + align, alloc);
     if (!pool->pools[0])
         goto fail;
 

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

Reply via email to