FFmpeg
|
blur / sharpen filter, ported to FFmpeg from MPlayer libmpcodecs/unsharp.c. More...
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "unsharp.h"
#include "unsharp_opencl.h"
Go to the source code of this file.
Macros | |
#define | OFFSET(x) offsetof(UnsharpContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | MIN_SIZE 3 |
#define | MAX_SIZE 63 |
Functions | |
static void | apply_unsharp (uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int width, int height, UnsharpFilterParam *fp) |
static int | apply_unsharp_c (AVFilterContext *ctx, AVFrame *in, AVFrame *out) |
static void | set_filter_param (UnsharpFilterParam *fp, int msize_x, int msize_y, float amount) |
static av_cold int | init (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static int | init_filter_param (AVFilterContext *ctx, UnsharpFilterParam *fp, const char *effect_type, int width) |
static int | config_props (AVFilterLink *link) |
static void | free_filter_param (UnsharpFilterParam *fp) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | filter_frame (AVFilterLink *link, AVFrame *in) |
AVFILTER_DEFINE_CLASS (unsharp) | |
Variables | |
static const AVOption | unsharp_options [] |
static const AVFilterPad | avfilter_vf_unsharp_inputs [] |
static const AVFilterPad | avfilter_vf_unsharp_outputs [] |
AVFilter | avfilter_vf_unsharp |
blur / sharpen filter, ported to FFmpeg from MPlayer libmpcodecs/unsharp.c.
This code is based on:
An Efficient algorithm for Gaussian blur using finite-state machines Frederick M. Waltz and John W. V. Miller
SPIE Conf. on Machine Vision Systems for Inspection and Metrology VII Originally published Boston, Nov 98
http://www.engin.umd.umich.edu/~jwvm/ece581/21_GBlur.pdf
Definition in file vf_unsharp.c.
#define OFFSET | ( | x | ) | offsetof(UnsharpContext, x) |
Definition at line 260 of file vf_unsharp.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 261 of file vf_unsharp.c.
#define MIN_SIZE 3 |
Definition at line 262 of file vf_unsharp.c.
#define MAX_SIZE 63 |
Definition at line 263 of file vf_unsharp.c.
|
static |
Definition at line 51 of file vf_unsharp.c.
Referenced by apply_unsharp_c().
|
static |
Definition at line 105 of file vf_unsharp.c.
Referenced by init().
|
static |
Definition at line 123 of file vf_unsharp.c.
Referenced by init().
|
static |
Definition at line 135 of file vf_unsharp.c.
|
static |
Definition at line 158 of file vf_unsharp.c.
|
static |
Definition at line 171 of file vf_unsharp.c.
Referenced by config_props().
|
static |
Definition at line 193 of file vf_unsharp.c.
|
static |
Definition at line 212 of file vf_unsharp.c.
Referenced by uninit().
|
static |
Definition at line 220 of file vf_unsharp.c.
|
static |
Definition at line 232 of file vf_unsharp.c.
AVFILTER_DEFINE_CLASS | ( | unsharp | ) |
|
static |
Definition at line 264 of file vf_unsharp.c.
|
static |
Definition at line 283 of file vf_unsharp.c.
|
static |
Definition at line 293 of file vf_unsharp.c.
AVFilter avfilter_vf_unsharp |
Definition at line 301 of file vf_unsharp.c.