]> git.sesse.net Git - ffmpeg/blob - libavfilter/opencl.h
0b06232ade5174ca42799a3852463e811f3f79d0
[ffmpeg] / libavfilter / opencl.h
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #ifndef AVFILTER_OPENCL_H
20 #define AVFILTER_OPENCL_H
21
22 // The intended target is OpenCL 1.2, so disable warnings for APIs
23 // deprecated after that.  This primarily applies to clCreateCommandQueue(),
24 // we can't use the replacement clCreateCommandQueueWithProperties() because
25 // it was introduced in OpenCL 2.0.
26 #define CL_USE_DEPRECATED_OPENCL_1_2_APIS
27
28 #include "libavutil/bprint.h"
29 #include "libavutil/buffer.h"
30 #include "libavutil/hwcontext.h"
31 #include "libavutil/hwcontext_opencl.h"
32 #include "libavutil/pixfmt.h"
33
34 #include "avfilter.h"
35
36 typedef struct OpenCLFilterContext {
37     const AVClass     *class;
38
39     AVBufferRef       *device_ref;
40     AVHWDeviceContext *device;
41     AVOpenCLDeviceContext *hwctx;
42
43     cl_program         program;
44
45     enum AVPixelFormat output_format;
46     int                output_width;
47     int                output_height;
48 } OpenCLFilterContext;
49
50
51 /**
52  * set argument to specific Kernel.
53  * This macro relies on usage of local label "fail" and variables:
54  * avctx, cle and err.
55  */
56 #define CL_SET_KERNEL_ARG(kernel, arg_num, type, arg)          \
57     cle = clSetKernelArg(kernel, arg_num, sizeof(type), arg);  \
58     if (cle != CL_SUCCESS) {                                   \
59         av_log(avctx, AV_LOG_ERROR, "Failed to set kernel "    \
60                "argument %d: error %d.\n", arg_num, cle);      \
61         err = AVERROR(EIO);                                    \
62         goto fail;                                             \
63     }
64
65 /**
66  * A helper macro to handle OpenCL errors. It will assign errcode to
67  * variable err, log error msg, and jump to fail label on error.
68  */
69 #define CL_FAIL_ON_ERROR(errcode, ...) do {                    \
70         if (cle != CL_SUCCESS) {                               \
71             av_log(avctx, AV_LOG_ERROR, __VA_ARGS__);          \
72             err = errcode;                                     \
73             goto fail;                                         \
74         }                                                      \
75     } while(0)
76
77 /**
78  * Return that all inputs and outputs support only AV_PIX_FMT_OPENCL.
79  */
80 int ff_opencl_filter_query_formats(AVFilterContext *avctx);
81
82 /**
83  * Check that the input link contains a suitable hardware frames
84  * context and extract the device from it.
85  */
86 int ff_opencl_filter_config_input(AVFilterLink *inlink);
87
88 /**
89  * Create a suitable hardware frames context for the output.
90  */
91 int ff_opencl_filter_config_output(AVFilterLink *outlink);
92
93 /**
94  * Initialise an OpenCL filter context.
95  */
96 int ff_opencl_filter_init(AVFilterContext *avctx);
97
98 /**
99  * Uninitialise an OpenCL filter context.
100  */
101 void ff_opencl_filter_uninit(AVFilterContext *avctx);
102
103 /**
104  * Load a new OpenCL program from strings in memory.
105  *
106  * Creates a new program and compiles it for the current device.
107  * Will log any build errors if compilation fails.
108  */
109 int ff_opencl_filter_load_program(AVFilterContext *avctx,
110                                   const char **program_source_array,
111                                   int nb_strings);
112
113 /**
114  * Load a new OpenCL program from a file.
115  *
116  * Same as ff_opencl_filter_load_program(), but from a file.
117  */
118 int ff_opencl_filter_load_program_from_file(AVFilterContext *avctx,
119                                             const char *filename);
120
121 /**
122  * Find the work size needed needed for a given plane of an image.
123  */
124 int ff_opencl_filter_work_size_from_image(AVFilterContext *avctx,
125                                           size_t *work_size,
126                                           AVFrame *frame, int plane,
127                                           int block_alignment);
128 /**
129  * Print a 3x3 matrix into a buffer as __constant array, which could
130  * be included in an OpenCL program.
131 */
132
133 void ff_opencl_print_const_matrix_3x3(AVBPrint *buf, const char *name_str,
134                                       double mat[3][3]);
135
136 #endif /* AVFILTER_OPENCL_H */