FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavfilter/vf_crop.c
Date: 2024-04-25 15:36:26
Exec Total Coverage
Lines: 115 163 70.6%
Functions: 6 7 85.7%
Branches: 36 78 46.2%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2007 Bobby Bingham
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 /**
22 * @file
23 * video crop filter
24 */
25
26 #include <stdio.h>
27
28 #include "avfilter.h"
29 #include "formats.h"
30 #include "internal.h"
31 #include "video.h"
32 #include "libavutil/eval.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/internal.h"
35 #include "libavutil/libm.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/opt.h"
39
40 static const char *const var_names[] = {
41 "in_w", "iw", ///< width of the input video
42 "in_h", "ih", ///< height of the input video
43 "out_w", "ow", ///< width of the cropped video
44 "out_h", "oh", ///< height of the cropped video
45 "a",
46 "sar",
47 "dar",
48 "hsub",
49 "vsub",
50 "x",
51 "y",
52 "n", ///< number of frame
53 #if FF_API_FRAME_PKT
54 "pos", ///< position in the file
55 #endif
56 "t", ///< timestamp expressed in seconds
57 NULL
58 };
59
60 enum var_name {
61 VAR_IN_W, VAR_IW,
62 VAR_IN_H, VAR_IH,
63 VAR_OUT_W, VAR_OW,
64 VAR_OUT_H, VAR_OH,
65 VAR_A,
66 VAR_SAR,
67 VAR_DAR,
68 VAR_HSUB,
69 VAR_VSUB,
70 VAR_X,
71 VAR_Y,
72 VAR_N,
73 #if FF_API_FRAME_PKT
74 VAR_POS,
75 #endif
76 VAR_T,
77 VAR_VARS_NB
78 };
79
80 typedef struct CropContext {
81 const AVClass *class;
82 int x; ///< x offset of the non-cropped area with respect to the input area
83 int y; ///< y offset of the non-cropped area with respect to the input area
84 int w; ///< width of the cropped area
85 int h; ///< height of the cropped area
86
87 AVRational out_sar; ///< output sample aspect ratio
88 int keep_aspect; ///< keep display aspect ratio when cropping
89 int exact; ///< exact cropping, for subsampled formats
90
91 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes
92 int hsub, vsub; ///< chroma subsampling
93 char *x_expr, *y_expr, *w_expr, *h_expr;
94 AVExpr *x_pexpr, *y_pexpr; /* parsed expressions for x and y */
95 double var_values[VAR_VARS_NB];
96 } CropContext;
97
98 189 static int query_formats(AVFilterContext *ctx)
99 {
100 189 int reject_flags = AV_PIX_FMT_FLAG_BITSTREAM | FF_PIX_FMT_FLAG_SW_FLAT_SUB;
101
102 189 return ff_set_common_formats(ctx, ff_formats_pixdesc_filter(0, reject_flags));
103 }
104
105 377 static av_cold void uninit(AVFilterContext *ctx)
106 {
107 377 CropContext *s = ctx->priv;
108
109 377 av_expr_free(s->x_pexpr);
110 377 s->x_pexpr = NULL;
111 377 av_expr_free(s->y_pexpr);
112 377 s->y_pexpr = NULL;
113 377 }
114
115 3162 static inline int normalize_double(int *n, double d)
116 {
117 3162 int ret = 0;
118
119
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3162 times.
3162 if (isnan(d)) {
120 ret = AVERROR(EINVAL);
121
2/4
✓ Branch 0 taken 3162 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 3162 times.
3162 } else if (d > INT_MAX || d < INT_MIN) {
122 *n = d > INT_MAX ? INT_MAX : INT_MIN;
123 ret = AVERROR(EINVAL);
124 } else
125 3162 *n = lrint(d);
126
127 3162 return ret;
128 }
129
130 188 static int config_input(AVFilterLink *link)
131 {
132 188 AVFilterContext *ctx = link->dst;
133 188 CropContext *s = ctx->priv;
134 188 const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(link->format);
135 int ret;
136 const char *expr;
137 double res;
138
139 188 s->var_values[VAR_IN_W] = s->var_values[VAR_IW] = ctx->inputs[0]->w;
140 188 s->var_values[VAR_IN_H] = s->var_values[VAR_IH] = ctx->inputs[0]->h;
141 188 s->var_values[VAR_A] = (float) link->w / link->h;
142
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 s->var_values[VAR_SAR] = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
143 188 s->var_values[VAR_DAR] = s->var_values[VAR_A] * s->var_values[VAR_SAR];
144 188 s->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
145 188 s->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
146 188 s->var_values[VAR_X] = NAN;
147 188 s->var_values[VAR_Y] = NAN;
148 188 s->var_values[VAR_OUT_W] = s->var_values[VAR_OW] = NAN;
149 188 s->var_values[VAR_OUT_H] = s->var_values[VAR_OH] = NAN;
150 188 s->var_values[VAR_N] = 0;
151 188 s->var_values[VAR_T] = NAN;
152 #if FF_API_FRAME_PKT
153 188 s->var_values[VAR_POS] = NAN;
154 #endif
155
156 188 av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc);
157
158
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 if (pix_desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
159 s->hsub = 1;
160 s->vsub = 1;
161 } else {
162 188 s->hsub = pix_desc->log2_chroma_w;
163 188 s->vsub = pix_desc->log2_chroma_h;
164 }
165
166 188 av_expr_parse_and_eval(&res, (expr = s->w_expr),
167 188 var_names, s->var_values,
168 NULL, NULL, NULL, NULL, NULL, 0, ctx);
169 188 s->var_values[VAR_OUT_W] = s->var_values[VAR_OW] = res;
170
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 if ((ret = av_expr_parse_and_eval(&res, (expr = s->h_expr),
171 188 var_names, s->var_values,
172 NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
173 goto fail_expr;
174 188 s->var_values[VAR_OUT_H] = s->var_values[VAR_OH] = res;
175 /* evaluate again ow as it may depend on oh */
176
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 if ((ret = av_expr_parse_and_eval(&res, (expr = s->w_expr),
177 188 var_names, s->var_values,
178 NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
179 goto fail_expr;
180
181 188 s->var_values[VAR_OUT_W] = s->var_values[VAR_OW] = res;
182
2/4
✓ Branch 1 taken 188 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 188 times.
376 if (normalize_double(&s->w, s->var_values[VAR_OUT_W]) < 0 ||
183 188 normalize_double(&s->h, s->var_values[VAR_OUT_H]) < 0) {
184 av_log(ctx, AV_LOG_ERROR,
185 "Too big value or invalid expression for out_w/ow or out_h/oh. "
186 "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
187 s->w_expr, s->h_expr);
188 return AVERROR(EINVAL);
189 }
190
191
1/2
✓ Branch 0 taken 188 times.
✗ Branch 1 not taken.
188 if (!s->exact) {
192 188 s->w &= ~((1 << s->hsub) - 1);
193 188 s->h &= ~((1 << s->vsub) - 1);
194 }
195
196 188 av_expr_free(s->x_pexpr);
197 188 av_expr_free(s->y_pexpr);
198 188 s->x_pexpr = s->y_pexpr = NULL;
199
1/2
✓ Branch 1 taken 188 times.
✗ Branch 2 not taken.
188 if ((ret = av_expr_parse(&s->x_pexpr, s->x_expr, var_names,
200
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
201 188 (ret = av_expr_parse(&s->y_pexpr, s->y_expr, var_names,
202 NULL, NULL, NULL, NULL, 0, ctx)) < 0)
203 return AVERROR(EINVAL);
204
205
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 188 times.
188 if (s->keep_aspect) {
206 AVRational dar = av_mul_q(link->sample_aspect_ratio,
207 (AVRational){ link->w, link->h });
208 av_reduce(&s->out_sar.num, &s->out_sar.den,
209 dar.num * s->h, dar.den * s->w, INT_MAX);
210 } else
211 188 s->out_sar = link->sample_aspect_ratio;
212
213 188 av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d sar:%d/%d -> w:%d h:%d sar:%d/%d\n",
214 link->w, link->h, link->sample_aspect_ratio.num, link->sample_aspect_ratio.den,
215 s->w, s->h, s->out_sar.num, s->out_sar.den);
216
217
2/4
✓ Branch 0 taken 188 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 188 times.
✗ Branch 3 not taken.
188 if (s->w <= 0 || s->h <= 0 ||
218
2/4
✓ Branch 0 taken 188 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 188 times.
188 s->w > link->w || s->h > link->h) {
219 av_log(ctx, AV_LOG_ERROR,
220 "Invalid too big or non positive size for width '%d' or height '%d'\n",
221 s->w, s->h);
222 return AVERROR(EINVAL);
223 }
224
225 /* set default, required in the case the first computed value for x/y is NAN */
226 188 s->x = (link->w - s->w) / 2;
227 188 s->y = (link->h - s->h) / 2;
228
1/2
✓ Branch 0 taken 188 times.
✗ Branch 1 not taken.
188 if (!s->exact) {
229 188 s->x &= ~((1 << s->hsub) - 1);
230 188 s->y &= ~((1 << s->vsub) - 1);
231 }
232 188 return 0;
233
234 fail_expr:
235 av_log(ctx, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
236 return ret;
237 }
238
239 188 static int config_output(AVFilterLink *link)
240 {
241 188 CropContext *s = link->src->priv;
242 188 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
243
244
1/2
✓ Branch 0 taken 188 times.
✗ Branch 1 not taken.
188 if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
245 // Hardware frames adjust the cropping regions rather than
246 // changing the frame size.
247 } else {
248 188 link->w = s->w;
249 188 link->h = s->h;
250 }
251 188 link->sample_aspect_ratio = s->out_sar;
252
253 188 return 0;
254 }
255
256 1393 static int filter_frame(AVFilterLink *link, AVFrame *frame)
257 {
258 1393 AVFilterContext *ctx = link->dst;
259 1393 CropContext *s = ctx->priv;
260 1393 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
261 int i;
262
263 1393 s->var_values[VAR_N] = link->frame_count_out;
264 2786 s->var_values[VAR_T] = frame->pts == AV_NOPTS_VALUE ?
265
1/2
✓ Branch 0 taken 1393 times.
✗ Branch 1 not taken.
1393 NAN : frame->pts * av_q2d(link->time_base);
266 #if FF_API_FRAME_PKT
267 FF_DISABLE_DEPRECATION_WARNINGS
268 2786 s->var_values[VAR_POS] = frame->pkt_pos == -1 ?
269
2/2
✓ Branch 0 taken 1176 times.
✓ Branch 1 taken 217 times.
1393 NAN : frame->pkt_pos;
270 FF_ENABLE_DEPRECATION_WARNINGS
271 #endif
272 1393 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
273 1393 s->var_values[VAR_Y] = av_expr_eval(s->y_pexpr, s->var_values, NULL);
274 /* It is necessary if x is expressed from y */
275 1393 s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, NULL);
276
277 1393 normalize_double(&s->x, s->var_values[VAR_X]);
278 1393 normalize_double(&s->y, s->var_values[VAR_Y]);
279
280
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1393 times.
1393 if (s->x < 0)
281 s->x = 0;
282
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1393 times.
1393 if (s->y < 0)
283 s->y = 0;
284
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1393 times.
1393 if ((unsigned)s->x + (unsigned)s->w > link->w)
285 s->x = link->w - s->w;
286
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1393 times.
1393 if ((unsigned)s->y + (unsigned)s->h > link->h)
287 s->y = link->h - s->h;
288
1/2
✓ Branch 0 taken 1393 times.
✗ Branch 1 not taken.
1393 if (!s->exact) {
289 1393 s->x &= ~((1 << s->hsub) - 1);
290 1393 s->y &= ~((1 << s->vsub) - 1);
291 }
292
293 1393 av_log(ctx, AV_LOG_TRACE, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
294 1393 (int)s->var_values[VAR_N], s->var_values[VAR_T],
295 1393 s->x, s->y, s->x+s->w, s->y+s->h);
296
297
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1393 times.
1393 if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
298 frame->crop_top += s->y;
299 frame->crop_left += s->x;
300 frame->crop_bottom = frame->height - frame->crop_top - frame->crop_bottom - s->h;
301 frame->crop_right = frame->width - frame->crop_left - frame->crop_right - s->w;
302 } else {
303 1393 frame->width = s->w;
304 1393 frame->height = s->h;
305
306 1393 frame->data[0] += s->y * frame->linesize[0];
307 1393 frame->data[0] += s->x * s->max_step[0];
308
309
2/2
✓ Branch 0 taken 1392 times.
✓ Branch 1 taken 1 times.
1393 if (!(desc->flags & AV_PIX_FMT_FLAG_PAL)) {
310
2/2
✓ Branch 0 taken 2784 times.
✓ Branch 1 taken 1392 times.
4176 for (i = 1; i < 3; i ++) {
311
2/2
✓ Branch 0 taken 2643 times.
✓ Branch 1 taken 141 times.
2784 if (frame->data[i]) {
312 2643 frame->data[i] += (s->y >> s->vsub) * frame->linesize[i];
313 2643 frame->data[i] += (s->x * s->max_step[i]) >> s->hsub;
314 }
315 }
316 }
317
318 /* alpha plane */
319
2/2
✓ Branch 0 taken 36 times.
✓ Branch 1 taken 1357 times.
1393 if (frame->data[3]) {
320 36 frame->data[3] += s->y * frame->linesize[3];
321 36 frame->data[3] += s->x * s->max_step[3];
322 }
323 }
324
325 1393 return ff_filter_frame(link->dst->outputs[0], frame);
326 }
327
328 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
329 char *res, int res_len, int flags)
330 {
331 CropContext *s = ctx->priv;
332 int ret;
333
334 if ( !strcmp(cmd, "out_w") || !strcmp(cmd, "w")
335 || !strcmp(cmd, "out_h") || !strcmp(cmd, "h")
336 || !strcmp(cmd, "x") || !strcmp(cmd, "y")) {
337
338 int old_x = s->x;
339 int old_y = s->y;
340 int old_w = s->w;
341 int old_h = s->h;
342
343 AVFilterLink *outlink = ctx->outputs[0];
344 AVFilterLink *inlink = ctx->inputs[0];
345
346 av_opt_set(s, cmd, args, 0);
347
348 if ((ret = config_input(inlink)) < 0) {
349 s->x = old_x;
350 s->y = old_y;
351 s->w = old_w;
352 s->h = old_h;
353 return ret;
354 }
355
356 ret = config_output(outlink);
357
358 } else
359 ret = AVERROR(ENOSYS);
360
361 return ret;
362 }
363
364 #define OFFSET(x) offsetof(CropContext, x)
365 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
366 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
367
368 static const AVOption crop_options[] = {
369 { "out_w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, 0, 0, TFLAGS },
370 { "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, 0, 0, TFLAGS },
371 { "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, 0, 0, TFLAGS },
372 { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, 0, 0, TFLAGS },
373 { "x", "set the x crop area expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "(in_w-out_w)/2"}, 0, 0, TFLAGS },
374 { "y", "set the y crop area expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "(in_h-out_h)/2"}, 0, 0, TFLAGS },
375 { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
376 { "exact", "do exact cropping", OFFSET(exact), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
377 { NULL }
378 };
379
380 AVFILTER_DEFINE_CLASS(crop);
381
382 static const AVFilterPad avfilter_vf_crop_inputs[] = {
383 {
384 .name = "default",
385 .type = AVMEDIA_TYPE_VIDEO,
386 .filter_frame = filter_frame,
387 .config_props = config_input,
388 },
389 };
390
391 static const AVFilterPad avfilter_vf_crop_outputs[] = {
392 {
393 .name = "default",
394 .type = AVMEDIA_TYPE_VIDEO,
395 .config_props = config_output,
396 },
397 };
398
399 const AVFilter ff_vf_crop = {
400 .name = "crop",
401 .description = NULL_IF_CONFIG_SMALL("Crop the input video."),
402 .priv_size = sizeof(CropContext),
403 .priv_class = &crop_class,
404 .uninit = uninit,
405 FILTER_INPUTS(avfilter_vf_crop_inputs),
406 FILTER_OUTPUTS(avfilter_vf_crop_outputs),
407 FILTER_QUERY_FUNC(query_formats),
408 .process_command = process_command,
409 };
410