]> git.sesse.net Git - ffmpeg/blob - doc/opencl.texi
lavfi/curves: make possible to customize presets.
[ffmpeg] / doc / opencl.texi
1 @chapter OpenCL Options
2 @c man begin OPENCL OPTIONS
3
4 When FFmpeg is configured with @code{--enable-opencl}, it is possible
5 to set the options to set in the global OpenCL context. The list of
6 supported options follows:
7
8 @table @option
9 @item build_options
10 Set build options which used to compiled kernels, see reference "OpenCL Specification Version: 1.2 chapter 5.6.4"
11
12 @item platform_idx
13 Select platform to run OpenCL code, the platform_idx is the index of platform
14 in the device list which can be obtained with av_opencl_get_device_list().
15
16 @item device_idx
17 Select device to run OpenCL code, the device_idx is the index of device in
18 the device list which can be obtained with av_opencl_get_device_list().
19
20 @end table
21
22 @c man end OPENCL OPTIONS