]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_pad.c
Merge commit 'f1d8763a02b5fce9a7d9789e049d74a45b15e1e8'
[ffmpeg] / libavfilter / vf_pad.c
1 /*
2  * Copyright (c) 2008 vmrsss
3  * Copyright (c) 2009 Stefano Sabatini
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * video padding filter
25  */
26
27 #include "avfilter.h"
28 #include "formats.h"
29 #include "internal.h"
30 #include "video.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/common.h"
33 #include "libavutil/eval.h"
34 #include "libavutil/pixdesc.h"
35 #include "libavutil/colorspace.h"
36 #include "libavutil/avassert.h"
37 #include "libavutil/imgutils.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/mathematics.h"
40 #include "drawutils.h"
41
42 static const char *const var_names[] = {
43     "in_w",   "iw",
44     "in_h",   "ih",
45     "out_w",  "ow",
46     "out_h",  "oh",
47     "x",
48     "y",
49     "a",
50     "sar",
51     "dar",
52     "hsub",
53     "vsub",
54     NULL
55 };
56
57 enum var_name {
58     VAR_IN_W,   VAR_IW,
59     VAR_IN_H,   VAR_IH,
60     VAR_OUT_W,  VAR_OW,
61     VAR_OUT_H,  VAR_OH,
62     VAR_X,
63     VAR_Y,
64     VAR_A,
65     VAR_SAR,
66     VAR_DAR,
67     VAR_HSUB,
68     VAR_VSUB,
69     VARS_NB
70 };
71
72 static int query_formats(AVFilterContext *ctx)
73 {
74     ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
75     return 0;
76 }
77
78 typedef struct {
79     int w, h;               ///< output dimensions, a value of 0 will result in the input size
80     int x, y;               ///< offsets of the input area with respect to the padded area
81     int in_w, in_h;         ///< width and height for the padded input video, which has to be aligned to the chroma values in order to avoid chroma issues
82
83     char w_expr[256];       ///< width  expression string
84     char h_expr[256];       ///< height expression string
85     char x_expr[256];       ///< width  expression string
86     char y_expr[256];       ///< height expression string
87
88     uint8_t rgba_color[4];  ///< color for the padding area
89     FFDrawContext draw;
90     FFDrawColor color;
91 } PadContext;
92
93 static av_cold int init(AVFilterContext *ctx, const char *args)
94 {
95     PadContext *pad = ctx->priv;
96     char color_string[128] = "black";
97
98     av_strlcpy(pad->w_expr, "iw", sizeof(pad->w_expr));
99     av_strlcpy(pad->h_expr, "ih", sizeof(pad->h_expr));
100     av_strlcpy(pad->x_expr, "0" , sizeof(pad->w_expr));
101     av_strlcpy(pad->y_expr, "0" , sizeof(pad->h_expr));
102
103     if (args)
104         sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]:%127s",
105                pad->w_expr, pad->h_expr, pad->x_expr, pad->y_expr, color_string);
106
107     if (av_parse_color(pad->rgba_color, color_string, -1, ctx) < 0)
108         return AVERROR(EINVAL);
109
110     return 0;
111 }
112
113 static int config_input(AVFilterLink *inlink)
114 {
115     AVFilterContext *ctx = inlink->dst;
116     PadContext *pad = ctx->priv;
117     int ret;
118     double var_values[VARS_NB], res;
119     char *expr;
120
121     ff_draw_init(&pad->draw, inlink->format, 0);
122     ff_draw_color(&pad->draw, &pad->color, pad->rgba_color);
123
124     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
125     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
126     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
127     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
128     var_values[VAR_A]     = (double) inlink->w / inlink->h;
129     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
130         (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
131     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
132     var_values[VAR_HSUB]  = 1 << pad->draw.hsub_max;
133     var_values[VAR_VSUB]  = 1 << pad->draw.vsub_max;
134
135     /* evaluate width and height */
136     av_expr_parse_and_eval(&res, (expr = pad->w_expr),
137                            var_names, var_values,
138                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
139     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
140     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->h_expr),
141                                       var_names, var_values,
142                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
143         goto eval_fail;
144     pad->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
145     /* evaluate the width again, as it may depend on the evaluated output height */
146     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->w_expr),
147                                       var_names, var_values,
148                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
149         goto eval_fail;
150     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
151
152     /* evaluate x and y */
153     av_expr_parse_and_eval(&res, (expr = pad->x_expr),
154                            var_names, var_values,
155                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
156     pad->x = var_values[VAR_X] = res;
157     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->y_expr),
158                                       var_names, var_values,
159                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
160         goto eval_fail;
161     pad->y = var_values[VAR_Y] = res;
162     /* evaluate x again, as it may depend on the evaluated y value */
163     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->x_expr),
164                                       var_names, var_values,
165                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
166         goto eval_fail;
167     pad->x = var_values[VAR_X] = res;
168
169     /* sanity check params */
170     if (pad->w < 0 || pad->h < 0 || pad->x < 0 || pad->y < 0) {
171         av_log(ctx, AV_LOG_ERROR, "Negative values are not acceptable.\n");
172         return AVERROR(EINVAL);
173     }
174
175     if (!pad->w)
176         pad->w = inlink->w;
177     if (!pad->h)
178         pad->h = inlink->h;
179
180     pad->w    = ff_draw_round_to_sub(&pad->draw, 0, -1, pad->w);
181     pad->h    = ff_draw_round_to_sub(&pad->draw, 1, -1, pad->h);
182     pad->x    = ff_draw_round_to_sub(&pad->draw, 0, -1, pad->x);
183     pad->y    = ff_draw_round_to_sub(&pad->draw, 1, -1, pad->y);
184     pad->in_w = ff_draw_round_to_sub(&pad->draw, 0, -1, inlink->w);
185     pad->in_h = ff_draw_round_to_sub(&pad->draw, 1, -1, inlink->h);
186
187     av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d -> w:%d h:%d x:%d y:%d color:0x%02X%02X%02X%02X\n",
188            inlink->w, inlink->h, pad->w, pad->h, pad->x, pad->y,
189            pad->rgba_color[0], pad->rgba_color[1], pad->rgba_color[2], pad->rgba_color[3]);
190
191     if (pad->x <  0 || pad->y <  0                      ||
192         pad->w <= 0 || pad->h <= 0                      ||
193         (unsigned)pad->x + (unsigned)inlink->w > pad->w ||
194         (unsigned)pad->y + (unsigned)inlink->h > pad->h) {
195         av_log(ctx, AV_LOG_ERROR,
196                "Input area %d:%d:%d:%d not within the padded area 0:0:%d:%d or zero-sized\n",
197                pad->x, pad->y, pad->x + inlink->w, pad->y + inlink->h, pad->w, pad->h);
198         return AVERROR(EINVAL);
199     }
200
201     return 0;
202
203 eval_fail:
204     av_log(NULL, AV_LOG_ERROR,
205            "Error when evaluating the expression '%s'\n", expr);
206     return ret;
207
208 }
209
210 static int config_output(AVFilterLink *outlink)
211 {
212     PadContext *pad = outlink->src->priv;
213
214     outlink->w = pad->w;
215     outlink->h = pad->h;
216     return 0;
217 }
218
219 static AVFilterBufferRef *get_video_buffer(AVFilterLink *inlink, int perms, int w, int h)
220 {
221     PadContext *pad = inlink->dst->priv;
222     int align = (perms&AV_PERM_ALIGN) ? AVFILTER_ALIGN : 1;
223
224     AVFilterBufferRef *picref = ff_get_video_buffer(inlink->dst->outputs[0], perms,
225                                                     w + (pad->w - pad->in_w) + 4*align,
226                                                     h + (pad->h - pad->in_h));
227     int plane;
228
229     if (!picref)
230         return NULL;
231
232     picref->video->w = w;
233     picref->video->h = h;
234
235     for (plane = 0; plane < 4 && picref->data[plane]; plane++)
236         picref->data[plane] += FFALIGN(pad->x >> pad->draw.hsub[plane], align) * pad->draw.pixelstep[plane] +
237                                       (pad->y >> pad->draw.vsub[plane])        * picref->linesize[plane];
238
239     return picref;
240 }
241
242 static int does_clip(PadContext *pad, AVFilterBufferRef *outpicref, int plane, int hsub, int vsub, int x, int y)
243 {
244     int64_t x_in_buf, y_in_buf;
245
246     x_in_buf =  outpicref->data[plane] - outpicref->buf->data[plane]
247              +  (x >> hsub) * pad->draw.pixelstep[plane]
248              +  (y >> vsub) * outpicref->linesize[plane];
249
250     if(x_in_buf < 0 || x_in_buf % pad->draw.pixelstep[plane])
251         return 1;
252     x_in_buf /= pad->draw.pixelstep[plane];
253
254     av_assert0(outpicref->buf->linesize[plane]>0); //while reference can use negative linesize the main buffer should not
255
256     y_in_buf = x_in_buf / outpicref->buf->linesize[plane];
257     x_in_buf %= outpicref->buf->linesize[plane];
258
259     if(   y_in_buf<<vsub >= outpicref->buf->h
260        || x_in_buf<<hsub >= outpicref->buf->w)
261         return 1;
262     return 0;
263 }
264
265 static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
266 {
267     PadContext *pad = inlink->dst->priv;
268     AVFilterBufferRef *out = avfilter_ref_buffer(in, ~0);
269     int plane, needs_copy;
270
271     if (!out) {
272         avfilter_unref_bufferp(&in);
273         return AVERROR(ENOMEM);
274     }
275
276     for (plane = 0; plane < 4 && out->data[plane] && pad->draw.pixelstep[plane]; plane++) {
277         int hsub = pad->draw.hsub[plane];
278         int vsub = pad->draw.vsub[plane];
279
280         av_assert0(out->buf->w > 0 && out->buf->h > 0);
281
282         if (out->format != out->buf->format) //unsupported currently
283             break;
284
285         out->data[plane] -= (pad->x  >> hsub) * pad->draw.pixelstep[plane] +
286                             (pad->y  >> vsub) * out->linesize[plane];
287
288         if (does_clip(pad, out, plane, hsub, vsub, 0,                   0) ||
289             does_clip(pad, out, plane, hsub, vsub, 0,          pad->h - 1) ||
290             does_clip(pad, out, plane, hsub, vsub, pad->w - 1,          0) ||
291             does_clip(pad, out, plane, hsub, vsub, pad->w - 1, pad->h - 1))
292             break;
293     }
294     needs_copy = plane < 4 && out->data[plane] || !(out->perms & AV_PERM_WRITE);
295     if (needs_copy) {
296         av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n");
297         avfilter_unref_buffer(out);
298         out = ff_get_video_buffer(inlink->dst->outputs[0], AV_PERM_WRITE | AV_PERM_NEG_LINESIZES,
299                                   FFMAX(inlink->w, pad->w),
300                                   FFMAX(inlink->h, pad->h));
301         if (!out) {
302             avfilter_unref_bufferp(&in);
303             return AVERROR(ENOMEM);
304         }
305
306         avfilter_copy_buffer_ref_props(out, in);
307     }
308
309     out->video->w = pad->w;
310     out->video->h = pad->h;
311
312     /* top bar */
313     if (pad->y) {
314         ff_fill_rectangle(&pad->draw, &pad->color,
315                           out->data, out->linesize,
316                           0, 0, pad->w, pad->y);
317     }
318
319     /* bottom bar */
320     if (pad->h > pad->y + pad->in_h) {
321         ff_fill_rectangle(&pad->draw, &pad->color,
322                           out->data, out->linesize,
323                           0, pad->y + pad->in_h, pad->w, pad->h - pad->y - pad->in_h);
324     }
325
326     /* left border */
327     ff_fill_rectangle(&pad->draw, &pad->color, out->data, out->linesize,
328                       0, pad->y, pad->x, in->video->h);
329
330     if (needs_copy) {
331         ff_copy_rectangle2(&pad->draw,
332                           out->data, out->linesize, in->data, in->linesize,
333                           pad->x, pad->y, 0, 0, in->video->w, in->video->h);
334     }
335
336     /* right border */
337     ff_fill_rectangle(&pad->draw, &pad->color, out->data, out->linesize,
338                       pad->x + pad->in_w, pad->y, pad->w - pad->x - pad->in_w,
339                       in->video->h);
340
341     avfilter_unref_bufferp(&in);
342     return ff_filter_frame(inlink->dst->outputs[0], out);
343 }
344
345 static const AVFilterPad avfilter_vf_pad_inputs[] = {
346     {
347         .name             = "default",
348         .type             = AVMEDIA_TYPE_VIDEO,
349         .config_props     = config_input,
350         .get_video_buffer = get_video_buffer,
351         .filter_frame     = filter_frame,
352     },
353     { NULL }
354 };
355
356 static const AVFilterPad avfilter_vf_pad_outputs[] = {
357     {
358         .name         = "default",
359         .type         = AVMEDIA_TYPE_VIDEO,
360         .config_props = config_output,
361     },
362     { NULL }
363 };
364
365 AVFilter avfilter_vf_pad = {
366     .name          = "pad",
367     .description   = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
368
369     .priv_size     = sizeof(PadContext),
370     .init          = init,
371     .query_formats = query_formats,
372
373     .inputs    = avfilter_vf_pad_inputs,
374
375     .outputs   = avfilter_vf_pad_outputs,
376 };