From 39406ea321ce8f4c52944fa799f90ab984fed4eb Mon Sep 17 00:00:00 2001 From: highgod0401 Date: Thu, 4 Apr 2013 20:09:17 +0800 Subject: [PATCH] avutil/opencl: add check for the program number to create kernel Signed-off-by: Michael Niedermayer --- libavutil/opencl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavutil/opencl.c b/libavutil/opencl.c index 799425e8a5..e618829a70 100644 --- a/libavutil/opencl.c +++ b/libavutil/opencl.c @@ -225,6 +225,11 @@ int av_opencl_create_kernel(AVOpenCLKernelEnv *env, const char *kernel_name) ret = AVERROR(EINVAL); goto end; } + if (gpu_env.program_count == 0) { + av_log(&openclutils, AV_LOG_ERROR, "Program count of OpenCL is 0, can not create kernel\n"); + ret = AVERROR(EINVAL); + goto end; + } for (i = 0; i < gpu_env.program_count; i++) { env->kernel = clCreateKernel(gpu_env.programs[i], kernel_name, &status); if (status == CL_SUCCESS)