summaryrefslogtreecommitdiff
path: root/libavfilter/vf_mestimate.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-06-05 20:04:45 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-07-20 17:16:13 +0200
commit06af6e101bbd04e8ecc5337bc3b6894a5e058e14 (patch)
tree3cf9b255ef03beabbe1924dd4bfba5c2ea0fe770 /libavfilter/vf_mestimate.c
parent012804d2e9087a65f557e18ef8171a5c6b779f6a (diff)
avfilter/vf_mestimate: Check b_count
Fixes: left shift of negative value -1 Fixes: Ticket8270 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/vf_mestimate.c')
-rw-r--r--libavfilter/vf_mestimate.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/vf_mestimate.c b/libavfilter/vf_mestimate.c
index daf7fde95f..f1935244c1 100644
--- a/libavfilter/vf_mestimate.c
+++ b/libavfilter/vf_mestimate.c
@@ -100,6 +100,9 @@ static int config_input(AVFilterLink *inlink)
s->b_height = inlink->h >> s->log2_mb_size;
s->b_count = s->b_width * s->b_height;
+ if (s->b_count == 0)
+ return AVERROR(EINVAL);
+
for (i = 0; i < 3; i++) {
s->mv_table[i] = av_mallocz_array(s->b_count, sizeof(*s->mv_table[0]));
if (!s->mv_table[i])