vf_d3d11vpp: make missing deinterlacing caps non-fatal

Instead, warn.
This commit is contained in:
wm4 2016-06-16 17:17:54 +02:00
parent 1878a4655d
commit 36f8d41702
1 changed files with 2 additions and 3 deletions

View File

@ -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)) {