Go to the documentation of this file.
32 #define SUB_PIXEL_BITS 8
33 #define SUB_PIXELS (1 << SUB_PIXEL_BITS)
54 void *
arg,
int job,
int nb_jobs);
57 #define OFFSET(x) offsetof(PerspectiveContext, x)
58 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
84 {
"source",
"specify locations in source to send to corners in destination",
86 {
"destination",
"specify locations in destination to send corners of source",
111 coeff = (1.0 - (
A + 3.0) *
d *
d + (
A + 2.0) *
d *
d *
d);
127 double (*
ref)[2] =
s->ref;
134 double x0, x1, x2, x3, x4, x5, x6, x7, x8, q;
138 for (
i = 0;
i < 4;
i++) {
139 for (j = 0; j < 2; j++) {
140 if (!
s->expr_str[
i][j])
161 q = (
ref[1][0] -
ref[3][0]) * (
ref[2][1] -
ref[3][1]) -
164 x0 = q * (
ref[1][0] -
ref[0][0]) *
h + x6 *
ref[1][0];
165 x1 = q * (
ref[2][0] -
ref[0][0]) *
w + x7 *
ref[2][0];
166 x2 = q *
ref[0][0] *
w *
h;
167 x3 = q * (
ref[1][1] -
ref[0][1]) *
h + x6 *
ref[1][1];
168 x4 = q * (
ref[2][1] -
ref[0][1]) *
w + x7 *
ref[2][1];
169 x5 = q *
ref[0][1] *
w *
h;
203 for (y = 0; y <
h; y++){
204 for (x = 0; x <
w; x++){
208 (x6 * x + x7 * y + x8));
210 (x6 * x + x7 * y + x8));
212 s->pv[x + y *
w][0] =
u;
213 s->pv[x + y *
w][1] = v;
228 s->hsub =
desc->log2_chroma_w;
229 s->vsub =
desc->log2_chroma_h;
235 s->height[0] =
s->height[3] =
inlink->h;
252 for (j = 0; j < 4; j++)
255 for (j = 0; j < 4; j++)
258 for (j = 0; j < 4; j++)
275 int job,
int nb_jobs)
279 uint8_t *dst =
td->dst;
280 int dst_linesize =
td->dst_linesize;
281 uint8_t *
src =
td->src;
282 int src_linesize =
td->src_linesize;
287 int start = (
h * job) / nb_jobs;
288 int end = (
h * (job+1)) / nb_jobs;
289 const int linesize =
s->linesize[0];
292 for (y = start; y < end; y++) {
294 for (x = 0; x <
w; x++) {
295 int u, v, subU, subV, sum, sx;
298 u =
s->pv[sx + sy * linesize][0] >>
hsub;
299 v =
s->pv[sx + sy * linesize][1] >> vsub;
305 if (
u > 0 && v > 0 &&
u <
w - 2 && v <
h - 2){
306 const int index =
u + v*src_linesize;
307 const int a =
s->coeff[subU][0];
308 const int b =
s->coeff[subU][1];
309 const int c =
s->coeff[subU][2];
310 const int d =
s->coeff[subU][3];
312 sum =
s->coeff[subV][0] * (
a *
src[
index - 1 - src_linesize] +
b *
src[
index - 0 - src_linesize] +
316 s->coeff[subV][2] * (
a *
src[
index - 1 + src_linesize] +
b *
src[
index - 0 + src_linesize] +
318 s->coeff[subV][3] * (
a *
src[
index - 1 + 2 * src_linesize] +
b *
src[
index - 0 + 2 * src_linesize] +
325 for (dy = 0; dy < 4; dy++) {
332 for (dx = 0; dx < 4; dx++) {
340 sum +=
s->coeff[subU][dx] *
s->coeff[subV][dy] *
src[ ix + iy * src_linesize];
347 dst[x + y * dst_linesize] = sum;
354 int job,
int nb_jobs)
358 uint8_t *dst =
td->dst;
359 int dst_linesize =
td->dst_linesize;
360 uint8_t *
src =
td->src;
361 int src_linesize =
td->src_linesize;
366 int start = (
h * job) / nb_jobs;
367 int end = (
h * (job+1)) / nb_jobs;
368 const int linesize =
s->linesize[0];
371 for (y = start; y < end; y++){
373 for (x = 0; x <
w; x++){
374 int u, v, subU, subV, sum, sx,
index, subUI, subVI;
377 u =
s->pv[sx + sy * linesize][0] >>
hsub;
378 v =
s->pv[sx + sy * linesize][1] >> vsub;
384 index =
u + v * src_linesize;
388 if ((
unsigned)
u < (unsigned)(
w - 1)){
389 if((
unsigned)v < (unsigned)(
h - 1)){
391 subV * (subUI *
src[
index + src_linesize] + subU *
src[
index + src_linesize + 1]);
398 index =
u + v * src_linesize;
407 if ((
unsigned)v < (unsigned)(
h - 1)){
408 index =
u + v * src_linesize;
416 index =
u + v * src_linesize;
422 dst[x + y * dst_linesize] = sum;
432 switch (
s->interpolation) {
463 for (plane = 0; plane <
s->nb_planes; plane++) {
464 int hsub = plane == 1 || plane == 2 ?
s->hsub : 0;
465 int vsub = plane == 1 || plane == 2 ?
s->vsub : 0;
467 .dst_linesize =
out->linesize[plane],
468 .src =
frame->data[plane],
469 .src_linesize =
frame->linesize[plane],
470 .w =
s->linesize[plane],
471 .h =
s->height[plane],
506 .
name =
"perspective",
514 .priv_class = &perspective_class,
static double get_coeff(double d)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
int32_t coeff[SUB_PIXELS][4]
AVPixelFormat
Pixel format.
static enum AVPixelFormat pix_fmts[]
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
#define u(width, name, range_min, range_max)
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)
#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.
int(* perspective)(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
This structure describes decoded (raw) audio or video data.
static int calc_persp_luts(AVFilterContext *ctx, AVFilterLink *inlink)
@ 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.
@ PERSPECTIVE_SENSE_SOURCE
coordinates give locations in source of corners of destination.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
A filter pad used for either input or output.
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
static av_cold int init(AVFilterContext *ctx)
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
static int resample_linear(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
#define AV_CEIL_RSHIFT(a, b)
#define av_assert0(cond)
assert() equivalent, that is always enabled.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_INPUTS(array)
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
#define av_realloc_f(p, o, n)
static const AVOption perspective_options[]
static const AVFilterPad perspective_inputs[]
Describe the class of an AVClass context structure.
static __device__ float fabs(float a)
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
@ 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
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
const AVFilter ff_vf_perspective
static const AVFilterPad perspective_outputs[]
@ PERSPECTIVE_SENSE_DESTINATION
coordinates give locations in destination of corners of source.
AVFILTER_DEFINE_CLASS(perspective)
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
static int interpolation(DeclickChannel *c, const double *src, int ar_order, double *acoefficients, int *index, int nb_errors, double *auxiliary, double *interpolated)
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
#define i(width, name, range_min, range_max)
int w
agreed upon image width
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Used for passing data between threads.
static int config_input(AVFilterLink *inlink)
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
const char * name
Pad name.
static av_cold void uninit(AVFilterContext *ctx)
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
static int resample_cubic(AVFilterContext *ctx, void *arg, int job, int nb_jobs)
int h
agreed upon image height
static const char *const var_names[]
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 values
static int ref[MAX_W *MAX_W]
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
int64_t frame_count_in
Number of past frames sent through the link.
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)
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
static const double coeff[2][5]
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)