FFmpeg
|
blur / sharpen filter, ported to FFmpeg from MPlayer libmpcodecs/unsharp.c. More...
#include <float.h>
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "libavutil/common.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
Go to the source code of this file.
Data Structures | |
struct | FilterParam |
struct | UnsharpContext |
Macros | |
#define | MIN_MATRIX_SIZE 3 |
#define | MAX_MATRIX_SIZE 63 |
#define | SHIFTUP(x, shift) (-((-(x))>>(shift))) |
#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 |
Typedefs | |
typedef struct FilterParam | FilterParam |
Functions | |
static void | apply_unsharp (uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int width, int height, FilterParam *fp) |
static void | set_filter_param (FilterParam *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, FilterParam *fp, const char *effect_type, int width) |
static int | config_props (AVFilterLink *link) |
static void | free_filter_param (FilterParam *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 |
Detailed Description
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.
Macro Definition Documentation
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 251 of file vf_unsharp.c.
#define MAX_MATRIX_SIZE 63 |
Definition at line 51 of file vf_unsharp.c.
Referenced by apply_unsharp().
#define MAX_SIZE 63 |
Definition at line 253 of file vf_unsharp.c.
#define MIN_MATRIX_SIZE 3 |
Definition at line 50 of file vf_unsharp.c.
#define MIN_SIZE 3 |
Definition at line 252 of file vf_unsharp.c.
#define OFFSET | ( | x | ) | offsetof(UnsharpContext, x) |
Definition at line 250 of file vf_unsharp.c.
Definition at line 54 of file vf_unsharp.c.
Referenced by config_props(), and filter_frame().
Typedef Documentation
typedef struct FilterParam FilterParam |
Function Documentation
|
static |
Definition at line 76 of file vf_unsharp.c.
Referenced by filter_frame().
AVFILTER_DEFINE_CLASS | ( | unsharp | ) |
|
static |
Definition at line 192 of file vf_unsharp.c.
|
static |
Definition at line 227 of file vf_unsharp.c.
|
static |
Definition at line 211 of file vf_unsharp.c.
Referenced by uninit().
|
static |
Definition at line 146 of file vf_unsharp.c.
|
static |
Definition at line 170 of file vf_unsharp.c.
Referenced by config_props().
|
static |
Definition at line 157 of file vf_unsharp.c.
|
static |
Definition at line 134 of file vf_unsharp.c.
Referenced by init().
|
static |
Definition at line 219 of file vf_unsharp.c.
Variable Documentation
AVFilter avfilter_vf_unsharp |
Definition at line 290 of file vf_unsharp.c.
|
static |
Definition at line 272 of file vf_unsharp.c.
|
static |
Definition at line 282 of file vf_unsharp.c.
|
static |
Definition at line 254 of file vf_unsharp.c.
Generated on Mon Nov 18 2024 06:52:10 for FFmpeg by 1.8.11