|
FFmpeg
|
#include <float.h>#include "libavutil/common.h"#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "internal.h"#include "opencl.h"#include "opencl_source.h"#include "video.h"#include "transpose.h"Go to the source code of this file.
Data Structures | |
| struct | TransposeOpenCLContext |
Macros | |
| #define | OFFSET(x) offsetof(TransposeOpenCLContext, x) |
| #define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Functions | |
| static int | transpose_opencl_init (AVFilterContext *avctx) |
| static int | transpose_opencl_config_output (AVFilterLink *outlink) |
| static AVFrame * | get_video_buffer (AVFilterLink *inlink, int w, int h) |
| static int | transpose_opencl_filter_frame (AVFilterLink *inlink, AVFrame *input) |
| static av_cold void | transpose_opencl_uninit (AVFilterContext *avctx) |
| AVFILTER_DEFINE_CLASS (transpose_opencl) | |
Variables | |
| static const AVOption | transpose_opencl_options [] |
| static const AVFilterPad | transpose_opencl_inputs [] |
| static const AVFilterPad | transpose_opencl_outputs [] |
| const AVFilter | ff_vf_transpose_opencl |
| #define OFFSET | ( | x | ) | offsetof(TransposeOpenCLContext, x) |
Definition at line 235 of file vf_transpose_opencl.c.
| #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 236 of file vf_transpose_opencl.c.
|
static |
Definition at line 41 of file vf_transpose_opencl.c.
Referenced by transpose_opencl_filter_frame().
|
static |
Definition at line 72 of file vf_transpose_opencl.c.
|
static |
Definition at line 124 of file vf_transpose_opencl.c.
|
static |
Definition at line 133 of file vf_transpose_opencl.c.
|
static |
Definition at line 213 of file vf_transpose_opencl.c.
| AVFILTER_DEFINE_CLASS | ( | transpose_opencl | ) |
|
static |
Definition at line 237 of file vf_transpose_opencl.c.
|
static |
Definition at line 255 of file vf_transpose_opencl.c.
|
static |
Definition at line 265 of file vf_transpose_opencl.c.
| const AVFilter ff_vf_transpose_opencl |
Definition at line 273 of file vf_transpose_opencl.c.
1.8.17