]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_crop.c
48af9c8127ac425eab55356498842026459c42d1
[ffmpeg] / libavfilter / vf_crop.c
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 /* #define DEBUG */
27
28 #include "avfilter.h"
29 #include "formats.h"
30 #include "video.h"
31 #include "libavutil/eval.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/libm.h"
34 #include "libavutil/imgutils.h"
35 #include "libavutil/mathematics.h"
36
37 static const char *const var_names[] = {
38     "in_w", "iw",   ///< width  of the input video
39     "in_h", "ih",   ///< height of the input video
40     "out_w", "ow",  ///< width  of the cropped video
41     "out_h", "oh",  ///< height of the cropped video
42     "a",
43     "sar",
44     "dar",
45     "hsub",
46     "vsub",
47     "x",
48     "y",
49     "n",            ///< number of frame
50     "pos",          ///< position in the file
51     "t",            ///< timestamp expressed in seconds
52     NULL
53 };
54
55 enum var_name {
56     VAR_IN_W,  VAR_IW,
57     VAR_IN_H,  VAR_IH,
58     VAR_OUT_W, VAR_OW,
59     VAR_OUT_H, VAR_OH,
60     VAR_A,
61     VAR_SAR,
62     VAR_DAR,
63     VAR_HSUB,
64     VAR_VSUB,
65     VAR_X,
66     VAR_Y,
67     VAR_N,
68     VAR_POS,
69     VAR_T,
70     VAR_VARS_NB
71 };
72
73 typedef struct {
74     int  x;             ///< x offset of the non-cropped area with respect to the input area
75     int  y;             ///< y offset of the non-cropped area with respect to the input area
76     int  w;             ///< width of the cropped area
77     int  h;             ///< height of the cropped area
78
79     AVRational out_sar; ///< output sample aspect ratio
80     int keep_aspect;    ///< keep display aspect ratio when cropping
81
82     int max_step[4];    ///< max pixel step for each plane, expressed as a number of bytes
83     int hsub, vsub;     ///< chroma subsampling
84     char x_expr[256], y_expr[256], ow_expr[256], oh_expr[256];
85     AVExpr *x_pexpr, *y_pexpr;  /* parsed expressions for x and y */
86     double var_values[VAR_VARS_NB];
87 } CropContext;
88
89 static int query_formats(AVFilterContext *ctx)
90 {
91     static const enum PixelFormat pix_fmts[] = {
92         PIX_FMT_RGB48BE,      PIX_FMT_RGB48LE,
93         PIX_FMT_BGR48BE,      PIX_FMT_BGR48LE,
94         PIX_FMT_ARGB,         PIX_FMT_RGBA,
95         PIX_FMT_ABGR,         PIX_FMT_BGRA,
96         PIX_FMT_RGB24,        PIX_FMT_BGR24,
97         PIX_FMT_RGB565BE,     PIX_FMT_RGB565LE,
98         PIX_FMT_RGB555BE,     PIX_FMT_RGB555LE,
99         PIX_FMT_BGR565BE,     PIX_FMT_BGR565LE,
100         PIX_FMT_BGR555BE,     PIX_FMT_BGR555LE,
101         PIX_FMT_GRAY16BE,     PIX_FMT_GRAY16LE,
102         PIX_FMT_YUV420P16LE,  PIX_FMT_YUV420P16BE,
103         PIX_FMT_YUV422P16LE,  PIX_FMT_YUV422P16BE,
104         PIX_FMT_YUV444P16LE,  PIX_FMT_YUV444P16BE,
105         PIX_FMT_YUV444P,      PIX_FMT_YUV422P,
106         PIX_FMT_YUV420P,      PIX_FMT_YUV411P,
107         PIX_FMT_YUV410P,      PIX_FMT_YUV440P,
108         PIX_FMT_YUVJ444P,     PIX_FMT_YUVJ422P,
109         PIX_FMT_YUVJ420P,     PIX_FMT_YUVJ440P,
110         PIX_FMT_YUVA420P,
111         PIX_FMT_RGB8,         PIX_FMT_BGR8,
112         PIX_FMT_RGB4_BYTE,    PIX_FMT_BGR4_BYTE,
113         PIX_FMT_PAL8,         PIX_FMT_GRAY8,
114         PIX_FMT_NONE
115     };
116
117     ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
118
119     return 0;
120 }
121
122 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
123 {
124     CropContext *crop = ctx->priv;
125
126     av_strlcpy(crop->ow_expr, "iw", sizeof(crop->ow_expr));
127     av_strlcpy(crop->oh_expr, "ih", sizeof(crop->oh_expr));
128     av_strlcpy(crop->x_expr, "(in_w-out_w)/2", sizeof(crop->x_expr));
129     av_strlcpy(crop->y_expr, "(in_h-out_h)/2", sizeof(crop->y_expr));
130
131     if (args)
132         sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]:%d", crop->ow_expr, crop->oh_expr, crop->x_expr, crop->y_expr, &crop->keep_aspect);
133
134     return 0;
135 }
136
137 static av_cold void uninit(AVFilterContext *ctx)
138 {
139     CropContext *crop = ctx->priv;
140
141     av_expr_free(crop->x_pexpr); crop->x_pexpr = NULL;
142     av_expr_free(crop->y_pexpr); crop->y_pexpr = NULL;
143 }
144
145 static inline int normalize_double(int *n, double d)
146 {
147     int ret = 0;
148
149     if (isnan(d)) {
150         ret = AVERROR(EINVAL);
151     } else if (d > INT_MAX || d < INT_MIN) {
152         *n = d > INT_MAX ? INT_MAX : INT_MIN;
153         ret = AVERROR(EINVAL);
154     } else
155         *n = round(d);
156
157     return ret;
158 }
159
160 static int config_input(AVFilterLink *link)
161 {
162     AVFilterContext *ctx = link->dst;
163     CropContext *crop = ctx->priv;
164     const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[link->format];
165     int ret;
166     const char *expr;
167     double res;
168
169     crop->var_values[VAR_IN_W]  = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
170     crop->var_values[VAR_IN_H]  = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
171     crop->var_values[VAR_A]     = (float) link->w / link->h;
172     crop->var_values[VAR_SAR]   = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
173     crop->var_values[VAR_DAR]   = crop->var_values[VAR_A] * crop->var_values[VAR_SAR];
174     crop->var_values[VAR_HSUB]  = 1<<pix_desc->log2_chroma_w;
175     crop->var_values[VAR_VSUB]  = 1<<pix_desc->log2_chroma_h;
176     crop->var_values[VAR_X]     = NAN;
177     crop->var_values[VAR_Y]     = NAN;
178     crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
179     crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
180     crop->var_values[VAR_N]     = 0;
181     crop->var_values[VAR_T]     = NAN;
182     crop->var_values[VAR_POS]   = NAN;
183
184     av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
185     crop->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
186     crop->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
187
188     if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
189                                       var_names, crop->var_values,
190                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
191     crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
192     if ((ret = av_expr_parse_and_eval(&res, (expr = crop->oh_expr),
193                                       var_names, crop->var_values,
194                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
195     crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
196     /* evaluate again ow as it may depend on oh */
197     if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
198                                       var_names, crop->var_values,
199                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
200     crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
201     if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
202         normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
203         av_log(ctx, AV_LOG_ERROR,
204                "Too big value or invalid expression for out_w/ow or out_h/oh. "
205                "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
206                crop->ow_expr, crop->oh_expr);
207         return AVERROR(EINVAL);
208     }
209     crop->w &= ~((1 << crop->hsub) - 1);
210     crop->h &= ~((1 << crop->vsub) - 1);
211
212     if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
213                              NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
214         (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
215                              NULL, NULL, NULL, NULL, 0, ctx)) < 0)
216         return AVERROR(EINVAL);
217
218     if (crop->keep_aspect) {
219         AVRational dar = av_mul_q(link->sample_aspect_ratio,
220                                   (AVRational){ link->w, link->h });
221         av_reduce(&crop->out_sar.num, &crop->out_sar.den,
222                   dar.num * crop->h, dar.den * crop->w, INT_MAX);
223     } else
224         crop->out_sar = link->sample_aspect_ratio;
225
226     av_log(ctx, AV_LOG_INFO, "w:%d h:%d sar:%d/%d -> w:%d h:%d sar:%d/%d\n",
227            link->w, link->h, link->sample_aspect_ratio.num, link->sample_aspect_ratio.den,
228            crop->w, crop->h, crop->out_sar.num, crop->out_sar.den);
229
230     if (crop->w <= 0 || crop->h <= 0 ||
231         crop->w > link->w || crop->h > link->h) {
232         av_log(ctx, AV_LOG_ERROR,
233                "Invalid too big or non positive size for width '%d' or height '%d'\n",
234                crop->w, crop->h);
235         return AVERROR(EINVAL);
236     }
237
238     /* set default, required in the case the first computed value for x/y is NAN */
239     crop->x = (link->w - crop->w) / 2;
240     crop->y = (link->h - crop->h) / 2;
241     crop->x &= ~((1 << crop->hsub) - 1);
242     crop->y &= ~((1 << crop->vsub) - 1);
243     return 0;
244
245 fail_expr:
246     av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
247     return ret;
248 }
249
250 static int config_output(AVFilterLink *link)
251 {
252     CropContext *crop = link->src->priv;
253
254     link->w = crop->w;
255     link->h = crop->h;
256     link->sample_aspect_ratio = crop->out_sar;
257
258     return 0;
259 }
260
261 static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
262 {
263     AVFilterContext *ctx = link->dst;
264     CropContext *crop = ctx->priv;
265     AVFilterBufferRef *ref2;
266     int i;
267
268     ref2 = avfilter_ref_buffer(picref, ~0);
269     ref2->video->w = crop->w;
270     ref2->video->h = crop->h;
271
272     crop->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
273         NAN : picref->pts * av_q2d(link->time_base);
274     crop->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
275     crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
276     crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
277     crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
278
279     normalize_double(&crop->x, crop->var_values[VAR_X]);
280     normalize_double(&crop->y, crop->var_values[VAR_Y]);
281
282     if (crop->x < 0) crop->x = 0;
283     if (crop->y < 0) crop->y = 0;
284     if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
285     if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
286     crop->x &= ~((1 << crop->hsub) - 1);
287     crop->y &= ~((1 << crop->vsub) - 1);
288
289     av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
290             (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
291             crop->y, crop->x+crop->w, crop->y+crop->h);
292
293     ref2->data[0] += crop->y * ref2->linesize[0];
294     ref2->data[0] += crop->x * crop->max_step[0];
295
296     if (!(av_pix_fmt_descriptors[link->format].flags & PIX_FMT_PAL ||
297           av_pix_fmt_descriptors[link->format].flags & PIX_FMT_PSEUDOPAL)) {
298         for (i = 1; i < 3; i ++) {
299             if (ref2->data[i]) {
300                 ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i];
301                 ref2->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
302             }
303         }
304     }
305
306     /* alpha plane */
307     if (ref2->data[3]) {
308         ref2->data[3] += crop->y * ref2->linesize[3];
309         ref2->data[3] += crop->x * crop->max_step[3];
310     }
311
312     ff_start_frame(link->dst->outputs[0], ref2);
313 }
314
315 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
316 {
317     AVFilterContext *ctx = link->dst;
318     CropContext *crop = ctx->priv;
319
320     if (y >= crop->y + crop->h || y + h <= crop->y)
321         return;
322
323     if (y < crop->y) {
324         h -= crop->y - y;
325         y  = crop->y;
326     }
327     if (y + h > crop->y + crop->h)
328         h = crop->y + crop->h - y;
329
330     ff_draw_slice(ctx->outputs[0], y - crop->y, h, slice_dir);
331 }
332
333 static void end_frame(AVFilterLink *link)
334 {
335     CropContext *crop = link->dst->priv;
336
337     crop->var_values[VAR_N] += 1.0;
338     avfilter_unref_buffer(link->cur_buf);
339     ff_end_frame(link->dst->outputs[0]);
340 }
341
342 AVFilter avfilter_vf_crop = {
343     .name      = "crop",
344     .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
345
346     .priv_size = sizeof(CropContext),
347
348     .query_formats = query_formats,
349     .init          = init,
350     .uninit        = uninit,
351
352     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
353                                     .type             = AVMEDIA_TYPE_VIDEO,
354                                     .start_frame      = start_frame,
355                                     .draw_slice       = draw_slice,
356                                     .end_frame        = end_frame,
357                                     .get_video_buffer = ff_null_get_video_buffer,
358                                     .config_props     = config_input, },
359                                   { .name = NULL}},
360     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
361                                     .type             = AVMEDIA_TYPE_VIDEO,
362                                     .config_props     = config_output, },
363                                   { .name = NULL}},
364 };