diff options
-rw-r--r-- | video/out/opengl/hwdec_cuda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/opengl/hwdec_cuda.c b/video/out/opengl/hwdec_cuda.c index dfb55e8ce0..c3d2e34ae3 100644 --- a/video/out/opengl/hwdec_cuda.c +++ b/video/out/opengl/hwdec_cuda.c @@ -145,7 +145,7 @@ static int cuda_create(struct gl_hwdec *hw) int ret = 0, eret = 0; if (hw->gl->version < 210 && hw->gl->es < 300) { - MP_ERR(hw, "need OpenGL >= 2.1 or OpenGL-ES >= 3.0\n"); + MP_VERBOSE(hw, "need OpenGL >= 2.1 or OpenGL-ES >= 3.0\n"); return -1; } @@ -154,7 +154,7 @@ static int cuda_create(struct gl_hwdec *hw) bool loaded = cuda_load(); if (!loaded) { - MP_ERR(hw, "Failed to load CUDA symbols\n"); + MP_VERBOSE(hw, "Failed to load CUDA symbols\n"); return -1; } |