|
FFmpeg
4.4.8
|
#include "libavutil/imgutils.h"#include "libavutil/intreadwrite.h"#include "libavutil/pixdesc.h"#include "libavutil/opt.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | ThreadData |
| Used for passing data between threads. More... | |
| struct | NContext |
Macros | |
| #define | OFFSET(x) offsetof(NContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | DEFINE_NEIGHBOR_FILTER(name_, description_) |
| #define | DEINFLATE_OPTIONS_OFFSET (CONFIG_EROSION_FILTER || CONFIG_DILATION_FILTER) |
Functions | |
| static int | query_formats (AVFilterContext *ctx) |
| static void | erosion (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | erosion16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | dilation (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | dilation16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | deflate (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | deflate16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | inflate (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static void | inflate16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) |
| static int | config_input (AVFilterLink *inlink) |
| static int | filter_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
Variables | |
| static const AVFilterPad | neighbor_inputs [] |
| static const AVFilterPad | neighbor_outputs [] |
| static const AVOption | options [] |
| #define OFFSET | ( | x | ) | offsetof(NContext, x) |
Definition at line 356 of file vf_neighbor.c.
Definition at line 357 of file vf_neighbor.c.
| #define DEFINE_NEIGHBOR_FILTER | ( | name_, | |
| description_ | |||
| ) |
Definition at line 359 of file vf_neighbor.c.
| #define DEINFLATE_OPTIONS_OFFSET (CONFIG_EROSION_FILTER || CONFIG_DILATION_FILTER) |
Definition at line 377 of file vf_neighbor.c.
|
static |
Definition at line 53 of file vf_neighbor.c.
|
static |
Definition at line 80 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 101 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 123 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 144 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 166 of file vf_neighbor.c.
Referenced by config_input(), encode_frame(), encode_zlibprime(), flashsv2_prime(), and png_write_row().
|
static |
Definition at line 182 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 199 of file vf_neighbor.c.
Referenced by config_input(), decode_frame(), decode_idat(), decode_kfrm(), decode_zbuf(), decode_zlib(), flashsv2_prime(), flashsv_decode_block(), main(), png_decode_idat(), and zerocodec_decode_frame().
|
static |
Definition at line 215 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 232 of file vf_neighbor.c.
|
static |
Definition at line 261 of file vf_neighbor.c.
Referenced by filter_frame().
|
static |
Definition at line 315 of file vf_neighbor.c.
|
static |
Definition at line 338 of file vf_neighbor.c.
|
static |
Definition at line 348 of file vf_neighbor.c.
|
static |
Definition at line 378 of file vf_neighbor.c.