mirror of https://github.com/mpv-player/mpv
f_auto_filters: don't set interlaced-only for userdeint
Not wanted apparently: https://github.com/mpv-player/mpv/pull/14822#discussion_r1758134111
This commit is contained in:
parent
6133033e33
commit
e41ee0524c
|
@ -94,7 +94,6 @@ static void deint_process(struct mp_filter *f)
|
||||||
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "vdpaupp", args);
|
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "vdpaupp", args);
|
||||||
} else if (img->imgfmt == IMGFMT_D3D11) {
|
} else if (img->imgfmt == IMGFMT_D3D11) {
|
||||||
char *args[] = {"deint", "yes",
|
char *args[] = {"deint", "yes",
|
||||||
"interlaced-only", "yes",
|
|
||||||
"parity", field_parity, NULL};
|
"parity", field_parity, NULL};
|
||||||
p->sub.filter =
|
p->sub.filter =
|
||||||
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "d3d11vpp", args);
|
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "d3d11vpp", args);
|
||||||
|
@ -110,7 +109,6 @@ static void deint_process(struct mp_filter *f)
|
||||||
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "bwdif_vulkan", args);
|
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "bwdif_vulkan", args);
|
||||||
} else if (img->imgfmt == IMGFMT_VAAPI) {
|
} else if (img->imgfmt == IMGFMT_VAAPI) {
|
||||||
char *args[] = {"deint", "motion-adaptive",
|
char *args[] = {"deint", "motion-adaptive",
|
||||||
"interlaced-only", "yes",
|
|
||||||
"parity", field_parity, NULL};
|
"parity", field_parity, NULL};
|
||||||
p->sub.filter =
|
p->sub.filter =
|
||||||
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "vavpp", args);
|
mp_create_user_filter(f, MP_OUTPUT_CHAIN_VIDEO, "vavpp", args);
|
||||||
|
|
Loading…
Reference in New Issue