From 7b2534b0ea9220b358f6e161e1bb63af6504cdb4 Mon Sep 17 00:00:00 2001 From: Lenny Wang Date: Sat, 30 Nov 2013 01:27:57 -0600 Subject: [PATCH] libavutil & opencl: remove opencl default device type CL_DEVICE_TYPE_DEFAULT makes duplicated device entries for each platform using av_opencl_get_device_list() Reviewed-by: Stefano Sabatini Reviewed-by: highgod0401 Signed-off-by: Michael Niedermayer --- libavutil/opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/opencl.c b/libavutil/opencl.c index ae4c476396..8654c25b90 100644 --- a/libavutil/opencl.c +++ b/libavutil/opencl.c @@ -98,7 +98,7 @@ static const AVClass openclutils_class = { static OpenclContext opencl_ctx = {&openclutils_class}; -static const cl_device_type device_type[] = {CL_DEVICE_TYPE_GPU, CL_DEVICE_TYPE_CPU, CL_DEVICE_TYPE_DEFAULT}; +static const cl_device_type device_type[] = {CL_DEVICE_TYPE_GPU, CL_DEVICE_TYPE_CPU}; typedef struct { int err_code;