mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/avf_showcwt: fix logic mistake
This commit is contained in:
parent
fe196fd29a
commit
e69909342e
@ -363,7 +363,7 @@ static int draw(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
|
||||
switch (mode) {
|
||||
case 4:
|
||||
{
|
||||
const AVComplexFloat *src2 = ((const AVComplexFloat *)s->ch_out->extended_data[FFMAX(1, s->nb_channels - 1)]) +
|
||||
const AVComplexFloat *src2 = ((const AVComplexFloat *)s->ch_out->extended_data[FFMIN(1, s->nb_channels - 1)]) +
|
||||
y * ihop_size + ihop_index;
|
||||
float z, u, v;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user