Libav
|
video fade filter based heavily on vf_negate.c by Bobby Bingham More...
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | FadeContext |
Macros | |
#define | FADE_IN 0 |
#define | FADE_OUT 1 |
#define | OFFSET(x) offsetof(FadeContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
static av_cold int | init (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *inlink) |
static int | filter_slice_luma (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | filter_slice_chroma (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *frame) |
Variables | |
static const AVOption | options [] |
static const AVClass | fade_class |
static const AVFilterPad | avfilter_vf_fade_inputs [] |
static const AVFilterPad | avfilter_vf_fade_outputs [] |
AVFilter | ff_vf_fade |
video fade filter based heavily on vf_negate.c by Bobby Bingham
Definition in file vf_fade.c.
#define OFFSET | ( | x | ) | offsetof(FadeContext, x) |
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM |
|
static |
|
static |
|
static |
|
static |
Definition at line 95 of file vf_fade.c.
Referenced by filter_frame().
|
static |
Definition at line 119 of file vf_fade.c.
Referenced by filter_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
AVFilter ff_vf_fade |