]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
Merge commit '711c4da1af71e0d26ca93626a3c2dd48821f1cc7'
[ffmpeg] / libavfilter / vf_scale.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  * scale video filter
24  */
25
26 #include <stdio.h>
27 #include <string.h>
28
29 #include "avfilter.h"
30 #include "formats.h"
31 #include "internal.h"
32 #include "video.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/eval.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/pixdesc.h"
40 #include "libavutil/imgutils.h"
41 #include "libavutil/avassert.h"
42 #include "libswscale/swscale.h"
43
44 static const char *const var_names[] = {
45     "in_w",   "iw",
46     "in_h",   "ih",
47     "out_w",  "ow",
48     "out_h",  "oh",
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_A,
63     VAR_SAR,
64     VAR_DAR,
65     VAR_HSUB,
66     VAR_VSUB,
67     VARS_NB
68 };
69
70 typedef struct {
71     const AVClass *class;
72     struct SwsContext *sws;     ///< software scaler context
73     struct SwsContext *isws[2]; ///< software scaler context for interlaced material
74
75     /**
76      * New dimensions. Special values are:
77      *   0 = original width/height
78      *  -1 = keep original aspect
79      */
80     int w, h;
81     char *size_str;
82     unsigned int flags;         ///sws flags
83
84     int hsub, vsub;             ///< chroma subsampling
85     int slice_y;                ///< top of current output slice
86     int input_is_pal;           ///< set to 1 if the input format is paletted
87     int output_is_pal;          ///< set to 1 if the output format is paletted
88     int interlaced;
89
90     char *w_expr;               ///< width  expression string
91     char *h_expr;               ///< height expression string
92     char *flags_str;
93
94     char *in_color_matrix;
95     char *out_color_matrix;
96
97     int in_range;
98     int out_range;
99
100     int out_h_chr_pos;
101     int out_v_chr_pos;
102     int in_h_chr_pos;
103     int in_v_chr_pos;
104 } ScaleContext;
105
106 static av_cold int init(AVFilterContext *ctx)
107 {
108     ScaleContext *scale = ctx->priv;
109     int ret;
110
111     if (scale->size_str && (scale->w_expr || scale->h_expr)) {
112         av_log(ctx, AV_LOG_ERROR,
113                "Size and width/height expressions cannot be set at the same time.\n");
114             return AVERROR(EINVAL);
115     }
116
117     if (scale->w_expr && !scale->h_expr)
118         FFSWAP(char *, scale->w_expr, scale->size_str);
119
120     if (scale->size_str) {
121         char buf[32];
122         if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
123             av_log(ctx, AV_LOG_ERROR,
124                    "Invalid size '%s'\n", scale->size_str);
125             return ret;
126         }
127         snprintf(buf, sizeof(buf)-1, "%d", scale->w);
128         av_opt_set(scale, "w", buf, 0);
129         snprintf(buf, sizeof(buf)-1, "%d", scale->h);
130         av_opt_set(scale, "h", buf, 0);
131     }
132     if (!scale->w_expr)
133         av_opt_set(scale, "w", "iw", 0);
134     if (!scale->h_expr)
135         av_opt_set(scale, "h", "ih", 0);
136
137     av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
138            scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
139
140     scale->flags = SWS_BILINEAR;
141
142     if (scale->flags_str) {
143         const AVClass *class = sws_get_class();
144         const AVOption    *o = av_opt_find(&class, "sws_flags", NULL, 0,
145                                            AV_OPT_SEARCH_FAKE_OBJ);
146         int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
147         if (ret < 0)
148             return ret;
149     }
150
151     return 0;
152 }
153
154 static av_cold void uninit(AVFilterContext *ctx)
155 {
156     ScaleContext *scale = ctx->priv;
157     sws_freeContext(scale->sws);
158     sws_freeContext(scale->isws[0]);
159     sws_freeContext(scale->isws[1]);
160     scale->sws = NULL;
161 }
162
163 static int query_formats(AVFilterContext *ctx)
164 {
165     AVFilterFormats *formats;
166     enum AVPixelFormat pix_fmt;
167     int ret;
168
169     if (ctx->inputs[0]) {
170         formats = NULL;
171         for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
172             if ((sws_isSupportedInput(pix_fmt) ||
173                  sws_isSupportedEndiannessConversion(pix_fmt))
174                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
175                 ff_formats_unref(&formats);
176                 return ret;
177             }
178         ff_formats_ref(formats, &ctx->inputs[0]->out_formats);
179     }
180     if (ctx->outputs[0]) {
181         formats = NULL;
182         for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
183             if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
184                  sws_isSupportedEndiannessConversion(pix_fmt))
185                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
186                 ff_formats_unref(&formats);
187                 return ret;
188             }
189         ff_formats_ref(formats, &ctx->outputs[0]->in_formats);
190     }
191
192     return 0;
193 }
194
195 static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
196 {
197     if (!s)
198         s = "bt601";
199
200     if (s && strstr(s, "bt709")) {
201         colorspace = AVCOL_SPC_BT709;
202     } else if (s && strstr(s, "fcc")) {
203         colorspace = AVCOL_SPC_FCC;
204     } else if (s && strstr(s, "smpte240m")) {
205         colorspace = AVCOL_SPC_SMPTE240M;
206     } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
207         colorspace = AVCOL_SPC_BT470BG;
208     }
209
210     if (colorspace < 1 || colorspace > 7) {
211         colorspace = AVCOL_SPC_BT470BG;
212     }
213
214     return sws_getCoefficients(colorspace);
215 }
216
217 static int config_props(AVFilterLink *outlink)
218 {
219     AVFilterContext *ctx = outlink->src;
220     AVFilterLink *inlink = outlink->src->inputs[0];
221     enum AVPixelFormat outfmt = outlink->format;
222     ScaleContext *scale = ctx->priv;
223     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
224     int64_t w, h;
225     double var_values[VARS_NB], res;
226     char *expr;
227     int ret;
228
229     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
230     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
231     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
232     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
233     var_values[VAR_A]     = (double) inlink->w / inlink->h;
234     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
235         (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
236     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
237     var_values[VAR_HSUB]  = 1 << desc->log2_chroma_w;
238     var_values[VAR_VSUB]  = 1 << desc->log2_chroma_h;
239
240     /* evaluate width and height */
241     av_expr_parse_and_eval(&res, (expr = scale->w_expr),
242                            var_names, var_values,
243                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
244     scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
245     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
246                                       var_names, var_values,
247                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
248         goto fail;
249     scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
250     /* evaluate again the width, as it may depend on the output height */
251     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
252                                       var_names, var_values,
253                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
254         goto fail;
255     scale->w = res;
256
257     w = scale->w;
258     h = scale->h;
259
260     /* sanity check params */
261     if (w <  -1 || h <  -1) {
262         av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
263         return AVERROR(EINVAL);
264     }
265     if (w == -1 && h == -1)
266         scale->w = scale->h = 0;
267
268     if (!(w = scale->w))
269         w = inlink->w;
270     if (!(h = scale->h))
271         h = inlink->h;
272     if (w == -1)
273         w = av_rescale(h, inlink->w, inlink->h);
274     if (h == -1)
275         h = av_rescale(w, inlink->h, inlink->w);
276
277     if (w > INT_MAX || h > INT_MAX ||
278         (h * inlink->w) > INT_MAX  ||
279         (w * inlink->h) > INT_MAX)
280         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
281
282     outlink->w = w;
283     outlink->h = h;
284
285     /* TODO: make algorithm configurable */
286
287     scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL ||
288                           desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
289     if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
290     scale->output_is_pal = av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PAL ||
291                            av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
292
293     if (scale->sws)
294         sws_freeContext(scale->sws);
295     if (scale->isws[0])
296         sws_freeContext(scale->isws[0]);
297     if (scale->isws[1])
298         sws_freeContext(scale->isws[1]);
299     scale->isws[0] = scale->isws[1] = scale->sws = NULL;
300     if (inlink->w == outlink->w && inlink->h == outlink->h &&
301         inlink->format == outlink->format)
302         ;
303     else {
304         struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
305         int i;
306
307         for (i = 0; i < 3; i++) {
308             struct SwsContext **s = swscs[i];
309             *s = sws_alloc_context();
310             if (!*s)
311                 return AVERROR(ENOMEM);
312
313             av_opt_set_int(*s, "srcw", inlink ->w, 0);
314             av_opt_set_int(*s, "srch", inlink ->h >> !!i, 0);
315             av_opt_set_int(*s, "src_format", inlink->format, 0);
316             av_opt_set_int(*s, "dstw", outlink->w, 0);
317             av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
318             av_opt_set_int(*s, "dst_format", outfmt, 0);
319             av_opt_set_int(*s, "sws_flags", scale->flags, 0);
320
321             av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
322             av_opt_set_int(*s, "src_v_chr_pos", scale->in_v_chr_pos, 0);
323             av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
324             av_opt_set_int(*s, "dst_v_chr_pos", scale->out_v_chr_pos, 0);
325
326             if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
327                 return ret;
328             if (!scale->interlaced)
329                 break;
330         }
331     }
332
333     if (inlink->sample_aspect_ratio.num){
334         outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
335     } else
336         outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
337
338     av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d fmt:%s sar:%d/%d flags:0x%0x\n",
339            inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
340            inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
341            outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
342            outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
343            scale->flags);
344     return 0;
345
346 fail:
347     av_log(NULL, AV_LOG_ERROR,
348            "Error when evaluating the expression '%s'.\n"
349            "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
350            expr, scale->w_expr, scale->h_expr);
351     return ret;
352 }
353
354 static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
355 {
356     ScaleContext *scale = link->dst->priv;
357     const uint8_t *in[4];
358     uint8_t *out[4];
359     int in_stride[4],out_stride[4];
360     int i;
361
362     for(i=0; i<4; i++){
363         int vsub= ((i+1)&2) ? scale->vsub : 0;
364          in_stride[i] = cur_pic->linesize[i] * mul;
365         out_stride[i] = out_buf->linesize[i] * mul;
366          in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
367         out[i] = out_buf->data[i] +            field  * out_buf->linesize[i];
368     }
369     if(scale->input_is_pal)
370          in[1] = cur_pic->data[1];
371     if(scale->output_is_pal)
372         out[1] = out_buf->data[1];
373
374     return sws_scale(sws, in, in_stride, y/mul, h,
375                          out,out_stride);
376 }
377
378 static int filter_frame(AVFilterLink *link, AVFrame *in)
379 {
380     ScaleContext *scale = link->dst->priv;
381     AVFilterLink *outlink = link->dst->outputs[0];
382     AVFrame *out;
383     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
384     char buf[32];
385     int in_range;
386
387     if(   in->width  != link->w
388        || in->height != link->h
389        || in->format != link->format) {
390         int ret;
391         snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
392         av_opt_set(scale, "w", buf, 0);
393         snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
394         av_opt_set(scale, "h", buf, 0);
395
396         link->dst->inputs[0]->format = in->format;
397         link->dst->inputs[0]->w      = in->width;
398         link->dst->inputs[0]->h      = in->height;
399
400         if ((ret = config_props(outlink)) < 0)
401             return ret;
402     }
403
404     if (!scale->sws)
405         return ff_filter_frame(outlink, in);
406
407     scale->hsub = desc->log2_chroma_w;
408     scale->vsub = desc->log2_chroma_h;
409
410     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
411     if (!out) {
412         av_frame_free(&in);
413         return AVERROR(ENOMEM);
414     }
415
416     av_frame_copy_props(out, in);
417     out->width  = outlink->w;
418     out->height = outlink->h;
419
420     if(scale->output_is_pal)
421         avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
422
423     in_range = av_frame_get_color_range(in);
424
425     if (   scale->in_color_matrix
426         || scale->out_color_matrix
427         || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
428         || in_range != AVCOL_RANGE_UNSPECIFIED
429         || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
430         int in_full, out_full, brightness, contrast, saturation;
431         const int *inv_table, *table;
432
433         sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
434                                  (int **)&table, &out_full,
435                                  &brightness, &contrast, &saturation);
436
437         if (scale->in_color_matrix)
438             inv_table = parse_yuv_type(scale->in_color_matrix, av_frame_get_colorspace(in));
439         if (scale->out_color_matrix)
440             table     = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
441
442         if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
443             in_full  = (scale-> in_range == AVCOL_RANGE_JPEG);
444         else if (in_range != AVCOL_RANGE_UNSPECIFIED)
445             in_full  = (in_range == AVCOL_RANGE_JPEG);
446         if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
447             out_full = (scale->out_range == AVCOL_RANGE_JPEG);
448
449         sws_setColorspaceDetails(scale->sws, inv_table, in_full,
450                                  table, out_full,
451                                  brightness, contrast, saturation);
452         if (scale->isws[0])
453             sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
454                                      table, out_full,
455                                      brightness, contrast, saturation);
456         if (scale->isws[1])
457             sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
458                                      table, out_full,
459                                      brightness, contrast, saturation);
460     }
461
462     av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
463               (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
464               (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
465               INT_MAX);
466
467     if(scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)){
468         scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
469         scale_slice(link, out, in, scale->isws[1], 0,  link->h   /2, 2, 1);
470     }else{
471         scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
472     }
473
474     av_frame_free(&in);
475     return ff_filter_frame(outlink, out);
476 }
477
478 #define OFFSET(x) offsetof(ScaleContext, x)
479 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
480
481 static const AVOption scale_options[] = {
482     { "w",     "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
483     { "width", "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
484     { "h",     "Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
485     { "height","Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
486     { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
487     { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_INT, {.i64 = 0 }, -1, 1, FLAGS },
488     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
489     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
490     {  "in_color_matrix", "set input YCbCr type",   OFFSET(in_color_matrix),  AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS },
491     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
492     {  "in_range", "set input color range",  OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
493     { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
494     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
495     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
496     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
497     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
498     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
499     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
500     { "in_v_chr_pos",   "input vertical chroma position in luma grid/256"  , OFFSET(in_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
501     { "in_h_chr_pos",   "input horizontal chroma position in luma grid/256", OFFSET(in_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
502     { "out_v_chr_pos",   "output vertical chroma position in luma grid/256"  , OFFSET(out_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
503     { "out_h_chr_pos",   "output horizontal chroma position in luma grid/256", OFFSET(out_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
504     { NULL },
505 };
506
507 AVFILTER_DEFINE_CLASS(scale);
508
509 static const AVFilterPad avfilter_vf_scale_inputs[] = {
510     {
511         .name        = "default",
512         .type        = AVMEDIA_TYPE_VIDEO,
513         .filter_frame = filter_frame,
514     },
515     { NULL }
516 };
517
518 static const AVFilterPad avfilter_vf_scale_outputs[] = {
519     {
520         .name         = "default",
521         .type         = AVMEDIA_TYPE_VIDEO,
522         .config_props = config_props,
523     },
524     { NULL }
525 };
526
527 AVFilter avfilter_vf_scale = {
528     .name      = "scale",
529     .description = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
530
531     .init      = init,
532     .uninit    = uninit,
533
534     .query_formats = query_formats,
535
536     .priv_size = sizeof(ScaleContext),
537     .priv_class = &scale_class,
538
539     .inputs    = avfilter_vf_scale_inputs,
540     .outputs   = avfilter_vf_scale_outputs,
541 };