FFmpeg
|
#include "libavutil/avstring.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/qsort.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "framesync.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | XMedianContext |
struct | ThreadData |
Used for passing data between threads. More... | |
Macros | |
#define | OFFSET(x) offsetof(XMedianContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
static int | query_formats (AVFilterContext *ctx) |
static av_cold int | init (AVFilterContext *ctx) |
static int | comparei (const void *p1, const void *p2) |
static int | median_frames16 (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | median_frames8 (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | process_frame (FFFrameSync *fs) |
static int | config_output (AVFilterLink *outlink) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | activate (AVFilterContext *ctx) |
AVFILTER_DEFINE_CLASS (xmedian) | |
Variables | |
static const AVOption | xmedian_options [] |
static const AVFilterPad | outputs [] |
AVFilter | ff_vf_xmedian |
#define OFFSET | ( | x | ) | offsetof(XMedianContext, x) |
Definition at line 320 of file vf_xmedian.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 321 of file vf_xmedian.c.
|
static |
Definition at line 54 of file vf_xmedian.c.
|
static |
Definition at line 86 of file vf_xmedian.c.
|
static |
Definition at line 117 of file vf_xmedian.c.
Referenced by median_frames16(), and median_frames8().
|
static |
Definition at line 124 of file vf_xmedian.c.
Referenced by config_output().
|
static |
Definition at line 168 of file vf_xmedian.c.
Referenced by config_output().
|
static |
Definition at line 210 of file vf_xmedian.c.
Referenced by config_output().
|
static |
Definition at line 237 of file vf_xmedian.c.
|
static |
Definition at line 303 of file vf_xmedian.c.
|
static |
Definition at line 314 of file vf_xmedian.c.
AVFILTER_DEFINE_CLASS | ( | xmedian | ) |
|
static |
Definition at line 323 of file vf_xmedian.c.
|
static |
Definition at line 329 of file vf_xmedian.c.
AVFilter ff_vf_xmedian |
Definition at line 340 of file vf_xmedian.c.