]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_pad.c
lavfi: add astreamsync audio filter.
[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 "libavutil/avstring.h"
29 #include "libavutil/eval.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/colorspace.h"
32 #include "libavutil/avassert.h"
33 #include "libavutil/imgutils.h"
34 #include "libavutil/parseutils.h"
35 #include "libavutil/mathematics.h"
36 #include "drawutils.h"
37
38 static const char * const var_names[] = {
39     "in_w",   "iw",
40     "in_h",   "ih",
41     "out_w",  "ow",
42     "out_h",  "oh",
43     "x",
44     "y",
45     "a",
46     "sar",
47     "dar",
48     "hsub",
49     "vsub",
50     NULL
51 };
52
53 enum var_name {
54     VAR_IN_W,   VAR_IW,
55     VAR_IN_H,   VAR_IH,
56     VAR_OUT_W,  VAR_OW,
57     VAR_OUT_H,  VAR_OH,
58     VAR_X,
59     VAR_Y,
60     VAR_A,
61     VAR_SAR,
62     VAR_DAR,
63     VAR_HSUB,
64     VAR_VSUB,
65     VARS_NB
66 };
67
68 static int query_formats(AVFilterContext *ctx)
69 {
70     static const enum PixelFormat pix_fmts[] = {
71         PIX_FMT_ARGB,         PIX_FMT_RGBA,
72         PIX_FMT_ABGR,         PIX_FMT_BGRA,
73         PIX_FMT_RGB24,        PIX_FMT_BGR24,
74
75         PIX_FMT_YUV444P,      PIX_FMT_YUV422P,
76         PIX_FMT_YUV420P,      PIX_FMT_YUV411P,
77         PIX_FMT_YUV410P,      PIX_FMT_YUV440P,
78         PIX_FMT_YUVJ444P,     PIX_FMT_YUVJ422P,
79         PIX_FMT_YUVJ420P,     PIX_FMT_YUVJ440P,
80         PIX_FMT_YUVA420P,
81
82         PIX_FMT_NONE
83     };
84
85     avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
86     return 0;
87 }
88
89 typedef struct {
90     int w, h;               ///< output dimensions, a value of 0 will result in the input size
91     int x, y;               ///< offsets of the input area with respect to the padded area
92     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
93
94     char w_expr[256];       ///< width  expression string
95     char h_expr[256];       ///< height expression string
96     char x_expr[256];       ///< width  expression string
97     char y_expr[256];       ///< height expression string
98
99     uint8_t color[4];       ///< color expressed either in YUVA or RGBA colorspace for the padding area
100     uint8_t *line[4];
101     int      line_step[4];
102     int hsub, vsub;         ///< chroma subsampling values
103     int needs_copy;
104 } PadContext;
105
106 static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
107 {
108     PadContext *pad = ctx->priv;
109     char color_string[128] = "black";
110
111     av_strlcpy(pad->w_expr, "iw", sizeof(pad->w_expr));
112     av_strlcpy(pad->h_expr, "ih", sizeof(pad->h_expr));
113     av_strlcpy(pad->x_expr, "0" , sizeof(pad->w_expr));
114     av_strlcpy(pad->y_expr, "0" , sizeof(pad->h_expr));
115
116     if (args)
117         sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]:%127s",
118                pad->w_expr, pad->h_expr, pad->x_expr, pad->y_expr, color_string);
119
120     if (av_parse_color(pad->color, color_string, -1, ctx) < 0)
121         return AVERROR(EINVAL);
122
123     return 0;
124 }
125
126 static av_cold void uninit(AVFilterContext *ctx)
127 {
128     PadContext *pad = ctx->priv;
129     int i;
130
131     for (i = 0; i < 4; i++) {
132         av_freep(&pad->line[i]);
133         pad->line_step[i] = 0;
134     }
135 }
136
137 static int config_input(AVFilterLink *inlink)
138 {
139     AVFilterContext *ctx = inlink->dst;
140     PadContext *pad = ctx->priv;
141     const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
142     uint8_t rgba_color[4];
143     int ret, is_packed_rgba;
144     double var_values[VARS_NB], res;
145     char *expr;
146
147     pad->hsub = pix_desc->log2_chroma_w;
148     pad->vsub = pix_desc->log2_chroma_h;
149
150     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
151     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
152     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
153     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
154     var_values[VAR_A]     = (float) inlink->w / inlink->h;
155     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
156         (float) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
157     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
158     var_values[VAR_HSUB]  = 1<<pad->hsub;
159     var_values[VAR_VSUB]  = 1<<pad->vsub;
160
161     /* evaluate width and height */
162     av_expr_parse_and_eval(&res, (expr = pad->w_expr),
163                            var_names, var_values,
164                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
165     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
166     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->h_expr),
167                                       var_names, var_values,
168                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
169         goto eval_fail;
170     pad->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
171     /* evaluate the width again, as it may depend on the evaluated output height */
172     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->w_expr),
173                                       var_names, var_values,
174                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
175         goto eval_fail;
176     pad->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
177
178     /* evaluate x and y */
179     av_expr_parse_and_eval(&res, (expr = pad->x_expr),
180                            var_names, var_values,
181                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
182     pad->x = var_values[VAR_X] = res;
183     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->y_expr),
184                                       var_names, var_values,
185                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
186         goto eval_fail;
187     pad->y = var_values[VAR_Y] = res;
188     /* evaluate x again, as it may depend on the evaluated y value */
189     if ((ret = av_expr_parse_and_eval(&res, (expr = pad->x_expr),
190                                       var_names, var_values,
191                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
192         goto eval_fail;
193     pad->x = var_values[VAR_X] = res;
194
195     /* sanity check params */
196     if (pad->w < 0 || pad->h < 0 || pad->x < 0 || pad->y < 0) {
197         av_log(ctx, AV_LOG_ERROR, "Negative values are not acceptable.\n");
198         return AVERROR(EINVAL);
199     }
200
201     if (!pad->w)
202         pad->w = inlink->w;
203     if (!pad->h)
204         pad->h = inlink->h;
205
206     pad->w &= ~((1 << pad->hsub) - 1);
207     pad->h &= ~((1 << pad->vsub) - 1);
208     pad->x &= ~((1 << pad->hsub) - 1);
209     pad->y &= ~((1 << pad->vsub) - 1);
210
211     pad->in_w = inlink->w & ~((1 << pad->hsub) - 1);
212     pad->in_h = inlink->h & ~((1 << pad->vsub) - 1);
213
214     memcpy(rgba_color, pad->color, sizeof(rgba_color));
215     ff_fill_line_with_color(pad->line, pad->line_step, pad->w, pad->color,
216                             inlink->format, rgba_color, &is_packed_rgba, NULL);
217
218     av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d x:%d y:%d color:0x%02X%02X%02X%02X[%s]\n",
219            inlink->w, inlink->h, pad->w, pad->h, pad->x, pad->y,
220            pad->color[0], pad->color[1], pad->color[2], pad->color[3],
221            is_packed_rgba ? "rgba" : "yuva");
222
223     if (pad->x <  0 || pad->y <  0                      ||
224         pad->w <= 0 || pad->h <= 0                      ||
225         (unsigned)pad->x + (unsigned)inlink->w > pad->w ||
226         (unsigned)pad->y + (unsigned)inlink->h > pad->h) {
227         av_log(ctx, AV_LOG_ERROR,
228                "Input area %d:%d:%d:%d not within the padded area 0:0:%d:%d or zero-sized\n",
229                pad->x, pad->y, pad->x + inlink->w, pad->y + inlink->h, pad->w, pad->h);
230         return AVERROR(EINVAL);
231     }
232
233     return 0;
234
235 eval_fail:
236     av_log(NULL, AV_LOG_ERROR,
237            "Error when evaluating the expression '%s'\n", expr);
238     return ret;
239
240 }
241
242 static int config_output(AVFilterLink *outlink)
243 {
244     PadContext *pad = outlink->src->priv;
245
246     outlink->w = pad->w;
247     outlink->h = pad->h;
248     return 0;
249 }
250
251 static AVFilterBufferRef *get_video_buffer(AVFilterLink *inlink, int perms, int w, int h)
252 {
253     PadContext *pad = inlink->dst->priv;
254     int align = (perms&AV_PERM_ALIGN) ? AVFILTER_ALIGN : 1;
255
256     AVFilterBufferRef *picref = avfilter_get_video_buffer(inlink->dst->outputs[0], perms,
257                                                        w + (pad->w - pad->in_w) + 4*align,
258                                                        h + (pad->h - pad->in_h));
259     int plane;
260
261     picref->video->w = w;
262     picref->video->h = h;
263
264     for (plane = 0; plane < 4 && picref->data[plane]; plane++) {
265         int hsub = (plane == 1 || plane == 2) ? pad->hsub : 0;
266         int vsub = (plane == 1 || plane == 2) ? pad->vsub : 0;
267
268         picref->data[plane] += FFALIGN(pad->x >> hsub, align) * pad->line_step[plane] +
269             (pad->y >> vsub) * picref->linesize[plane];
270     }
271
272     return picref;
273 }
274
275 static int does_clip(PadContext *pad, AVFilterBufferRef *outpicref, int plane, int hsub, int vsub, int x, int y)
276 {
277     int64_t x_in_buf, y_in_buf;
278
279     x_in_buf =  outpicref->data[plane] - outpicref->buf->data[plane]
280              +  (x >> hsub) * pad      ->line_step[plane]
281              +  (y >> vsub) * outpicref->linesize [plane];
282
283     if(x_in_buf < 0 || x_in_buf % pad->line_step[plane])
284         return 1;
285     x_in_buf /= pad->line_step[plane];
286
287     av_assert0(outpicref->buf->linesize[plane]>0); //while reference can use negative linesize the main buffer should not
288
289     y_in_buf = x_in_buf / outpicref->buf->linesize[plane];
290     x_in_buf %= outpicref->buf->linesize[plane];
291
292     if(   y_in_buf<<vsub >= outpicref->buf->h
293        || x_in_buf<<hsub >= outpicref->buf->w)
294         return 1;
295     return 0;
296 }
297
298 static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
299 {
300     PadContext *pad = inlink->dst->priv;
301     AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
302     int plane;
303
304     for (plane = 0; plane < 4 && outpicref->data[plane]; plane++) {
305         int hsub = (plane == 1 || plane == 2) ? pad->hsub : 0;
306         int vsub = (plane == 1 || plane == 2) ? pad->vsub : 0;
307
308         av_assert0(outpicref->buf->w>0 && outpicref->buf->h>0);
309
310         if(outpicref->format != outpicref->buf->format) //unsupported currently
311             break;
312
313         outpicref->data[plane] -=   (pad->x  >> hsub) * pad      ->line_step[plane]
314                                   + (pad->y  >> vsub) * outpicref->linesize [plane];
315
316         if(   does_clip(pad, outpicref, plane, hsub, vsub, 0, 0)
317            || does_clip(pad, outpicref, plane, hsub, vsub, 0, pad->h-1)
318            || does_clip(pad, outpicref, plane, hsub, vsub, pad->w-1, 0)
319            || does_clip(pad, outpicref, plane, hsub, vsub, pad->w-1, pad->h-1)
320           )
321             break;
322     }
323     pad->needs_copy= plane < 4 && outpicref->data[plane];
324     if(pad->needs_copy){
325         av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n");
326         avfilter_unref_buffer(outpicref);
327         outpicref = avfilter_get_video_buffer(inlink->dst->outputs[0], AV_PERM_WRITE | AV_PERM_NEG_LINESIZES,
328                                                        FFMAX(inlink->w, pad->w),
329                                                        FFMAX(inlink->h, pad->h));
330         avfilter_copy_buffer_ref_props(outpicref, inpicref);
331     }
332
333     inlink->dst->outputs[0]->out_buf = outpicref;
334
335     outpicref->video->w = pad->w;
336     outpicref->video->h = pad->h;
337
338     avfilter_start_frame(inlink->dst->outputs[0], outpicref);
339 }
340
341 static void end_frame(AVFilterLink *link)
342 {
343     avfilter_end_frame(link->dst->outputs[0]);
344     avfilter_unref_buffer(link->cur_buf);
345 }
346
347 static void draw_send_bar_slice(AVFilterLink *link, int y, int h, int slice_dir, int before_slice)
348 {
349     PadContext *pad = link->dst->priv;
350     int bar_y, bar_h = 0;
351
352     if        (slice_dir * before_slice ==  1 && y == pad->y) {
353         /* top bar */
354         bar_y = 0;
355         bar_h = pad->y;
356     } else if (slice_dir * before_slice == -1 && (y + h) == (pad->y + pad->in_h)) {
357         /* bottom bar */
358         bar_y = pad->y + pad->in_h;
359         bar_h = pad->h - pad->in_h - pad->y;
360     }
361
362     if (bar_h) {
363         ff_draw_rectangle(link->dst->outputs[0]->out_buf->data,
364                           link->dst->outputs[0]->out_buf->linesize,
365                           pad->line, pad->line_step, pad->hsub, pad->vsub,
366                           0, bar_y, pad->w, bar_h);
367         avfilter_draw_slice(link->dst->outputs[0], bar_y, bar_h, slice_dir);
368     }
369 }
370
371 static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
372 {
373     PadContext *pad = link->dst->priv;
374     AVFilterBufferRef *outpic = link->dst->outputs[0]->out_buf;
375     AVFilterBufferRef *inpic = link->cur_buf;
376
377     y += pad->y;
378
379     y &= ~((1 << pad->vsub) - 1);
380     h &= ~((1 << pad->vsub) - 1);
381
382     if (!h)
383         return;
384     draw_send_bar_slice(link, y, h, slice_dir, 1);
385
386     /* left border */
387     ff_draw_rectangle(outpic->data, outpic->linesize, pad->line, pad->line_step,
388                       pad->hsub, pad->vsub, 0, y, pad->x, h);
389
390     if(pad->needs_copy){
391         ff_copy_rectangle(outpic->data, outpic->linesize,
392                           inpic->data, inpic->linesize, pad->line_step,
393                           pad->hsub, pad->vsub,
394                           pad->x, y, y-pad->y, inpic->video->w, h);
395     }
396
397     /* right border */
398     ff_draw_rectangle(outpic->data, outpic->linesize,
399                       pad->line, pad->line_step, pad->hsub, pad->vsub,
400                       pad->x + pad->in_w, y, pad->w - pad->x - pad->in_w, h);
401     avfilter_draw_slice(link->dst->outputs[0], y, h, slice_dir);
402
403     draw_send_bar_slice(link, y, h, slice_dir, -1);
404 }
405
406 AVFilter avfilter_vf_pad = {
407     .name          = "pad",
408     .description   = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
409
410     .priv_size     = sizeof(PadContext),
411     .init          = init,
412     .uninit        = uninit,
413     .query_formats = query_formats,
414
415     .inputs    = (const AVFilterPad[]) {{ .name       = "default",
416                                     .type             = AVMEDIA_TYPE_VIDEO,
417                                     .config_props     = config_input,
418                                     .get_video_buffer = get_video_buffer,
419                                     .start_frame      = start_frame,
420                                     .draw_slice       = draw_slice,
421                                     .end_frame        = end_frame, },
422                                   { .name = NULL}},
423
424     .outputs   = (const AVFilterPad[]) {{ .name       = "default",
425                                     .type             = AVMEDIA_TYPE_VIDEO,
426                                     .config_props     = config_output, },
427                                   { .name = NULL}},
428 };