summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf_d3d11vpp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/video/filter/vf_d3d11vpp.c b/video/filter/vf_d3d11vpp.c
index 7d1daa26e7..63cbe471d4 100644
--- a/video/filter/vf_d3d11vpp.c
+++ b/video/filter/vf_d3d11vpp.c
@@ -179,11 +179,10 @@ static int recreate_video_proc(struct vf_instance *vf)
}
if (rindex < 0) {
- MP_ERR(vf, "No video processor found.\n");
- goto fail;
+ MP_WARN(vf, "No video deinterlacing processor found.\n");
+ rindex = 0;
}
- // Assume RateConversionIndex==0 always works fine for us.
hr = ID3D11VideoDevice_CreateVideoProcessor(p->video_dev, p->vp_enum, rindex,
&p->video_proc);
if (FAILED(hr)) {