mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/opencl: is_compiled flag not being cleared in av_opencl_uninit
When OpenCL kernels are compiled, is_compiled flag is being set for each
kernel. But, in opencl uninit, this flag is not being cleared.
This causes an error when an OpenCL kernel is tried on different OpenCL
devices on same platform.
Here is the patch with a fix
Reviewed-by; Wei Gao <highgod0401@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 0f2359b869
)
This commit is contained in:
parent
e5cc73e0a5
commit
d0aa3d13fa
|
@ -611,6 +611,9 @@ void av_opencl_uninit(void)
|
|||
}
|
||||
opencl_ctx.context = NULL;
|
||||
}
|
||||
for (i = 0; i < opencl_ctx.kernel_code_count; i++) {
|
||||
opencl_ctx.kernel_code[i].is_compiled = 0;
|
||||
}
|
||||
free_device_list(&opencl_ctx.device_list);
|
||||
end:
|
||||
if (opencl_ctx.init_count <= 0)
|
||||
|
|
Loading…
Reference in New Issue