|
FFmpeg
|
#include <string.h>#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixfmt.h"#include "avfilter.h"#include "drawutils.h"#include "formats.h"#include "filters.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | AlphaMergeContext |
Enumerations | |
| enum | { Y, U, V, A } |
Functions | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input_main (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static void | draw_frame (AVFilterContext *ctx, AVFrame *main_buf, AVFrame *alpha_buf) |
| static int | activate (AVFilterContext *ctx) |
| AVFILTER_DEFINE_CLASS (alphamerge) | |
Variables | |
| static const AVFilterPad | alphamerge_inputs [] |
| static const AVFilterPad | alphamerge_outputs [] |
| static const AVOption | alphamerge_options [] |
| AVFilter | ff_vf_alphamerge |
copy an alpha component from another video's luma
Definition in file vf_alphamerge.c.
| anonymous enum |
| Enumerator | |
|---|---|
| Y | |
| U | |
| V | |
| A | |
Definition at line 38 of file vf_alphamerge.c.
|
static |
Definition at line 49 of file vf_alphamerge.c.
|
static |
Definition at line 69 of file vf_alphamerge.c.
|
static |
Definition at line 78 of file vf_alphamerge.c.
|
static |
Definition at line 99 of file vf_alphamerge.c.
Referenced by activate().
|
static |
Definition at line 127 of file vf_alphamerge.c.
| AVFILTER_DEFINE_CLASS | ( | alphamerge | ) |
|
static |
Definition at line 176 of file vf_alphamerge.c.
|
static |
Definition at line 189 of file vf_alphamerge.c.
|
static |
Definition at line 198 of file vf_alphamerge.c.
| AVFilter ff_vf_alphamerge |
Definition at line 204 of file vf_alphamerge.c.
1.8.17