Go to the documentation of this file.
63 #define DEF_EXPR_FIELDS(name) AVExpr *name##_pexpr; char *name##_expr; double name
78 #define OFFSET(x) offsetof(VignetteContext, x)
79 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
102 #define PARSE_EXPR(name) do { \
103 int ret = av_expr_parse(&s->name##_pexpr, s->name##_expr, var_names, \
104 NULL, NULL, NULL, NULL, 0, ctx); \
106 av_log(ctx, AV_LOG_ERROR, "Unable to parse expression for '" \
107 AV_STRINGIFY(name) "'\n"); \
138 const int xx = (x -
s->x0) *
s->xscale;
139 const int yy = (y -
s->y0) *
s->yscale;
140 const double dnorm =
hypot(xx, yy) /
s->dmax;
144 const double c = cos(
s->angle * dnorm);
152 float *dst =
s->fmap;
153 int dst_linesize =
s->fmap_linesize;
175 for (y = 0; y <
inlink->h; y++) {
176 for (x = 0; x <
inlink->w; x++)
181 for (y = 0; y <
inlink->h; y++) {
182 for (x = 0; x <
inlink->w; x++)
193 dv =
s->dither / (
double)(1LL<<32);
194 s->dither =
s->dither * 1664525 + 1013904223;
201 unsigned x, y, direct = 0;
223 uint8_t *dst =
out->data[0];
224 const uint8_t *
src = in ->
data[0];
225 const float *fmap =
s->fmap;
226 const int dst_linesize =
out->linesize[0];
227 const int src_linesize = in ->
linesize[0];
228 const int fmap_linesize =
s->fmap_linesize;
230 for (y = 0; y <
inlink->h; y++) {
232 const uint8_t *srcp =
src;
234 for (x = 0; x <
inlink->w; x++, dstp += 3, srcp += 3) {
235 const float f = fmap[x];
243 fmap += fmap_linesize;
248 for (plane = 0; plane < 4 && in->
data[plane] && in->
linesize[plane]; plane++) {
249 uint8_t *dst =
out->data[plane];
250 const uint8_t *
src = in ->
data[plane];
251 const float *fmap =
s->fmap;
252 const int dst_linesize =
out->linesize[plane];
253 const int src_linesize = in ->
linesize[plane];
254 const int fmap_linesize =
s->fmap_linesize;
255 const int chroma = plane == 1 || plane == 2;
256 const int hsub =
chroma ?
s->desc->log2_chroma_w : 0;
257 const int vsub =
chroma ?
s->desc->log2_chroma_h : 0;
261 for (y = 0; y <
h; y++) {
263 const uint8_t *srcp =
src;
265 for (x = 0; x <
w; x++) {
272 fmap += fmap_linesize << vsub;
305 s->xscale,
s->yscale,
s->dmax);
336 .priv_class = &vignette_class,
static const char *const var_names[]
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
AVPixelFormat
Pixel format.
static av_cold void uninit(AVFilterContext *ctx)
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static const AVOption vignette_options[]
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
AVRational av_div_q(AVRational b, AVRational c)
Divide one rational by another.
#define FILTER_PIXFMTS_ARRAY(array)
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
double var_values[VAR_NB]
static double get_natural_factor(const VignetteContext *s, int x, int y)
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
const char * name
Filter name.
A link between two filters.
static const AVFilterPad vignette_inputs[]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
const AVFilter ff_vf_vignette
static av_cold int init(AVFilterContext *ctx)
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
A filter pad used for either input or output.
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
static enum AVPixelFormat pix_fmts[]
#define AV_CEIL_RSHIFT(a, b)
static double av_q2d(AVRational a)
Convert an AVRational to a double.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_INPUTS(array)
Describe the class of an AVClass context structure.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Rational number (pair of numerator and denominator).
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
static int config_props(AVFilterLink *inlink)
static av_const double hypot(double x, double y)
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
AVFILTER_DEFINE_CLASS(vignette)
int w
agreed upon image width
#define av_malloc_array(a, b)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
const char * name
Pad name.
const AVPixFmtDescriptor * desc
int h
agreed upon image height
static void update_context(VignetteContext *s, AVFilterLink *inlink, AVFrame *frame)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
#define FILTER_OUTPUTS(array)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
static double get_dither_value(VignetteContext *s)