FFmpeg
Loading...
Searching...
No Matches
vf_floodfill.c File Reference
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "filters.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  Points
 
struct  FloodfillContext
 

Macros

#define OFFSET(x)
 
#define FLAGS   AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 

Functions

static int is_inside (int x, int y, int w, int h)
 
static int is_same4 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static int is_same4_16 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static int is_same3 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static int is_same3_16 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static int is_same1 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static int is_same1_16 (const AVFrame *frame, int x, int y, unsigned s0, unsigned s1, unsigned s2, unsigned s3)
 
static void set_pixel1 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void set_pixel1_16 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void set_pixel3 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void set_pixel3_16 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void set_pixel4 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void set_pixel4_16 (AVFrame *frame, int x, int y, unsigned d0, unsigned d1, unsigned d2, unsigned d3)
 
static void pick_pixel1 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static void pick_pixel1_16 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static void pick_pixel3 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static void pick_pixel3_16 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static void pick_pixel4 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static void pick_pixel4_16 (const AVFrame *frame, int x, int y, int *s0, int *s1, int *s2, int *s3)
 
static int config_input (AVFilterLink *inlink)
 
static int filter_frame (AVFilterLink *link, AVFrame *frame)
 
static av_cold void uninit (AVFilterContext *ctx)
 
 AVFILTER_DEFINE_CLASS (floodfill)
 

Variables

static enum AVPixelFormat pixel_fmts []
 
static const AVFilterPad floodfill_inputs []
 
static const AVOption floodfill_options []
 
const FFFilter ff_vf_floodfill
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET ( x)
Value:

Definition at line 397 of file vf_floodfill.c.

◆ FLAGS

Definition at line 398 of file vf_floodfill.c.

Function Documentation

◆ is_inside()

static int is_inside ( int x,
int y,
int w,
int h )
static

Definition at line 53 of file vf_floodfill.c.

Referenced by ff_vvc_split_cu_flag(), and filter_frame().

◆ is_same4()

static int is_same4 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 60 of file vf_floodfill.c.

Referenced by config_input().

◆ is_same4_16()

static int is_same4_16 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 73 of file vf_floodfill.c.

Referenced by config_input().

◆ is_same3()

static int is_same3 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 86 of file vf_floodfill.c.

Referenced by config_input().

◆ is_same3_16()

static int is_same3_16 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 98 of file vf_floodfill.c.

Referenced by config_input().

◆ is_same1()

static int is_same1 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 110 of file vf_floodfill.c.

Referenced by config_input().

◆ is_same1_16()

static int is_same1_16 ( const AVFrame * frame,
int x,
int y,
unsigned s0,
unsigned s1,
unsigned s2,
unsigned s3 )
static

Definition at line 120 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel1()

static void set_pixel1 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 130 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel1_16()

static void set_pixel1_16 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 136 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel3()

static void set_pixel3 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 142 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel3_16()

static void set_pixel3_16 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 150 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel4()

static void set_pixel4 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 158 of file vf_floodfill.c.

Referenced by config_input().

◆ set_pixel4_16()

static void set_pixel4_16 ( AVFrame * frame,
int x,
int y,
unsigned d0,
unsigned d1,
unsigned d2,
unsigned d3 )
static

Definition at line 167 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel1()

static void pick_pixel1 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 176 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel1_16()

static void pick_pixel1_16 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 183 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel3()

static void pick_pixel3 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 190 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel3_16()

static void pick_pixel3_16 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 201 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel4()

static void pick_pixel4 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 212 of file vf_floodfill.c.

Referenced by config_input().

◆ pick_pixel4_16()

static void pick_pixel4_16 ( const AVFrame * frame,
int x,
int y,
int * s0,
int * s1,
int * s2,
int * s3 )
static

Definition at line 225 of file vf_floodfill.c.

Referenced by config_input().

◆ config_input()

static int config_input ( AVFilterLink * inlink)
static

Definition at line 238 of file vf_floodfill.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink * link,
AVFrame * frame )
static

Definition at line 276 of file vf_floodfill.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext * ctx)
static

Definition at line 381 of file vf_floodfill.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( floodfill )

Variable Documentation

◆ pixel_fmts

enum AVPixelFormat pixel_fmts[]
static
Initial value:
= {
}
#define AV_PIX_FMT_GBRAP12
Definition pixfmt.h:569
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_GBRAP16
Definition pixfmt.h:571
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563
#define AV_PIX_FMT_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_GRAY16
Definition pixfmt.h:528
#define AV_PIX_FMT_GBRAP10
Definition pixfmt.h:568
#define AV_PIX_FMT_YUVA444P16
Definition pixfmt.h:603
#define AV_PIX_FMT_GBRP16
Definition pixfmt.h:567
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_YUVA444P9
Definition pixfmt.h:595
#define AV_PIX_FMT_GBRP14
Definition pixfmt.h:566
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548

Definition at line 370 of file vf_floodfill.c.

◆ floodfill_inputs

const AVFilterPad floodfill_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
.config_props = config_input,
},
}
static int config_input(AVFilterLink *inlink)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200

Definition at line 388 of file vf_floodfill.c.

◆ floodfill_options

const AVOption floodfill_options[]
static
Initial value:
= {
{ "x", "set pixel x coordinate", OFFSET(x), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ "y", "set pixel y coordinate", OFFSET(y), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ "s0", "set source #0 component value", OFFSET(s[0]), AV_OPT_TYPE_INT, {.i64=0},-1, UINT16_MAX, FLAGS },
{ "s1", "set source #1 component value", OFFSET(s[1]), AV_OPT_TYPE_INT, {.i64=0},-1, UINT16_MAX, FLAGS },
{ "s2", "set source #2 component value", OFFSET(s[2]), AV_OPT_TYPE_INT, {.i64=0},-1, UINT16_MAX, FLAGS },
{ "s3", "set source #3 component value", OFFSET(s[3]), AV_OPT_TYPE_INT, {.i64=0},-1, UINT16_MAX, FLAGS },
{ "d0", "set destination #0 component value", OFFSET(d[0]), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ "d1", "set destination #1 component value", OFFSET(d[1]), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ "d2", "set destination #2 component value", OFFSET(d[2]), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ "d3", "set destination #3 component value", OFFSET(d[3]), AV_OPT_TYPE_INT, {.i64=0}, 0, UINT16_MAX, FLAGS },
{ NULL }
}
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
#define OFFSET(x)
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258

Definition at line 400 of file vf_floodfill.c.

◆ ff_vf_floodfill

const FFFilter ff_vf_floodfill
Initial value:
= {
.p.name = "floodfill",
.p.description = NULL_IF_CONFIG_SMALL("Fill area with same color with another color."),
.p.priv_class = &floodfill_class,
.priv_size = sizeof(FloodfillContext),
}
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition avfilter.h:196
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static enum AVPixelFormat pixel_fmts[]
Definition vf_amplify.c:52
static const AVFilterPad floodfill_inputs[]
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37

Definition at line 416 of file vf_floodfill.c.