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 |
#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) |
static void | erosion16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | dilation (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | dilation16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | deflate (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | deflate16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | inflate (uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
static void | inflate16 (uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord) |
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 341 of file vf_neighbor.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 342 of file vf_neighbor.c.
#define DEFINE_NEIGHBOR_FILTER | ( | name_, | |
description_ | |||
) |
Definition at line 344 of file vf_neighbor.c.
|
static |
Definition at line 50 of file vf_neighbor.c.
|
static |
Definition at line 76 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 96 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 117 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 137 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 158 of file vf_neighbor.c.
Referenced by config_input(), encode_frame(), encode_zlibprime(), flashsv2_prime(), and png_write_row().
|
static |
Definition at line 173 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 189 of file vf_neighbor.c.
Referenced by config_input(), decode_frame(), decode_kfrm(), decode_zbuf(), decode_zlib(), flashsv2_prime(), flashsv_decode_block(), main(), matroska_decode_buffer(), png_decode_idat(), and zerocodec_decode_frame().
|
static |
Definition at line 204 of file vf_neighbor.c.
Referenced by config_input().
|
static |
Definition at line 220 of file vf_neighbor.c.
|
static |
Definition at line 248 of file vf_neighbor.c.
Referenced by filter_frame().
|
static |
Definition at line 300 of file vf_neighbor.c.
|
static |
Definition at line 323 of file vf_neighbor.c.
|
static |
Definition at line 333 of file vf_neighbor.c.