You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/af_aiir: fix typo which may cause overread
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -306,7 +306,7 @@ static int expand(AVFilterContext *ctx, double *pz, int nb, double *coeffs)
|
||||
for (i = 0; i < nb + 1; i++) {
|
||||
if (fabs(coeffs[2 * i + 1]) > DBL_EPSILON) {
|
||||
av_log(ctx, AV_LOG_ERROR, "coeff: %lf of z^%d is not real; poles/zeros are not complex conjugates.\n",
|
||||
coeffs[2 * i + i], i);
|
||||
coeffs[2 * i + 1], i);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user