FFmpeg
Loading...
Searching...
No Matches
vf_swaprect.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Paul B. Mahol
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 "libavutil/avassert.h"
22#include "libavutil/eval.h"
23#include "libavutil/imgutils.h"
24#include "libavutil/mem.h"
25#include "libavutil/opt.h"
26
27#include "avfilter.h"
28#include "filters.h"
29#include "formats.h"
30#include "video.h"
31
32typedef struct SwapRectContext {
33 const AVClass *class;
34 char *w, *h;
35 char *x1, *y1;
36 char *x2, *y2;
37
39 int pixsteps[4];
40
42 uint8_t *temp;
44
45#define OFFSET(x) offsetof(SwapRectContext, x)
46#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
47static const AVOption swaprect_options[] = {
48 { "w", "set rect width", OFFSET(w), AV_OPT_TYPE_STRING, {.str="w/2"}, 0, 0, .flags = FLAGS },
49 { "h", "set rect height", OFFSET(h), AV_OPT_TYPE_STRING, {.str="h/2"}, 0, 0, .flags = FLAGS },
50 { "x1", "set 1st rect x top left coordinate", OFFSET(x1), AV_OPT_TYPE_STRING, {.str="w/2"}, 0, 0, .flags = FLAGS },
51 { "y1", "set 1st rect y top left coordinate", OFFSET(y1), AV_OPT_TYPE_STRING, {.str="h/2"}, 0, 0, .flags = FLAGS },
52 { "x2", "set 2nd rect x top left coordinate", OFFSET(x2), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, .flags = FLAGS },
53 { "y2", "set 2nd rect y top left coordinate", OFFSET(y2), AV_OPT_TYPE_STRING, {.str="0"}, 0, 0, .flags = FLAGS },
54 { NULL },
55};
56
58
60 AVFilterFormatsConfig **cfg_in,
61 AVFilterFormatsConfig **cfg_out)
62{
63 int reject_flags = AV_PIX_FMT_FLAG_PAL |
66
67 return ff_set_common_formats2(ctx, cfg_in, cfg_out,
68 ff_formats_pixdesc_filter(0, reject_flags));
69}
70
71static const char *const var_names[] = { "w", "h", "a", "n", "t", "sar", "dar", NULL };
73
74static int filter_frame(AVFilterLink *inlink, AVFrame *in)
75{
76 FilterLink *inl = ff_filter_link(inlink);
77 AVFilterContext *ctx = inlink->dst;
78 AVFilterLink *outlink = ctx->outputs[0];
79 SwapRectContext *s = ctx->priv;
80 double var_values[VAR_VARS_NB];
81 int x1[4], y1[4];
82 int x2[4], y2[4];
83 int aw[4], ah[4];
84 int lw[4], lh[4];
85 int pw[4], ph[4];
86 double dw, dh;
87 double dx1, dy1;
88 double dx2, dy2;
89 int y, p, w, h, ret;
90
91 var_values[VAR_W] = inlink->w;
92 var_values[VAR_H] = inlink->h;
93 var_values[VAR_A] = (float) inlink->w / inlink->h;
94 var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ? av_q2d(inlink->sample_aspect_ratio) : 1;
95 var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
96 var_values[VAR_N] = inl->frame_count_out;
97 var_values[VAR_T] = in->pts == AV_NOPTS_VALUE ? NAN : in->pts * av_q2d(inlink->time_base);
98
99 ret = av_expr_parse_and_eval(&dw, s->w,
100 var_names, &var_values[0],
101 NULL, NULL, NULL, NULL,
102 0, 0, ctx);
103 if (ret < 0)
104 return ret;
105
106 ret = av_expr_parse_and_eval(&dh, s->h,
107 var_names, &var_values[0],
108 NULL, NULL, NULL, NULL,
109 0, 0, ctx);
110 if (ret < 0)
111 return ret;
112
113 ret = av_expr_parse_and_eval(&dx1, s->x1,
114 var_names, &var_values[0],
115 NULL, NULL, NULL, NULL,
116 0, 0, ctx);
117 if (ret < 0)
118 return ret;
119
120 ret = av_expr_parse_and_eval(&dy1, s->y1,
121 var_names, &var_values[0],
122 NULL, NULL, NULL, NULL,
123 0, 0, ctx);
124 if (ret < 0)
125 return ret;
126
127 ret = av_expr_parse_and_eval(&dx2, s->x2,
128 var_names, &var_values[0],
129 NULL, NULL, NULL, NULL,
130 0, 0, ctx);
131 if (ret < 0)
132 return ret;
133
134 ret = av_expr_parse_and_eval(&dy2, s->y2,
135 var_names, &var_values[0],
136 NULL, NULL, NULL, NULL,
137 0, 0, ctx);
138 if (ret < 0)
139 return ret;
140
141 w = dw; h = dh; x1[0] = dx1; y1[0] = dy1; x2[0] = dx2; y2[0] = dy2;
142
143 x1[0] = av_clip(x1[0], 0, inlink->w - 1);
144 y1[0] = av_clip(y1[0], 0, inlink->h - 1);
145
146 x2[0] = av_clip(x2[0], 0, inlink->w - 1);
147 y2[0] = av_clip(y2[0], 0, inlink->h - 1);
148
149 ah[1] = ah[2] = AV_CEIL_RSHIFT(h, s->desc->log2_chroma_h);
150 ah[0] = ah[3] = h;
151 aw[1] = aw[2] = AV_CEIL_RSHIFT(w, s->desc->log2_chroma_w);
152 aw[0] = aw[3] = w;
153
154 w = FFMIN3(w, inlink->w - x1[0], inlink->w - x2[0]);
155 h = FFMIN3(h, inlink->h - y1[0], inlink->h - y2[0]);
156
157 ph[1] = ph[2] = AV_CEIL_RSHIFT(h, s->desc->log2_chroma_h);
158 ph[0] = ph[3] = h;
159 pw[1] = pw[2] = AV_CEIL_RSHIFT(w, s->desc->log2_chroma_w);
160 pw[0] = pw[3] = w;
161
162 lh[1] = lh[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
163 lh[0] = lh[3] = inlink->h;
164 lw[1] = lw[2] = AV_CEIL_RSHIFT(inlink->w, s->desc->log2_chroma_w);
165 lw[0] = lw[3] = inlink->w;
166
167 x1[1] = x1[2] = (x1[0] >> s->desc->log2_chroma_w);
168 x1[0] = x1[3] = x1[0];
169 y1[1] = y1[2] = (y1[0] >> s->desc->log2_chroma_h);
170 y1[0] = y1[3] = y1[0];
171
172 x2[1] = x2[2] = (x2[0] >> s->desc->log2_chroma_w);
173 x2[0] = x2[3] = x2[0];
174 y2[1] = y2[2] = (y2[0] >> s->desc->log2_chroma_h);
175 y2[0] = y2[3] = y2[0];
176
177
178 av_assert0(FFMAX(x1[1], x2[1]) + pw[1] <= lw[1]);
179 av_assert0(FFMAX(y1[1], y2[1]) + ph[1] <= lh[1]);
180
181 for (p = 0; p < s->nb_planes; p++) {
182 if (ph[p] == ah[p] && pw[p] == aw[p]) {
183 uint8_t *src = in->data[p] + y1[p] * in->linesize[p] + x1[p] * s->pixsteps[p];
184 uint8_t *dst = in->data[p] + y2[p] * in->linesize[p] + x2[p] * s->pixsteps[p];
185
186 for (y = 0; y < ph[p]; y++) {
187 memcpy(s->temp, src, pw[p] * s->pixsteps[p]);
188 memmove(src, dst, pw[p] * s->pixsteps[p]);
189 memcpy(dst, s->temp, pw[p] * s->pixsteps[p]);
190 src += in->linesize[p];
191 dst += in->linesize[p];
192 }
193 }
194 }
195
196 return ff_filter_frame(outlink, in);
197}
198
199static int config_input(AVFilterLink *inlink)
200{
201 AVFilterContext *ctx = inlink->dst;
202 SwapRectContext *s = ctx->priv;
203 int size = 0;
204
205 if (!s->w || !s->h ||
206 !s->x1 || !s->y1 ||
207 !s->x2 || !s->y2)
208 return AVERROR(EINVAL);
209
210 s->desc = av_pix_fmt_desc_get(inlink->format);
211 av_image_fill_max_pixsteps(s->pixsteps, NULL, s->desc);
212 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
213
214 for (int p = 0; p < s->nb_planes; p++) {
215 int shift = p == 1 || p == 2 ? s->desc->log2_chroma_w : 0;
216 int width = AV_CEIL_RSHIFT(inlink->w, shift);
217
218 if (width > INT_MAX / s->pixsteps[p])
219 return AVERROR(EINVAL);
220 size = FFMAX(size, width * s->pixsteps[p]);
221 }
222
223 s->temp = av_malloc(size);
224 if (!s->temp)
225 return AVERROR(ENOMEM);
226
227 return 0;
228}
229
231{
232 SwapRectContext *s = ctx->priv;
233 av_freep(&s->temp);
234}
235
236static const AVFilterPad inputs[] = {
237 {
238 .name = "default",
239 .type = AVMEDIA_TYPE_VIDEO,
241 .filter_frame = filter_frame,
242 .config_props = config_input,
243 },
244};
245
247 .p.name = "swaprect",
248 .p.description = NULL_IF_CONFIG_SMALL("Swap 2 rectangular objects in video."),
249 .p.priv_class = &swaprect_class,
251 .priv_size = sizeof(SwapRectContext),
252 .uninit = uninit,
256 .process_command = ff_filter_process_command,
257};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
@ VAR_T
Definition aeval.c:53
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
static const AVFilterPad inputs[]
Definition af_aap.c:299
static int config_input(AVFilterLink *inlink)
const FFFilter ff_vf_swaprect
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
@ VAR_H
Definition avfilter.c:565
@ VAR_W
Definition avfilter.c:564
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition avfilter.c:906
Main libavfilter public API header.
static int FUNC ph(CodedBitstreamContext *ctx, RWContext *rw, H266RawPH *current)
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define av_clip
Definition common.h:100
#define NULL
Definition coverity.c:32
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
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.
Definition eval.c:839
simple arithmetic expression evaluator
int ff_set_common_formats2(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out, AVFilterFormats *formats)
Definition formats.c:1137
AVFilterFormats * ff_formats_pixdesc_filter(unsigned want, unsigned rej)
Construct a formats list containing all pixel formats with certain properties.
Definition formats.c:620
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#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
#define AVERROR(e)
Definition error.h:45
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition rational.h:104
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
void av_image_fill_max_pixsteps(int max_pixsteps[4], int max_pixstep_comps[4], const AVPixFmtDescriptor *pixdesc)
Compute the max pixel step for each plane of an image with a format described by pixdesc.
Definition imgutils.c:35
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
misc image utilities
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int shift(int a, int b)
Definition bonk.c:261
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define AVFILTERPAD_FLAG_NEEDS_WRITABLE
The filter expects writable frames from its input link, duplicating data buffers if needed.
Definition filters.h:59
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
uint8_t w
Definition llvidencdsp.c:39
#define FFMAX(a, b)
Definition macros.h:47
#define FFMIN3(a, b, c)
Definition macros.h:50
#define NAN
Memory handling functions.
@ VAR_N
Definition noise.c:47
@ VAR_VARS_NB
Definition noise.c:59
static const char *const var_names[]
Definition noise.c:30
#define av_malloc(s)
Definition ops_static.c:52
AVOptions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end.
Definition pixdesc.h:124
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition pixdesc.h:128
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition pixdesc.h:120
@ VAR_SAR
Definition scale_eval.c:49
@ VAR_A
Definition scale_eval.c:48
@ VAR_DAR
Definition scale_eval.c:50
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
Lists of formats / etc.
Definition avfilter.h:120
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
int num
Numerator.
Definition rational.h:59
const AVPixFmtDescriptor * desc
Definition vf_swaprect.c:41
uint8_t * temp
Definition vf_swaprect.c:42
#define av_freep(p)
#define src
Definition vp8dsp.c:248
static AVFormatContext * ctx
Definition movenc.c:49
#define width
Definition dsp.h:89
int size
static int config_input(AVFilterLink *inlink)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_swaprect.c:74
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition vf_swaprect.c:59
static const AVOption swaprect_options[]
Definition vf_swaprect.c:47
static av_cold void uninit(AVFilterContext *ctx)
#define OFFSET(x)
Definition vf_swaprect.c:45
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