|
FFmpeg
|
video fade filter based heavily on vf_negate.c by Bobby Bingham More...
#include "libavutil/avstring.h"#include "libavutil/common.h"#include "libavutil/eval.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "drawutils.h"#include "internal.h"#include "formats.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | FadeContext |
Macros | |
| #define | R 0 |
| #define | G 1 |
| #define | B 2 |
| #define | A 3 |
| #define | Y 0 |
| #define | U 1 |
| #define | V 2 |
| #define | OFFSET(x) offsetof(FadeContext, x) |
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (fade) | |
| static av_cold int | init (AVFilterContext *ctx, const char *args) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_props (AVFilterLink *inlink) |
| static void | fade_plane (int y, int h, int w, int fade_factor, int black_level, int black_level_scaled, uint8_t offset, uint8_t step, int bytes_per_plane, uint8_t *data, int line_size) |
| static int | filter_frame (AVFilterLink *inlink, AVFilterBufferRef *frame) |
Variables | |
| static const AVOption | fade_options [] |
| static const enum AVPixelFormat | studio_level_pix_fmts [] |
| static const AVFilterPad | avfilter_vf_fade_inputs [] |
| static const AVFilterPad | avfilter_vf_fade_outputs [] |
| AVFilter | avfilter_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|AV_OPT_FLAG_FILTERING_PARAM |
| AVFILTER_DEFINE_CLASS | ( | fade | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 162 of file vf_fade.c.
Referenced by filter_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
| AVFilter avfilter_vf_fade |
1.8.2