FFmpeg
|
#include "libavutil/avstring.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "drawutils.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 |
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 29 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_G 0x02 |
Definition at line 30 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_B 0x04 |
Definition at line 31 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_A 0x08 |
Definition at line 32 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_Y 0x10 |
Definition at line 33 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_U 0x20 |
Definition at line 34 of file vf_extractplanes.c.
Referenced by config_input().
#define PLANE_V 0x40 |
Definition at line 35 of file vf_extractplanes.c.
Referenced by config_input().
#define OFFSET | ( | x | ) | offsetof(ExtractPlanesContext, x) |
Definition at line 47 of file vf_extractplanes.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 48 of file vf_extractplanes.c.
AVFILTER_DEFINE_CLASS | ( | extractplanes | ) |
|
static |
Definition at line 63 of file vf_extractplanes.c.
|
static |
Definition at line 164 of file vf_extractplanes.c.
|
static |
Definition at line 196 of file vf_extractplanes.c.
Referenced by init().
|
static |
Definition at line 212 of file vf_extractplanes.c.
Referenced by filter_frame().
|
static |
Definition at line 237 of file vf_extractplanes.c.
|
static |
Definition at line 285 of file vf_extractplanes.c.
|
static |
Definition at line 312 of file vf_extractplanes.c.
|
static |
Definition at line 49 of file vf_extractplanes.c.
|
static |
Definition at line 320 of file vf_extractplanes.c.
AVFilter ff_vf_extractplanes |
Definition at line 330 of file vf_extractplanes.c.