Browse Source

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 <stefasab@gmail.com>
Reviewed-by: highgod0401 <highgod0401@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Lenny Wang Michael Niedermayer 12 years ago
parent
commit
7b2534b0ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/opencl.c

+ 1
- 1
libavutil/opencl.c View File

@@ -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;


Loading…
Cancel
Save