|
FFmpeg
4.0
|
#include "libavutil/common.h"#include "libavutil/imgutils.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "libavutil/avstring.h"#include "avfilter.h"#include "internal.h"#include "opencl.h"#include "opencl_source.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | ConvolutionOpenCLContext |
Macros | |
| #define | OFFSET(x) offsetof(ConvolutionOpenCLContext, x) |
| #define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Functions | |
| static int | convolution_opencl_init (AVFilterContext *avctx) |
| static int | convolution_opencl_make_filter_params (AVFilterContext *avctx) |
| static int | convolution_opencl_filter_frame (AVFilterLink *inlink, AVFrame *input) |
| static av_cold void | convolution_opencl_uninit (AVFilterContext *avctx) |
| AVFILTER_DEFINE_CLASS (convolution_opencl) | |
Variables | |
| static const AVOption | convolution_opencl_options [] |
| static const AVFilterPad | convolution_opencl_inputs [] |
| static const AVFilterPad | convolution_opencl_outputs [] |
| AVFilter | ff_vf_convolution_opencl |
| #define OFFSET | ( | x | ) | offsetof(ConvolutionOpenCLContext, x) |
Definition at line 318 of file vf_convolution_opencl.c.
| #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 319 of file vf_convolution_opencl.c.
|
static |
Definition at line 53 of file vf_convolution_opencl.c.
Referenced by convolution_opencl_filter_frame().
|
static |
Definition at line 93 of file vf_convolution_opencl.c.
Referenced by convolution_opencl_filter_frame().
|
static |
Definition at line 166 of file vf_convolution_opencl.c.
|
static |
Definition at line 291 of file vf_convolution_opencl.c.
| AVFILTER_DEFINE_CLASS | ( | convolution_opencl | ) |
|
static |
Definition at line 320 of file vf_convolution_opencl.c.
|
static |
Definition at line 338 of file vf_convolution_opencl.c.
|
static |
Definition at line 348 of file vf_convolution_opencl.c.
| AVFilter ff_vf_convolution_opencl |
Definition at line 357 of file vf_convolution_opencl.c.
1.8.13