[FFmpeg-devel] [PATCH] avfilter/af_afftfilt: fix the overlap buffer size (PR #20933)

2025-11-16 Thread nots1dd via ffmpeg-devel
PR #20933 opened by nots1dd URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20933 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20933.patch >From what I understand, we only need to be moving N bytes as window_size - s->hop_size after inverse fft to the buffer for overlap. Currently the c

[FFmpeg-devel] [PATCH] avfilter/af_afftfilt: fix the overlap buffer size

2025-11-16 Thread nots1dd via ffmpeg-devel
>From what I understand, we only need to be moving N bytes as window_size - s->hop_size after inverse fft to the buffer for overlap. Currently the compiler throws a warning regarding possible overflow and this patch fixs it. --- libavfilter/af_afftfilt.c | 3 ++- 1 file changed, 2 insertions(+), 1