[FFmpeg-devel] [PATCH] hwcontext_opencl: Use correct function to enumerate devices

Mark Thompson sw at jkqxz.net
Mon Nov 26 00:07:45 EET 2018


---
 libavutil/hwcontext_opencl.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavutil/hwcontext_opencl.c b/libavutil/hwcontext_opencl.c
index e6cef74269..6a26354c87 100644
--- a/libavutil/hwcontext_opencl.c
+++ b/libavutil/hwcontext_opencl.c
@@ -542,9 +542,9 @@ static int opencl_device_create_internal(AVHWDeviceContext *hwdev,
                 continue;
         }
 
-        err = opencl_enumerate_devices(hwdev, platforms[p], platform_name,
-                                       &nb_devices, &devices,
-                                       selector->context);
+        err = selector->enumerate_devices(hwdev, platforms[p], platform_name,
+                                          &nb_devices, &devices,
+                                          selector->context);
         if (err < 0)
             continue;
 
-- 
2.19.1



More information about the ffmpeg-devel mailing list