diff --git a/libavfilter/af_stereotools.c b/libavfilter/af_stereotools.c
index 00a0dde2815b060c3210c016d69f3046aecad2c1..8ab184df11c01715881461777375fecba667fe2a 100644
--- a/libavfilter/af_stereotools.c
+++ b/libavfilter/af_stereotools.c
@@ -110,7 +110,7 @@ static int config_input(AVFilterLink *inlink)
     StereoToolsContext *s = ctx->priv;
 
     s->length = 2 * inlink->sample_rate * 0.05;
-    if (s->length <= 1 && s->length & 1) {
+    if (s->length <= 1 || s->length & 1) {
         av_log(ctx, AV_LOG_ERROR, "sample rate is too small\n");
         return AVERROR(EINVAL);
     }