You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/af_biquads: make sure that biquad filter still works
This commit is contained in:
@@ -440,7 +440,7 @@ static int config_filter(AVFilterLink *outlink, int reset)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (w0 > M_PI || w0 <= 0.)
|
if ((w0 > M_PI || w0 <= 0.) && (s->filter_type != biquad))
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
switch (s->width_type) {
|
switch (s->width_type) {
|
||||||
|
Reference in New Issue
Block a user