mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-26 11:53:40 +08:00
showwaves: fix first sample of frame test.
Avoids a huge memleak when n != 1.
This commit is contained in:
@@ -196,7 +196,7 @@ static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamples)
|
||||
|
||||
/* draw data in the buffer */
|
||||
for (i = 0; i < nb_samples; i++) {
|
||||
if (showwaves->buf_idx == 0) {
|
||||
if (showwaves->buf_idx == 0 && showwaves->sample_count_mod == 0) {
|
||||
showwaves->outpicref = outpicref =
|
||||
ff_get_video_buffer(outlink, AV_PERM_WRITE|AV_PERM_ALIGN,
|
||||
outlink->w, outlink->h);
|
||||
|
||||
Reference in New Issue
Block a user