Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKelly Ledford <kelly.ledford@intel.com>2017-12-12 22:31:23 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2018-01-28 17:31:13 +0300
commita3832486e4f152d9f9660ecf812ee45b03d784f1 (patch)
treeddd608a41dbce41602eaf81f155ab2534b586af8 /libavfilter
parent9aa0ed850b77fe46d5b766329f45deb9150cea10 (diff)
libavfilter/af_dcshift.c: Fixed repeated spelling error
'threshhold' should be 'threshold' Signed-off-by: Kelly Ledford <kelly.ledford@intel.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit bc219082bb04b9a4725bfe7e78ce0950244e6e84) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/af_dcshift.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavfilter/af_dcshift.c b/libavfilter/af_dcshift.c
index 6d33daee0b..e007efe05e 100644
--- a/libavfilter/af_dcshift.c
+++ b/libavfilter/af_dcshift.c
@@ -28,7 +28,7 @@
typedef struct DCShiftContext {
const AVClass *class;
double dcshift;
- double limiterthreshhold;
+ double limiterthreshold;
double limitergain;
} DCShiftContext;
@@ -47,7 +47,7 @@ static av_cold int init(AVFilterContext *ctx)
{
DCShiftContext *s = ctx->priv;
- s->limiterthreshhold = INT32_MAX * (1.0 - (fabs(s->dcshift) - s->limitergain));
+ s->limiterthreshold = INT32_MAX * (1.0 - (fabs(s->dcshift) - s->limitergain));
return 0;
}
@@ -111,14 +111,14 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
d = src[j];
- if (d > s->limiterthreshhold && dcshift > 0) {
- d = (d - s->limiterthreshhold) * s->limitergain /
- (INT32_MAX - s->limiterthreshhold) +
- s->limiterthreshhold + dcshift;
- } else if (d < -s->limiterthreshhold && dcshift < 0) {
- d = (d + s->limiterthreshhold) * s->limitergain /
- (INT32_MAX - s->limiterthreshhold) -
- s->limiterthreshhold + dcshift;
+ if (d > s->limiterthreshold && dcshift > 0) {
+ d = (d - s->limiterthreshold) * s->limitergain /
+ (INT32_MAX - s->limiterthreshold) +
+ s->limiterthreshold + dcshift;
+ } else if (d < -s->limiterthreshold && dcshift < 0) {
+ d = (d + s->limiterthreshold) * s->limitergain /
+ (INT32_MAX - s->limiterthreshold) -
+ s->limiterthreshold + dcshift;
} else {
d = dcshift * INT32_MAX + d;
}