|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/opt.h"#include "vulkan_filter.h"#include "filters.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | XFadeParameters |
| struct | XFadeVulkanContext |
Macros | |
| #define | IN_A 0 |
| #define | IN_B 1 |
| #define | IN_NB 2 |
| #define | OFFSET(x) offsetof(XFadeVulkanContext, x) |
| #define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Enumerations | |
| enum | XFadeTransitions { CUSTOM = -1, FADE, WIPELEFT, WIPERIGHT, WIPEUP, WIPEDOWN, SLIDELEFT, SLIDERIGHT, SLIDEUP, SLIDEDOWN, CIRCLECROP, RECTCROP, DISTANCE, FADEBLACK, FADEWHITE, RADIAL, SMOOTHLEFT, SMOOTHRIGHT, SMOOTHUP, SMOOTHDOWN, CIRCLEOPEN, CIRCLECLOSE, VERTOPEN, VERTCLOSE, HORZOPEN, HORZCLOSE, DISSOLVE, PIXELIZE, DIAGTL, DIAGTR, DIAGBL, DIAGBR, HLSLICE, HRSLICE, VUSLICE, VDSLICE, HBLUR, FADEGRAYS, WIPETL, WIPETR, WIPEBL, WIPEBR, SQUEEZEH, SQUEEZEV, ZOOMIN, FADEFAST, FADESLOW, HLWIND, HRWIND, VUWIND, VDWIND, COVERLEFT, COVERRIGHT, COVERUP, COVERDOWN, REVEALLEFT, REVEALRIGHT, REVEALUP, REVEALDOWN, NB_TRANSITIONS, CUSTOM, FADE, WIPELEFT, WIPERIGHT, WIPEUP, WIPEDOWN, SLIDELEFT, SLIDERIGHT, SLIDEUP, SLIDEDOWN, NB_TRANSITIONS, FADE, WIPELEFT, WIPERIGHT, WIPEUP, WIPEDOWN, SLIDEDOWN, SLIDEUP, SLIDELEFT, SLIDERIGHT, CIRCLEOPEN, CIRCLECLOSE, DISSOLVE, PIXELIZE, WIPETL, WIPETR, WIPEBL, WIPEBR, NB_TRANSITIONS } |
Functions | |
| static av_cold int | init_vulkan (AVFilterContext *avctx) |
| static int | xfade_frame (AVFilterContext *avctx, AVFrame *frame_a, AVFrame *frame_b) |
| static int | config_props_output (AVFilterLink *outlink) |
| static int | forward_frame (XFadeVulkanContext *s, AVFilterLink *inlink, AVFilterLink *outlink) |
| static int | activate (AVFilterContext *avctx) |
| static av_cold void | uninit (AVFilterContext *avctx) |
| static AVFrame * | get_video_buffer (AVFilterLink *inlink, int w, int h) |
| AVFILTER_DEFINE_CLASS (xfade_vulkan) | |
Variables | |
| const unsigned char | ff_xfade_comp_spv_data [] |
| const unsigned int | ff_xfade_comp_spv_len |
| static const AVOption | xfade_vulkan_options [] |
| static const AVFilterPad | xfade_vulkan_inputs [] |
| static const AVFilterPad | xfade_vulkan_outputs [] |
| const FFFilter | ff_vf_xfade_vulkan |
| #define IN_A 0 |
Definition at line 26 of file vf_xfade_vulkan.c.
| #define IN_B 1 |
Definition at line 27 of file vf_xfade_vulkan.c.
| #define IN_NB 2 |
Definition at line 28 of file vf_xfade_vulkan.c.
| #define OFFSET | ( | x | ) | offsetof(XFadeVulkanContext, x) |
Definition at line 389 of file vf_xfade_vulkan.c.
| #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 390 of file vf_xfade_vulkan.c.
| enum XFadeTransitions |
Definition at line 70 of file vf_xfade_vulkan.c.
|
static |
Definition at line 91 of file vf_xfade_vulkan.c.
Referenced by xfade_frame().
|
static |
Definition at line 148 of file vf_xfade_vulkan.c.
Referenced by activate().
|
static |
Definition at line 189 of file vf_xfade_vulkan.c.
|
static |
Definition at line 232 of file vf_xfade_vulkan.c.
Referenced by activate().
|
static |
Definition at line 270 of file vf_xfade_vulkan.c.
|
static |
Definition at line 362 of file vf_xfade_vulkan.c.
|
static |
Definition at line 380 of file vf_xfade_vulkan.c.
| AVFILTER_DEFINE_CLASS | ( | xfade_vulkan | ) |
| const unsigned char ff_xfade_comp_spv_data[] |
Referenced by init_vulkan().
| const unsigned int ff_xfade_comp_spv_len |
Referenced by init_vulkan().
|
static |
Definition at line 392 of file vf_xfade_vulkan.c.
|
static |
Definition at line 418 of file vf_xfade_vulkan.c.
|
static |
Definition at line 433 of file vf_xfade_vulkan.c.
| const FFFilter ff_vf_xfade_vulkan |
Definition at line 441 of file vf_xfade_vulkan.c.
1.8.17