FFmpeg: libavfilter/vf_vignette.c Source File
Go to the documentation of this file. 1 /*
2 * Copyright (c) 2013 Clément Bœsch
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <float.h> /* DBL_MAX */
22
29
31 "w", // stream width
32 "h", // stream height
33 "n", // frame count
34 "pts", // presentation timestamp expressed in AV_TIME_BASE units
35 "r", // frame rate
36 "t", // timestamp expressed in seconds
37 "tb", // timebase
39 };
40
50 };
51
56 };
57
63 #define DEF_EXPR_FIELDS(name) AVExpr *name##_pexpr; char *name##_expr; double name
77
78 #define OFFSET(x) offsetof(VignetteContext, x)
79 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
94 };
95
97
99 {
101
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); \
105 if (ret < 0) { \
106 av_log(ctx, AV_LOG_ERROR, "Unable to parse expression for '" \
107 AV_STRINGIFY(name) "'\n"); \
108 return ret; \
109 } \
110 } while (0)
111
115 return 0;
116 }
117
119 {
125 }
126
134 };
135
137 {
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;
141 if (dnorm > 1) {
142 return 0;
143 } else {
144 const double c = cos(
s->angle * dnorm);
145 return (
c*
c)*(
c*
c);
// do not remove braces, it helps compilers
146 }
147 }
148
150 {
151 int x, y;
152 float *dst =
s->fmap;
153 int dst_linesize =
s->fmap_linesize;
154
159 } else {
163 }
164
168
171
173
175 for (y = 0; y <
inlink->h; y++) {
176 for (x = 0; x <
inlink->w; x++)
178 dst += dst_linesize;
179 }
180 } else {
181 for (y = 0; y <
inlink->h; y++) {
182 for (x = 0; x <
inlink->w; x++)
184 dst += dst_linesize;
185 }
186 }
187 }
188
190 {
191 double dv = 0;
193 dv =
s->dither / (
double)(1LL<<32);
194 s->dither =
s->dither * 1664525 + 1013904223;
195 }
196 return dv;
197 }
198
200 {
201 unsigned x, y, direct = 0;
206
208 direct = 1;
210 } else {
215 }
217 }
218
221
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;
229
230 for (y = 0; y <
inlink->h; y++) {
231 uint8_t *dstp = dst;
232 const uint8_t *srcp =
src;
233
234 for (x = 0; x <
inlink->w; x++, dstp += 3, srcp += 3) {
235 const float f = fmap[x];
236
240 }
241 dst += dst_linesize;
243 fmap += fmap_linesize;
244 }
245 } else {
246 int plane;
247
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;
260
261 for (y = 0; y <
h; y++) {
262 uint8_t *dstp = dst;
263 const uint8_t *srcp =
src;
264
265 for (x = 0; x <
w; x++) {
269 }
270 dst += dst_linesize;
272 fmap += fmap_linesize << vsub;
273 }
274 }
275 }
276
277 if (!direct)
280 }
281
283 {
286
293
299 } else {
302 }
305 s->xscale,
s->yscale,
s->dmax);
306
311
314
315 return 0;
316 }
317
319 {
324 },
325 };
326
336 .priv_class = &vignette_class,
338 };
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)
Generated on Thu Sep 26 2024 23:15:41 for FFmpeg by
doxygen
1.8.17