summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavfilter/vf_fade.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_fade.c b/libavfilter/vf_fade.c
index 387c128ecf..cc10b122ca 100644
--- a/libavfilter/vf_fade.c
+++ b/libavfilter/vf_fade.c
@@ -317,7 +317,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
s->factor = av_clip_uint16(s->factor);
// Invert fade_factor if Fading Out
- if (s->type == 1) {
+ if (s->type == FADE_OUT) {
s->factor=UINT16_MAX-s->factor;
}