You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
745B

  1. @chapter OpenCL Options
  2. @c man begin OPENCL OPTIONS
  3. When FFmpeg is configured with @code{--enable-opencl}, it is possible
  4. to set the options to set in the global OpenCL context. The list of
  5. supported options follows:
  6. @table @option
  7. @item build_options
  8. Set build options which used to compiled kernels, see reference "OpenCL Specification Version: 1.2 chapter 5.6.4"
  9. @item platform_idx
  10. Select platform to run OpenCL code, the platform_idx is the index of platform
  11. in the device list which can be obtained with av_opencl_get_device_list().
  12. @item device_idx
  13. Select device to run OpenCL code, the device_idx is the index of device in
  14. the device list which can be obtained with av_opencl_get_device_list().
  15. @end table
  16. @c man end OPENCL OPTIONS