f_auto_filters: use bwdif_cuda for deinterlacing with cuda hwdec

Followup to 45f822593f. vulkan hwdec uses
bwdif_vulkan so no reason to not make cuda also match.
This commit is contained in:
Dudemanguy 2024-01-21 12:59:55 -06:00
parent 52cabca4e5
commit 0008858408
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ static void deint_process(struct mp_filter *f)
} else if (img->imgfmt == IMGFMT_CUDA) {
char *args[] = {"mode", "send_field", NULL};
p->sub.filter =
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "yadif_cuda", args);
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "bwdif_cuda", args);
#if HAVE_VULKAN_INTEROP
} else if (img->imgfmt == IMGFMT_VULKAN) {
char *args[] = {"mode", "send_field", NULL};