You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavfi/avf_showcqt: fix error code.
Signed-off-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
b50a4ca179
commit
38155865df
@@ -723,7 +723,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
|
|||||||
s->fft_data[x] = s->fft_data[x+step];
|
s->fft_data[x] = s->fft_data[x+step];
|
||||||
s->remaining_fill += step;
|
s->remaining_fill += step;
|
||||||
}
|
}
|
||||||
return AVERROR(EOF);
|
return AVERROR_EOF;
|
||||||
}
|
}
|
||||||
|
|
||||||
remaining = insamples->nb_samples;
|
remaining = insamples->nb_samples;
|
||||||
|
Reference in New Issue
Block a user