Go to the documentation of this file.
64 #define DEF_EXPR_FIELDS(name) AVExpr *name##_pexpr; char *name##_expr; double name
79 #define OFFSET(x) offsetof(VignetteContext, x)
80 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
103 #define PARSE_EXPR(name) do { \
104 int ret = av_expr_parse(&s->name##_pexpr, s->name##_expr, var_names, \
105 NULL, NULL, NULL, NULL, 0, ctx); \
107 av_log(ctx, AV_LOG_ERROR, "Unable to parse expression for '" \
108 AV_STRINGIFY(name) "'\n"); \
139 const int xx = (x -
s->x0) *
s->xscale;
140 const int yy = (y -
s->y0) *
s->yscale;
141 const double dnorm =
hypot(xx, yy) /
s->dmax;
145 const double c = cos(
s->angle * dnorm);
153 float *dst =
s->fmap;
154 int dst_linesize =
s->fmap_linesize;
176 for (y = 0; y <
inlink->h; y++) {
177 for (x = 0; x <
inlink->w; x++)
182 for (y = 0; y <
inlink->h; y++) {
183 for (x = 0; x <
inlink->w; x++)
194 dv =
s->dither / (
double)(1LL<<32);
195 s->dither =
s->dither * 1664525 + 1013904223;
202 unsigned x, y,
direct = 0;
224 uint8_t *dst =
out->data[0];
225 const uint8_t *
src = in ->
data[0];
226 const float *fmap =
s->fmap;
227 const int dst_linesize =
out->linesize[0];
228 const int src_linesize = in ->
linesize[0];
229 const int fmap_linesize =
s->fmap_linesize;
231 for (y = 0; y <
inlink->h; y++) {
233 const uint8_t *srcp =
src;
235 for (x = 0; x <
inlink->w; x++, dstp += 3, srcp += 3) {
236 const float f = fmap[x];
244 fmap += fmap_linesize;
249 for (plane = 0; plane < 4 && in->
data[plane] && in->
linesize[plane]; plane++) {
250 uint8_t *dst =
out->data[plane];
251 const uint8_t *
src = in ->
data[plane];
252 const float *fmap =
s->fmap;
253 const int dst_linesize =
out->linesize[plane];
254 const int src_linesize = in ->
linesize[plane];
255 const int fmap_linesize =
s->fmap_linesize;
256 const int chroma = plane == 1 || plane == 2;
257 const int hsub =
chroma ?
s->desc->log2_chroma_w : 0;
258 const int vsub =
chroma ?
s->desc->log2_chroma_h : 0;
262 for (y = 0; y <
h; y++) {
264 const uint8_t *srcp =
src;
266 for (x = 0; x <
w; x++) {
273 fmap += fmap_linesize << vsub;
306 s->xscale,
s->yscale,
s->dmax);
344 .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.
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.
static enum AVPixelFormat pix_fmts[]
#define AV_CEIL_RSHIFT(a, b)
static double av_q2d(AVRational a)
Convert an AVRational to a double.
static void fn() direct(const ftype *in, const ctype *ir, int len, ftype *out)
#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
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
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)
static const AVFilterPad vignette_outputs[]