This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/af_biquads: clip gain picked from command to sane values
tags/n4.2
Paul B Mahol
6 years ago
parent
7b2d39fc27
commit
034a9d2507
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/af_biquads.c
+ 1
- 1
libavfilter/af_biquads.c
View File
@@ -538,7 +538,7 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar
return AVERROR(EINVAL);
}
s->gain = gain;
s->gain =
av_clipd(
gain
, -900, 900)
;
} else if (!strcmp(cmd, "mix") || !strcmp(cmd, "m")) {
double mix;
Write
Preview
Loading…
Cancel
Save