@@ -362,13 +362,19 @@ static int bwdif_vulkan_config_output(AVFilterLink *outlink)
outlink->frame_rate = av_mul_q(avctx->inputs[0]->frame_rate,
(AVRational){2, 1});
- if (outlink->w < 4 || outlink->h < 4) {
- av_log(avctx, AV_LOG_ERROR, "Video of less than 4 columns or lines is not "
- "supported\n");
+ const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(vkctx->frames->sw_format);
+
+ int h = link->h;
+ int w = link->w;
+ int h_chroma = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
+ int w_chroma = AV_CEIL_RSHIFT(w, desc->log2_chroma_w);
+
+ if (w < 4 || w_chroma < 4 || h < 4 || h_chroma < 4) {
+ av_log(ctx, AV_LOG_ERROR, "Video with planes less than 4 columns or lines is not supported\n");
return AVERROR(EINVAL);
}
- y->csp = av_pix_fmt_desc_get(vkctx->frames->sw_format);
+ y->csp = desc;
y->filter = bwdif_vulkan_filter_frame;
return init_filter(avctx);