|
FFmpeg
|
#include "libavutil/opt.h"#include "vulkan_filter.h"#include "v360.h"#include "filters.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | V360ulkanContext |
| struct | PushData |
Macros | |
| #define | OFFSET(x) offsetof(V360VulkanContext, x) |
| #define | FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
| #define | DYNAMIC (FLAGS | AV_OPT_FLAG_RUNTIME_PARAM) |
Functions | |
| static int | get_rorder (char c) |
| static av_cold int | init_filter (AVFilterContext *ctx, AVFrame *in) |
| static void | multiply_matrix (float c[4][4], const float a[4][4], const float b[4][4]) |
| static void | calculate_iflat_range (int in, float ih_fov, float iv_fov, float *iflat_range) |
| static void | calculate_flat_range (int out, float h_fov, float v_fov, float *flat_range) |
| static void | calculate_rotation_matrix (float yaw, float pitch, float roll, float rot_mat[4][4], const int rotation_order[3]) |
| static int | v360_vulkan_filter_frame (AVFilterLink *link, AVFrame *in) |
| static void | v360_vulkan_uninit (AVFilterContext *avctx) |
| AVFILTER_DEFINE_CLASS (v360_vulkan) | |
Variables | |
| const unsigned char | ff_v360_comp_spv_data [] |
| const unsigned int | ff_v360_comp_spv_len |
| static const AVOption | v360_vulkan_options [] |
| static const AVFilterPad | v360_vulkan_inputs [] |
| static const AVFilterPad | v360_vulkan_outputs [] |
| const FFFilter | ff_vf_v360_vulkan |
| #define OFFSET | ( | x | ) | offsetof(V360VulkanContext, x) |
Definition at line 321 of file vf_v360_vulkan.c.
| #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM) |
Definition at line 322 of file vf_v360_vulkan.c.
| #define DYNAMIC (FLAGS | AV_OPT_FLAG_RUNTIME_PARAM) |
Definition at line 323 of file vf_v360_vulkan.c.
|
static |
Definition at line 58 of file vf_v360_vulkan.c.
Referenced by init_filter().
|
static |
Definition at line 75 of file vf_v360_vulkan.c.
Referenced by v360_vulkan_filter_frame().
Definition at line 162 of file vf_v360_vulkan.c.
Referenced by calculate_rotation_matrix().
|
inlinestatic |
Definition at line 174 of file vf_v360_vulkan.c.
Referenced by v360_vulkan_filter_frame().
|
inlinestatic |
Definition at line 196 of file vf_v360_vulkan.c.
Referenced by v360_vulkan_filter_frame().
|
inlinestatic |
Definition at line 218 of file vf_v360_vulkan.c.
Referenced by v360_vulkan_filter_frame().
|
static |
Definition at line 252 of file vf_v360_vulkan.c.
|
static |
Definition at line 303 of file vf_v360_vulkan.c.
| AVFILTER_DEFINE_CLASS | ( | v360_vulkan | ) |
| const unsigned char ff_v360_comp_spv_data[] |
Referenced by init_filter().
| const unsigned int ff_v360_comp_spv_len |
Referenced by init_filter().
|
static |
Definition at line 324 of file vf_v360_vulkan.c.
|
static |
Definition at line 357 of file vf_v360_vulkan.c.
|
static |
Definition at line 366 of file vf_v360_vulkan.c.
| const FFFilter ff_vf_v360_vulkan |
Definition at line 374 of file vf_v360_vulkan.c.
1.8.17