summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpavelxdd <pavel.otchertsov@gmail.com>2016-11-24 15:11:44 +0300
committerwm4 <wm4@nowhere>2016-11-24 14:42:30 +0100
commite89382f5f6c42cc5f4872aa4135b69bc3f09cccf (patch)
tree51eb8e07d0236233211733b8a628cce0f7e15f28
parent7eacaf51f80a081177b74580105cb22d5ad0c877 (diff)
downloadmpv-e89382f5f6c42cc5f4872aa4135b69bc3f09cccf.tar.bz2
mpv-e89382f5f6c42cc5f4872aa4135b69bc3f09cccf.tar.xz
vo_opengl: hwdec_cuda: fix crash when trying to use hwdec=cuda if cuda SDK is not present
If CUDA SDK wasn't installed, mpv crashed immediately with the message "Failed to load CUDA symbols"
-rw-r--r--video/out/opengl/hwdec_cuda.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/opengl/hwdec_cuda.c b/video/out/opengl/hwdec_cuda.c
index 266714a972..dfb55e8ce0 100644
--- a/video/out/opengl/hwdec_cuda.c
+++ b/video/out/opengl/hwdec_cuda.c
@@ -155,6 +155,7 @@ static int cuda_create(struct gl_hwdec *hw)
bool loaded = cuda_load();
if (!loaded) {
MP_ERR(hw, "Failed to load CUDA symbols\n");
+ return -1;
}
ret = CHECK_CU(cuInit(0));