FFmpeg
|
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "avfilter.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_) |
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 [] |
#define OFFSET | ( | x | ) | offsetof(NContext, x) |
Definition at line 355 of file vf_neighbor.c.
Definition at line 356 of file vf_neighbor.c.
#define DEFINE_NEIGHBOR_FILTER | ( | name_, | |
description_ | |||
) |
Definition at line 358 of file vf_neighbor.c.
|
static |
Definition at line 52 of file vf_neighbor.c.
|
static |
Definition at line 79 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 100 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 122 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 143 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 165 of file vf_neighbor.c.
Referenced by config_input(), encode_frame(), encode_zlibprime(), flashsv2_prime(), and png_write_row().
|
static |
Definition at line 181 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 198 of file vf_neighbor.c.
Referenced by config_input(), decode_frame(), decode_kfrm(), decode_zbuf(), decode_zlib(), flashsv2_prime(), flashsv_decode_block(), main(), png_decode_idat(), and zerocodec_decode_frame().
|
static |
Definition at line 214 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 231 of file vf_neighbor.c.
|
static |
Definition at line 260 of file vf_neighbor.c.
Referenced by filter_frame().
|
static |
Definition at line 314 of file vf_neighbor.c.
|
static |
Definition at line 337 of file vf_neighbor.c.
|
static |
Definition at line 347 of file vf_neighbor.c.