|
FFmpeg
4.4.6
|
#include "libavutil/avstring.h"#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "drawutils.h"#include "filters.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | ExtractPlanesContext |
Macros | |
| #define | PLANE_R 0x01 |
| #define | PLANE_G 0x02 |
| #define | PLANE_B 0x04 |
| #define | PLANE_A 0x08 |
| #define | PLANE_Y 0x10 |
| #define | PLANE_U 0x20 |
| #define | PLANE_V 0x40 |
| #define | OFFSET(x) offsetof(ExtractPlanesContext, x) |
| #define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
| #define | EIGHTBIT_FORMATS |
| #define | HIGHDEPTH_FORMATS(suf) |
| #define | FLOAT_FORMATS(suf) |
Functions | |
| AVFILTER_DEFINE_CLASS (extractplanes) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static void | extract_from_packed (uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int width, int height, int depth, int step, int comp) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *frame) |
| static av_cold int | init (AVFilterContext *ctx) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | extractplanes_options [] |
| static const AVFilterPad | extractplanes_inputs [] |
| AVFilter | ff_vf_extractplanes |
| #define PLANE_R 0x01 |
Definition at line 31 of file vf_extractplanes.c.
| #define PLANE_G 0x02 |
Definition at line 32 of file vf_extractplanes.c.
| #define PLANE_B 0x04 |
Definition at line 33 of file vf_extractplanes.c.
| #define PLANE_A 0x08 |
Definition at line 34 of file vf_extractplanes.c.
| #define PLANE_Y 0x10 |
Definition at line 35 of file vf_extractplanes.c.
| #define PLANE_U 0x20 |
Definition at line 36 of file vf_extractplanes.c.
| #define PLANE_V 0x40 |
Definition at line 37 of file vf_extractplanes.c.
| #define OFFSET | ( | x | ) | offsetof(ExtractPlanesContext, x) |
Definition at line 49 of file vf_extractplanes.c.
| #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 50 of file vf_extractplanes.c.
| #define EIGHTBIT_FORMATS |
Definition at line 65 of file vf_extractplanes.c.
| #define HIGHDEPTH_FORMATS | ( | suf | ) |
Definition at line 83 of file vf_extractplanes.c.
| #define FLOAT_FORMATS | ( | suf | ) |
Definition at line 118 of file vf_extractplanes.c.
| AVFILTER_DEFINE_CLASS | ( | extractplanes | ) |
|
static |
Definition at line 122 of file vf_extractplanes.c.
|
static |
Definition at line 213 of file vf_extractplanes.c.
|
static |
Definition at line 245 of file vf_extractplanes.c.
Referenced by init().
|
static |
Definition at line 261 of file vf_extractplanes.c.
Referenced by filter_frame().
|
static |
Definition at line 286 of file vf_extractplanes.c.
|
static |
Definition at line 334 of file vf_extractplanes.c.
|
static |
Definition at line 364 of file vf_extractplanes.c.
|
static |
Definition at line 51 of file vf_extractplanes.c.
|
static |
Definition at line 372 of file vf_extractplanes.c.
| AVFilter ff_vf_extractplanes |
Definition at line 382 of file vf_extractplanes.c.