diff options
author | Ashyni <jeffrey.c@tuta.io> | 2023-01-27 14:46:07 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-01-27 14:57:28 +0100 |
commit | 6869a80e76f7f597896e60a0feaa7a32b1aa57ae (patch) | |
tree | 7eba53d356f390607ac2113e12c8e4c6e6eaa609 | |
parent | c0bc804e552bf6b21ae7da9cfeefe7405e380add (diff) | |
download | ffmpeg-6869a80e76f7f597896e60a0feaa7a32b1aa57ae.tar.gz |
avfilter/vf_cropdetect: fix type for old_limit
-rw-r--r-- | libavfilter/vf_cropdetect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index 724047f864..588a38fed8 100644 --- a/libavfilter/vf_cropdetect.c +++ b/libavfilter/vf_cropdetect.c @@ -447,8 +447,8 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar char *res, int res_len, int flags) { CropDetectContext *s = ctx->priv; + float old_limit = s->limit; int ret; - int old_limit = s->limit; if ((ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags)) < 0) return ret; |