From 9708248eb359037fc3858c464389e8bc5a3161cd Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 27 Dec 2017 04:54:15 +0100 Subject: vf_vdpaupp: fix error handling and software input mode Crashed when no vdpau device was loaded. Also there was a mistake of not setting p->ctx, which broke software surface input mode. This was not found before, because p->ctx is not needed for anything else. Fixes #5294. --- video/filter/vf_vdpaupp.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/video/filter/vf_vdpaupp.c b/video/filter/vf_vdpaupp.c index de1979cf05..391dc9e6b1 100644 --- a/video/filter/vf_vdpaupp.c +++ b/video/filter/vf_vdpaupp.c @@ -183,18 +183,22 @@ static int vf_open(vf_instance_t *vf) hwdec_devices_request_all(vf->hwdec_devs); AVBufferRef *ref = hwdec_devices_get_lavc(vf->hwdec_devs, AV_HWDEVICE_TYPE_VDPAU); - struct mp_vdpau_ctx *ctx = mp_vdpau_get_ctx_from_av(ref); + if (!ref) + goto error; + p->ctx = mp_vdpau_get_ctx_from_av(ref); av_buffer_unref(&ref); - if (!ctx) { - uninit(vf); - return 0; - } + if (!p->ctx) + goto error; p->def_deintmode = p->opts.deint; if (!p->deint_enabled) p->opts.deint = 0; return 1; + +error: + uninit(vf); + return 0; } #define OPT_BASE_STRUCT struct vf_priv_s -- cgit v1.2.3