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