]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_unsharp: check if scalebits is too high
authorPaul B Mahol <onemda@gmail.com>
Sat, 17 Sep 2016 11:47:17 +0000 (13:47 +0200)
committerPaul B Mahol <onemda@gmail.com>
Sat, 17 Sep 2016 11:57:45 +0000 (13:57 +0200)
Otherwise filter would happily give overflows and produce useless output.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
libavfilter/vf_unsharp.c

index d264e24e3c7b307940ec9ee049ad2f4defef445d..aea98509ae85a4fa3dcca3f8e9f6a6c22aac6193 100644 (file)
@@ -141,6 +141,10 @@ static av_cold int init(AVFilterContext *ctx)
     set_filter_param(&s->luma,   s->lmsize_x, s->lmsize_y, s->lamount);
     set_filter_param(&s->chroma, s->cmsize_x, s->cmsize_y, s->camount);
 
+    if (s->luma.scalebits >= 26 || s->chroma.scalebits >= 26) {
+        av_log(ctx, AV_LOG_ERROR, "luma or chroma matrix size too big\n");
+        return AVERROR(EINVAL);
+    }
     s->apply_unsharp = apply_unsharp_c;
     if (!CONFIG_OPENCL && s->opencl) {
         av_log(ctx, AV_LOG_ERROR, "OpenCL support was not enabled in this build, cannot be selected\n");