[FFmpeg-devel] [PATCH]libavutil & opencl: remove opencl default device type

highgod0401 highgod0401 at gmail.com
Mon Dec 2 01:56:00 CET 2013






highgod0401

From: Lenny Wang
Date: 2013-11-30 15:27
To: FFmpeg development discussions and patches
Subject: [FFmpeg-devel] [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()

---
 libavutil/opencl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/opencl.c b/libavutil/opencl.c
index ae4c476..8654c25 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;

Looks good to me, thanks
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel at ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


More information about the ffmpeg-devel mailing list