Go to the source code of this file.
|
| static av_cold void | cudabilateral_uninit (AVFilterContext *ctx) |
| |
| static int | format_is_supported (enum AVPixelFormat fmt) |
| |
| static av_cold void | set_format_info (AVFilterContext *ctx, enum AVPixelFormat format) |
| |
| static av_cold int | init_processing_chain (AVFilterContext *ctx, int width, int height) |
| |
| static av_cold int | cuda_bilateral_load_functions (AVFilterContext *ctx) |
| |
| static av_cold int | cuda_bilateral_config_props (AVFilterLink *outlink) |
| |
| static int | call_cuda_kernel (AVFilterContext *ctx, CUfunction func, CUtexObject src_tex[3], AVFrame *out_frame, int width, int height, int pitch, int width_uv, int height_uv, int pitch_uv, int window_size, float sigmaS, float sigmaR) |
| |
| static int | cuda_bilateral_process_internal (AVFilterContext *ctx, AVFrame *out, AVFrame *in) |
| |
| static int | cuda_bilateral_filter_frame (AVFilterLink *link, AVFrame *in) |
| |
◆ DIV_UP
◆ BLOCKX
◆ BLOCKY
◆ CHECK_CU
◆ OFFSET
◆ FLAGS
◆ cudabilateral_uninit()
◆ format_is_supported()
◆ set_format_info()
◆ init_processing_chain()
◆ cuda_bilateral_load_functions()
◆ cuda_bilateral_config_props()
◆ call_cuda_kernel()
| static int call_cuda_kernel |
( |
AVFilterContext * | ctx, |
|
|
CUfunction | func, |
|
|
CUtexObject | src_tex[3], |
|
|
AVFrame * | out_frame, |
|
|
int | width, |
|
|
int | height, |
|
|
int | pitch, |
|
|
int | width_uv, |
|
|
int | height_uv, |
|
|
int | pitch_uv, |
|
|
int | window_size, |
|
|
float | sigmaS, |
|
|
float | sigmaR ) |
|
static |
◆ cuda_bilateral_process_internal()
◆ cuda_bilateral_filter_frame()
◆ supported_formats
Initial value:= {
}
@ AV_PIX_FMT_NV12
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition at line 38 of file vf_bilateral_cuda.c.
Referenced by amf_frames_get_constraints(), amf_frames_init(), cuda_pad_config_props(), d3d11va_frames_get_constraints(), d3d11va_frames_init(), d3d12va_frames_get_constraints(), d3d12va_frames_init(), dxva2_init_pool(), format_is_supported(), format_is_supported(), format_is_supported(), format_is_supported(), format_is_supported(), format_is_supported(), format_is_supported(), get_format_name(), is_format_supported(), vt_frames_get_constraints(), and vt_frames_init().
◆ options
Initial value:= {
}
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition at line 343 of file vf_bilateral_cuda.c.
◆ cuda_bilateral_class
Initial value:= {
.class_name = "cudabilateral",
}
const char * av_default_item_name(void *ptr)
Return the context name.
#define LIBAVUTIL_VERSION_INT
Definition at line 350 of file vf_bilateral_cuda.c.
◆ cuda_bilateral_inputs
Initial value:= {
{
.name = "default",
},
}
static int cuda_bilateral_filter_frame(AVFilterLink *link, AVFrame *in)
Definition at line 357 of file vf_bilateral_cuda.c.
◆ cuda_bilateral_outputs
Initial value:= {
{
.name = "default",
},
}
static av_cold int cuda_bilateral_config_props(AVFilterLink *outlink)
Definition at line 365 of file vf_bilateral_cuda.c.
◆ ff_vf_bilateral_cuda
Initial value:= {
.p.name = "bilateral_cuda",
}
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FF_FILTER_FLAG_HWFRAME_AWARE
The filter is aware of hardware frames, and any hardware frame context should not be automatically pr...
#define FILTER_SINGLE_PIXFMT(pix_fmt_)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
@ AV_PIX_FMT_CUDA
HW acceleration through CUDA.
static const AVFilterPad cuda_bilateral_outputs[]
static const AVClass cuda_bilateral_class
static av_cold void cudabilateral_uninit(AVFilterContext *ctx)
static const AVFilterPad cuda_bilateral_inputs[]
Definition at line 373 of file vf_bilateral_cuda.c.