Explorar el Código

hwcontext_opencl: Remove the opencl_device_init in opencl_device_derive

In opencl device derived case, don't need to call opencl_device_init.

Signed-off-by: Jun Zhao <mypopydev@gmail.com>
Jun Zhao hace 7 años
padre
commit
e6ac328b79
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      libavutil/hwcontext_opencl.c

+ 1 - 4
libavutil/hwcontext_opencl.c

@@ -1361,10 +1361,7 @@ static int opencl_device_derive(AVHWDeviceContext *hwdev,
         break;
     }
 
-    if (err < 0)
-        return err;
-
-    return opencl_device_init(hwdev);
+    return err;
 }
 
 static int opencl_get_plane_format(enum AVPixelFormat pixfmt,