]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
avfilter/vf_scale: store the offset in a local variable before adding it
[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 "scale_eval.h"
33 #include "video.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/eval.h"
36 #include "libavutil/internal.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/opt.h"
39 #include "libavutil/parseutils.h"
40 #include "libavutil/pixdesc.h"
41 #include "libavutil/imgutils.h"
42 #include "libavutil/avassert.h"
43 #include "libswscale/swscale.h"
44
45 static const char *const var_names[] = {
46     "in_w",   "iw",
47     "in_h",   "ih",
48     "out_w",  "ow",
49     "out_h",  "oh",
50     "a",
51     "sar",
52     "dar",
53     "hsub",
54     "vsub",
55     "ohsub",
56     "ovsub",
57     "n",
58     "t",
59     "pos",
60     "main_w",
61     "main_h",
62     "main_a",
63     "main_sar",
64     "main_dar", "mdar",
65     "main_hsub",
66     "main_vsub",
67     "main_n",
68     "main_t",
69     "main_pos",
70     NULL
71 };
72
73 enum var_name {
74     VAR_IN_W,   VAR_IW,
75     VAR_IN_H,   VAR_IH,
76     VAR_OUT_W,  VAR_OW,
77     VAR_OUT_H,  VAR_OH,
78     VAR_A,
79     VAR_SAR,
80     VAR_DAR,
81     VAR_HSUB,
82     VAR_VSUB,
83     VAR_OHSUB,
84     VAR_OVSUB,
85     VAR_N,
86     VAR_T,
87     VAR_POS,
88     VAR_S2R_MAIN_W,
89     VAR_S2R_MAIN_H,
90     VAR_S2R_MAIN_A,
91     VAR_S2R_MAIN_SAR,
92     VAR_S2R_MAIN_DAR, VAR_S2R_MDAR,
93     VAR_S2R_MAIN_HSUB,
94     VAR_S2R_MAIN_VSUB,
95     VAR_S2R_MAIN_N,
96     VAR_S2R_MAIN_T,
97     VAR_S2R_MAIN_POS,
98     VARS_NB
99 };
100
101 enum EvalMode {
102     EVAL_MODE_INIT,
103     EVAL_MODE_FRAME,
104     EVAL_MODE_NB
105 };
106
107 typedef struct ScaleContext {
108     const AVClass *class;
109     struct SwsContext *sws;     ///< software scaler context
110     struct SwsContext *isws[2]; ///< software scaler context for interlaced material
111     AVDictionary *opts;
112
113     /**
114      * New dimensions. Special values are:
115      *   0 = original width/height
116      *  -1 = keep original aspect
117      *  -N = try to keep aspect but make sure it is divisible by N
118      */
119     int w, h;
120     char *size_str;
121     unsigned int flags;         ///sws flags
122     double param[2];            // sws params
123
124     int hsub, vsub;             ///< chroma subsampling
125     int slice_y;                ///< top of current output slice
126     int input_is_pal;           ///< set to 1 if the input format is paletted
127     int output_is_pal;          ///< set to 1 if the output format is paletted
128     int interlaced;
129
130     char *w_expr;               ///< width  expression string
131     char *h_expr;               ///< height expression string
132     AVExpr *w_pexpr;
133     AVExpr *h_pexpr;
134     double var_values[VARS_NB];
135
136     char *flags_str;
137
138     char *in_color_matrix;
139     char *out_color_matrix;
140
141     int in_range;
142     int out_range;
143
144     int out_h_chr_pos;
145     int out_v_chr_pos;
146     int in_h_chr_pos;
147     int in_v_chr_pos;
148
149     int force_original_aspect_ratio;
150     int force_divisible_by;
151
152     int nb_slices;
153
154     int eval_mode;              ///< expression evaluation mode
155
156 } ScaleContext;
157
158 const AVFilter ff_vf_scale2ref;
159
160 static int config_props(AVFilterLink *outlink);
161
162 static int check_exprs(AVFilterContext *ctx)
163 {
164     ScaleContext *scale = ctx->priv;
165     unsigned vars_w[VARS_NB] = { 0 }, vars_h[VARS_NB] = { 0 };
166
167     if (!scale->w_pexpr && !scale->h_pexpr)
168         return AVERROR(EINVAL);
169
170     if (scale->w_pexpr)
171         av_expr_count_vars(scale->w_pexpr, vars_w, VARS_NB);
172     if (scale->h_pexpr)
173         av_expr_count_vars(scale->h_pexpr, vars_h, VARS_NB);
174
175     if (vars_w[VAR_OUT_W] || vars_w[VAR_OW]) {
176         av_log(ctx, AV_LOG_ERROR, "Width expression cannot be self-referencing: '%s'.\n", scale->w_expr);
177         return AVERROR(EINVAL);
178     }
179
180     if (vars_h[VAR_OUT_H] || vars_h[VAR_OH]) {
181         av_log(ctx, AV_LOG_ERROR, "Height expression cannot be self-referencing: '%s'.\n", scale->h_expr);
182         return AVERROR(EINVAL);
183     }
184
185     if ((vars_w[VAR_OUT_H] || vars_w[VAR_OH]) &&
186         (vars_h[VAR_OUT_W] || vars_h[VAR_OW])) {
187         av_log(ctx, AV_LOG_WARNING, "Circular references detected for width '%s' and height '%s' - possibly invalid.\n", scale->w_expr, scale->h_expr);
188     }
189
190     if (ctx->filter != &ff_vf_scale2ref &&
191         (vars_w[VAR_S2R_MAIN_W]    || vars_h[VAR_S2R_MAIN_W]    ||
192          vars_w[VAR_S2R_MAIN_H]    || vars_h[VAR_S2R_MAIN_H]    ||
193          vars_w[VAR_S2R_MAIN_A]    || vars_h[VAR_S2R_MAIN_A]    ||
194          vars_w[VAR_S2R_MAIN_SAR]  || vars_h[VAR_S2R_MAIN_SAR]  ||
195          vars_w[VAR_S2R_MAIN_DAR]  || vars_h[VAR_S2R_MAIN_DAR]  ||
196          vars_w[VAR_S2R_MDAR]      || vars_h[VAR_S2R_MDAR]      ||
197          vars_w[VAR_S2R_MAIN_HSUB] || vars_h[VAR_S2R_MAIN_HSUB] ||
198          vars_w[VAR_S2R_MAIN_VSUB] || vars_h[VAR_S2R_MAIN_VSUB] ||
199          vars_w[VAR_S2R_MAIN_N]    || vars_h[VAR_S2R_MAIN_N]    ||
200          vars_w[VAR_S2R_MAIN_T]    || vars_h[VAR_S2R_MAIN_T]    ||
201          vars_w[VAR_S2R_MAIN_POS]  || vars_h[VAR_S2R_MAIN_POS]) ) {
202         av_log(ctx, AV_LOG_ERROR, "Expressions with scale2ref variables are not valid in scale filter.\n");
203         return AVERROR(EINVAL);
204     }
205
206     if (scale->eval_mode == EVAL_MODE_INIT &&
207         (vars_w[VAR_N]            || vars_h[VAR_N]           ||
208          vars_w[VAR_T]            || vars_h[VAR_T]           ||
209          vars_w[VAR_POS]          || vars_h[VAR_POS]         ||
210          vars_w[VAR_S2R_MAIN_N]   || vars_h[VAR_S2R_MAIN_N]  ||
211          vars_w[VAR_S2R_MAIN_T]   || vars_h[VAR_S2R_MAIN_T]  ||
212          vars_w[VAR_S2R_MAIN_POS] || vars_h[VAR_S2R_MAIN_POS]) ) {
213         av_log(ctx, AV_LOG_ERROR, "Expressions with frame variables 'n', 't', 'pos' are not valid in init eval_mode.\n");
214         return AVERROR(EINVAL);
215     }
216
217     return 0;
218 }
219
220 static int scale_parse_expr(AVFilterContext *ctx, char *str_expr, AVExpr **pexpr_ptr, const char *var, const char *args)
221 {
222     ScaleContext *scale = ctx->priv;
223     int ret, is_inited = 0;
224     char *old_str_expr = NULL;
225     AVExpr *old_pexpr = NULL;
226
227     if (str_expr) {
228         old_str_expr = av_strdup(str_expr);
229         if (!old_str_expr)
230             return AVERROR(ENOMEM);
231         av_opt_set(scale, var, args, 0);
232     }
233
234     if (*pexpr_ptr) {
235         old_pexpr = *pexpr_ptr;
236         *pexpr_ptr = NULL;
237         is_inited = 1;
238     }
239
240     ret = av_expr_parse(pexpr_ptr, args, var_names,
241                         NULL, NULL, NULL, NULL, 0, ctx);
242     if (ret < 0) {
243         av_log(ctx, AV_LOG_ERROR, "Cannot parse expression for %s: '%s'\n", var, args);
244         goto revert;
245     }
246
247     ret = check_exprs(ctx);
248     if (ret < 0)
249         goto revert;
250
251     if (is_inited && (ret = config_props(ctx->outputs[0])) < 0)
252         goto revert;
253
254     av_expr_free(old_pexpr);
255     old_pexpr = NULL;
256     av_freep(&old_str_expr);
257
258     return 0;
259
260 revert:
261     av_expr_free(*pexpr_ptr);
262     *pexpr_ptr = NULL;
263     if (old_str_expr) {
264         av_opt_set(scale, var, old_str_expr, 0);
265         av_free(old_str_expr);
266     }
267     if (old_pexpr)
268         *pexpr_ptr = old_pexpr;
269
270     return ret;
271 }
272
273 static av_cold int init_dict(AVFilterContext *ctx, AVDictionary **opts)
274 {
275     ScaleContext *scale = ctx->priv;
276     int ret;
277
278     if (scale->size_str && (scale->w_expr || scale->h_expr)) {
279         av_log(ctx, AV_LOG_ERROR,
280                "Size and width/height expressions cannot be set at the same time.\n");
281             return AVERROR(EINVAL);
282     }
283
284     if (scale->w_expr && !scale->h_expr)
285         FFSWAP(char *, scale->w_expr, scale->size_str);
286
287     if (scale->size_str) {
288         char buf[32];
289         if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
290             av_log(ctx, AV_LOG_ERROR,
291                    "Invalid size '%s'\n", scale->size_str);
292             return ret;
293         }
294         snprintf(buf, sizeof(buf)-1, "%d", scale->w);
295         av_opt_set(scale, "w", buf, 0);
296         snprintf(buf, sizeof(buf)-1, "%d", scale->h);
297         av_opt_set(scale, "h", buf, 0);
298     }
299     if (!scale->w_expr)
300         av_opt_set(scale, "w", "iw", 0);
301     if (!scale->h_expr)
302         av_opt_set(scale, "h", "ih", 0);
303
304     ret = scale_parse_expr(ctx, NULL, &scale->w_pexpr, "width", scale->w_expr);
305     if (ret < 0)
306         return ret;
307
308     ret = scale_parse_expr(ctx, NULL, &scale->h_pexpr, "height", scale->h_expr);
309     if (ret < 0)
310         return ret;
311
312     av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
313            scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
314
315     scale->flags = 0;
316
317     if (scale->flags_str) {
318         const AVClass *class = sws_get_class();
319         const AVOption    *o = av_opt_find(&class, "sws_flags", NULL, 0,
320                                            AV_OPT_SEARCH_FAKE_OBJ);
321         int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
322         if (ret < 0)
323             return ret;
324     }
325     scale->opts = *opts;
326     *opts = NULL;
327
328     return 0;
329 }
330
331 static av_cold void uninit(AVFilterContext *ctx)
332 {
333     ScaleContext *scale = ctx->priv;
334     av_expr_free(scale->w_pexpr);
335     av_expr_free(scale->h_pexpr);
336     scale->w_pexpr = scale->h_pexpr = NULL;
337     sws_freeContext(scale->sws);
338     sws_freeContext(scale->isws[0]);
339     sws_freeContext(scale->isws[1]);
340     scale->sws = NULL;
341     av_dict_free(&scale->opts);
342 }
343
344 static int query_formats(AVFilterContext *ctx)
345 {
346     AVFilterFormats *formats;
347     enum AVPixelFormat pix_fmt;
348     int ret;
349
350     if (ctx->inputs[0]) {
351         const AVPixFmtDescriptor *desc = NULL;
352         formats = NULL;
353         while ((desc = av_pix_fmt_desc_next(desc))) {
354             pix_fmt = av_pix_fmt_desc_get_id(desc);
355             if ((sws_isSupportedInput(pix_fmt) ||
356                  sws_isSupportedEndiannessConversion(pix_fmt))
357                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
358                 return ret;
359             }
360         }
361         if ((ret = ff_formats_ref(formats, &ctx->inputs[0]->outcfg.formats)) < 0)
362             return ret;
363     }
364     if (ctx->outputs[0]) {
365         const AVPixFmtDescriptor *desc = NULL;
366         formats = NULL;
367         while ((desc = av_pix_fmt_desc_next(desc))) {
368             pix_fmt = av_pix_fmt_desc_get_id(desc);
369             if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
370                  sws_isSupportedEndiannessConversion(pix_fmt))
371                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
372                 return ret;
373             }
374         }
375         if ((ret = ff_formats_ref(formats, &ctx->outputs[0]->incfg.formats)) < 0)
376             return ret;
377     }
378
379     return 0;
380 }
381
382 static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
383 {
384     if (!s)
385         s = "bt601";
386
387     if (s && strstr(s, "bt709")) {
388         colorspace = AVCOL_SPC_BT709;
389     } else if (s && strstr(s, "fcc")) {
390         colorspace = AVCOL_SPC_FCC;
391     } else if (s && strstr(s, "smpte240m")) {
392         colorspace = AVCOL_SPC_SMPTE240M;
393     } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
394         colorspace = AVCOL_SPC_BT470BG;
395     } else if (s && strstr(s, "bt2020")) {
396         colorspace = AVCOL_SPC_BT2020_NCL;
397     }
398
399     if (colorspace < 1 || colorspace > 10 || colorspace == 8) {
400         colorspace = AVCOL_SPC_BT470BG;
401     }
402
403     return sws_getCoefficients(colorspace);
404 }
405
406 static int scale_eval_dimensions(AVFilterContext *ctx)
407 {
408     ScaleContext *scale = ctx->priv;
409     const char scale2ref = ctx->filter == &ff_vf_scale2ref;
410     const AVFilterLink *inlink = scale2ref ? ctx->inputs[1] : ctx->inputs[0];
411     const AVFilterLink *outlink = ctx->outputs[0];
412     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
413     const AVPixFmtDescriptor *out_desc = av_pix_fmt_desc_get(outlink->format);
414     char *expr;
415     int eval_w, eval_h;
416     int ret;
417     double res;
418     const AVPixFmtDescriptor *main_desc;
419     const AVFilterLink *main_link;
420
421     if (scale2ref) {
422         main_link = ctx->inputs[0];
423         main_desc = av_pix_fmt_desc_get(main_link->format);
424     }
425
426     scale->var_values[VAR_IN_W]  = scale->var_values[VAR_IW] = inlink->w;
427     scale->var_values[VAR_IN_H]  = scale->var_values[VAR_IH] = inlink->h;
428     scale->var_values[VAR_OUT_W] = scale->var_values[VAR_OW] = NAN;
429     scale->var_values[VAR_OUT_H] = scale->var_values[VAR_OH] = NAN;
430     scale->var_values[VAR_A]     = (double) inlink->w / inlink->h;
431     scale->var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
432         (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
433     scale->var_values[VAR_DAR]   = scale->var_values[VAR_A] * scale->var_values[VAR_SAR];
434     scale->var_values[VAR_HSUB]  = 1 << desc->log2_chroma_w;
435     scale->var_values[VAR_VSUB]  = 1 << desc->log2_chroma_h;
436     scale->var_values[VAR_OHSUB] = 1 << out_desc->log2_chroma_w;
437     scale->var_values[VAR_OVSUB] = 1 << out_desc->log2_chroma_h;
438
439     if (scale2ref) {
440         scale->var_values[VAR_S2R_MAIN_W] = main_link->w;
441         scale->var_values[VAR_S2R_MAIN_H] = main_link->h;
442         scale->var_values[VAR_S2R_MAIN_A] = (double) main_link->w / main_link->h;
443         scale->var_values[VAR_S2R_MAIN_SAR] = main_link->sample_aspect_ratio.num ?
444             (double) main_link->sample_aspect_ratio.num / main_link->sample_aspect_ratio.den : 1;
445         scale->var_values[VAR_S2R_MAIN_DAR] = scale->var_values[VAR_S2R_MDAR] =
446             scale->var_values[VAR_S2R_MAIN_A] * scale->var_values[VAR_S2R_MAIN_SAR];
447         scale->var_values[VAR_S2R_MAIN_HSUB] = 1 << main_desc->log2_chroma_w;
448         scale->var_values[VAR_S2R_MAIN_VSUB] = 1 << main_desc->log2_chroma_h;
449     }
450
451     res = av_expr_eval(scale->w_pexpr, scale->var_values, NULL);
452     eval_w = scale->var_values[VAR_OUT_W] = scale->var_values[VAR_OW] = (int) res == 0 ? inlink->w : (int) res;
453
454     res = av_expr_eval(scale->h_pexpr, scale->var_values, NULL);
455     if (isnan(res)) {
456         expr = scale->h_expr;
457         ret = AVERROR(EINVAL);
458         goto fail;
459     }
460     eval_h = scale->var_values[VAR_OUT_H] = scale->var_values[VAR_OH] = (int) res == 0 ? inlink->h : (int) res;
461
462     res = av_expr_eval(scale->w_pexpr, scale->var_values, NULL);
463     if (isnan(res)) {
464         expr = scale->w_expr;
465         ret = AVERROR(EINVAL);
466         goto fail;
467     }
468     eval_w = scale->var_values[VAR_OUT_W] = scale->var_values[VAR_OW] = (int) res == 0 ? inlink->w : (int) res;
469
470     scale->w = eval_w;
471     scale->h = eval_h;
472
473     return 0;
474
475 fail:
476     av_log(ctx, AV_LOG_ERROR,
477            "Error when evaluating the expression '%s'.\n", expr);
478     return ret;
479 }
480
481 static int config_props(AVFilterLink *outlink)
482 {
483     AVFilterContext *ctx = outlink->src;
484     AVFilterLink *inlink0 = outlink->src->inputs[0];
485     AVFilterLink *inlink  = ctx->filter == &ff_vf_scale2ref ?
486                             outlink->src->inputs[1] :
487                             outlink->src->inputs[0];
488     enum AVPixelFormat outfmt = outlink->format;
489     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
490     ScaleContext *scale = ctx->priv;
491     int ret;
492
493     if ((ret = scale_eval_dimensions(ctx)) < 0)
494         goto fail;
495
496     ff_scale_adjust_dimensions(inlink, &scale->w, &scale->h,
497                                scale->force_original_aspect_ratio,
498                                scale->force_divisible_by);
499
500     if (scale->w > INT_MAX ||
501         scale->h > INT_MAX ||
502         (scale->h * inlink->w) > INT_MAX ||
503         (scale->w * inlink->h) > INT_MAX)
504         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
505
506     outlink->w = scale->w;
507     outlink->h = scale->h;
508
509     /* TODO: make algorithm configurable */
510
511     scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL;
512     if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
513     scale->output_is_pal = av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PAL;
514
515     if (scale->sws)
516         sws_freeContext(scale->sws);
517     if (scale->isws[0])
518         sws_freeContext(scale->isws[0]);
519     if (scale->isws[1])
520         sws_freeContext(scale->isws[1]);
521     scale->isws[0] = scale->isws[1] = scale->sws = NULL;
522     if (inlink0->w == outlink->w &&
523         inlink0->h == outlink->h &&
524         !scale->out_color_matrix &&
525         scale->in_range == scale->out_range &&
526         inlink0->format == outlink->format)
527         ;
528     else {
529         struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
530         int i;
531
532         for (i = 0; i < 3; i++) {
533             int in_v_chr_pos = scale->in_v_chr_pos, out_v_chr_pos = scale->out_v_chr_pos;
534             struct SwsContext **s = swscs[i];
535             *s = sws_alloc_context();
536             if (!*s)
537                 return AVERROR(ENOMEM);
538
539             av_opt_set_int(*s, "srcw", inlink0 ->w, 0);
540             av_opt_set_int(*s, "srch", inlink0 ->h >> !!i, 0);
541             av_opt_set_int(*s, "src_format", inlink0->format, 0);
542             av_opt_set_int(*s, "dstw", outlink->w, 0);
543             av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
544             av_opt_set_int(*s, "dst_format", outfmt, 0);
545             av_opt_set_int(*s, "sws_flags", scale->flags, 0);
546             av_opt_set_int(*s, "param0", scale->param[0], 0);
547             av_opt_set_int(*s, "param1", scale->param[1], 0);
548             if (scale->in_range != AVCOL_RANGE_UNSPECIFIED)
549                 av_opt_set_int(*s, "src_range",
550                                scale->in_range == AVCOL_RANGE_JPEG, 0);
551             if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
552                 av_opt_set_int(*s, "dst_range",
553                                scale->out_range == AVCOL_RANGE_JPEG, 0);
554
555             if (scale->opts) {
556                 AVDictionaryEntry *e = NULL;
557                 while ((e = av_dict_get(scale->opts, "", e, AV_DICT_IGNORE_SUFFIX))) {
558                     if ((ret = av_opt_set(*s, e->key, e->value, 0)) < 0)
559                         return ret;
560                 }
561             }
562             /* Override YUV420P default settings to have the correct (MPEG-2) chroma positions
563              * MPEG-2 chroma positions are used by convention
564              * XXX: support other 4:2:0 pixel formats */
565             if (inlink0->format == AV_PIX_FMT_YUV420P && scale->in_v_chr_pos == -513) {
566                 in_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
567             }
568
569             if (outlink->format == AV_PIX_FMT_YUV420P && scale->out_v_chr_pos == -513) {
570                 out_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
571             }
572
573             av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
574             av_opt_set_int(*s, "src_v_chr_pos", in_v_chr_pos, 0);
575             av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
576             av_opt_set_int(*s, "dst_v_chr_pos", out_v_chr_pos, 0);
577
578             if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
579                 return ret;
580             if (!scale->interlaced)
581                 break;
582         }
583     }
584
585     if (inlink0->sample_aspect_ratio.num){
586         outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink0->w, outlink->w * inlink0->h}, inlink0->sample_aspect_ratio);
587     } else
588         outlink->sample_aspect_ratio = inlink0->sample_aspect_ratio;
589
590     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",
591            inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
592            inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
593            outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
594            outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
595            scale->flags);
596     return 0;
597
598 fail:
599     return ret;
600 }
601
602 static int config_props_ref(AVFilterLink *outlink)
603 {
604     AVFilterLink *inlink = outlink->src->inputs[1];
605
606     outlink->w = inlink->w;
607     outlink->h = inlink->h;
608     outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
609     outlink->time_base = inlink->time_base;
610     outlink->frame_rate = inlink->frame_rate;
611
612     return 0;
613 }
614
615 static int request_frame(AVFilterLink *outlink)
616 {
617     return ff_request_frame(outlink->src->inputs[0]);
618 }
619
620 static int request_frame_ref(AVFilterLink *outlink)
621 {
622     return ff_request_frame(outlink->src->inputs[1]);
623 }
624
625 static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
626 {
627     ScaleContext *scale = link->dst->priv;
628     const uint8_t *in[4];
629     uint8_t *out[4];
630     int in_stride[4],out_stride[4];
631     int i;
632
633     for (i=0; i<4; i++) {
634         int vsub= ((i+1)&2) ? scale->vsub : 0;
635         ptrdiff_t  in_offset = ((y>>vsub)+field) * cur_pic->linesize[i];
636         ptrdiff_t out_offset =            field  * out_buf->linesize[i];
637          in_stride[i] = cur_pic->linesize[i] * mul;
638         out_stride[i] = out_buf->linesize[i] * mul;
639          in[i] = FF_PTR_ADD(cur_pic->data[i],  in_offset);
640         out[i] = FF_PTR_ADD(out_buf->data[i], out_offset);
641     }
642     if (scale->input_is_pal)
643          in[1] = cur_pic->data[1];
644     if (scale->output_is_pal)
645         out[1] = out_buf->data[1];
646
647     return sws_scale(sws, in, in_stride, y/mul, h,
648                          out,out_stride);
649 }
650
651 static int scale_frame(AVFilterLink *link, AVFrame *in, AVFrame **frame_out)
652 {
653     AVFilterContext *ctx = link->dst;
654     ScaleContext *scale = ctx->priv;
655     AVFilterLink *outlink = ctx->outputs[0];
656     AVFrame *out;
657     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
658     char buf[32];
659     int in_range;
660     int frame_changed;
661
662     *frame_out = NULL;
663     if (in->colorspace == AVCOL_SPC_YCGCO)
664         av_log(link->dst, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
665
666     frame_changed = in->width  != link->w ||
667                     in->height != link->h ||
668                     in->format != link->format ||
669                     in->sample_aspect_ratio.den != link->sample_aspect_ratio.den ||
670                     in->sample_aspect_ratio.num != link->sample_aspect_ratio.num;
671
672     if (scale->eval_mode == EVAL_MODE_FRAME || frame_changed) {
673         int ret;
674         unsigned vars_w[VARS_NB] = { 0 }, vars_h[VARS_NB] = { 0 };
675
676         av_expr_count_vars(scale->w_pexpr, vars_w, VARS_NB);
677         av_expr_count_vars(scale->h_pexpr, vars_h, VARS_NB);
678
679         if (scale->eval_mode == EVAL_MODE_FRAME &&
680             !frame_changed &&
681             ctx->filter != &ff_vf_scale2ref &&
682             !(vars_w[VAR_N] || vars_w[VAR_T] || vars_w[VAR_POS]) &&
683             !(vars_h[VAR_N] || vars_h[VAR_T] || vars_h[VAR_POS]) &&
684             scale->w && scale->h)
685             goto scale;
686
687         if (scale->eval_mode == EVAL_MODE_INIT) {
688             snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
689             av_opt_set(scale, "w", buf, 0);
690             snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
691             av_opt_set(scale, "h", buf, 0);
692
693             ret = scale_parse_expr(ctx, NULL, &scale->w_pexpr, "width", scale->w_expr);
694             if (ret < 0)
695                 return ret;
696
697             ret = scale_parse_expr(ctx, NULL, &scale->h_pexpr, "height", scale->h_expr);
698             if (ret < 0)
699                 return ret;
700         }
701
702         if (ctx->filter == &ff_vf_scale2ref) {
703             scale->var_values[VAR_S2R_MAIN_N] = link->frame_count_out;
704             scale->var_values[VAR_S2R_MAIN_T] = TS2T(in->pts, link->time_base);
705             scale->var_values[VAR_S2R_MAIN_POS] = in->pkt_pos == -1 ? NAN : in->pkt_pos;
706         } else {
707             scale->var_values[VAR_N] = link->frame_count_out;
708             scale->var_values[VAR_T] = TS2T(in->pts, link->time_base);
709             scale->var_values[VAR_POS] = in->pkt_pos == -1 ? NAN : in->pkt_pos;
710         }
711
712         link->dst->inputs[0]->format = in->format;
713         link->dst->inputs[0]->w      = in->width;
714         link->dst->inputs[0]->h      = in->height;
715
716         link->dst->inputs[0]->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
717         link->dst->inputs[0]->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
718
719         if ((ret = config_props(outlink)) < 0)
720             return ret;
721     }
722
723 scale:
724     if (!scale->sws) {
725         *frame_out = in;
726         return 0;
727     }
728
729     scale->hsub = desc->log2_chroma_w;
730     scale->vsub = desc->log2_chroma_h;
731
732     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
733     if (!out) {
734         av_frame_free(&in);
735         return AVERROR(ENOMEM);
736     }
737     *frame_out = out;
738
739     av_frame_copy_props(out, in);
740     out->width  = outlink->w;
741     out->height = outlink->h;
742
743     if (scale->output_is_pal)
744         avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
745
746     in_range = in->color_range;
747
748     if (   scale->in_color_matrix
749         || scale->out_color_matrix
750         || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
751         || in_range != AVCOL_RANGE_UNSPECIFIED
752         || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
753         int in_full, out_full, brightness, contrast, saturation;
754         const int *inv_table, *table;
755
756         sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
757                                  (int **)&table, &out_full,
758                                  &brightness, &contrast, &saturation);
759
760         if (scale->in_color_matrix)
761             inv_table = parse_yuv_type(scale->in_color_matrix, in->colorspace);
762         if (scale->out_color_matrix)
763             table     = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
764         else if (scale->in_color_matrix)
765             table = inv_table;
766
767         if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
768             in_full  = (scale-> in_range == AVCOL_RANGE_JPEG);
769         else if (in_range != AVCOL_RANGE_UNSPECIFIED)
770             in_full  = (in_range == AVCOL_RANGE_JPEG);
771         if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
772             out_full = (scale->out_range == AVCOL_RANGE_JPEG);
773
774         sws_setColorspaceDetails(scale->sws, inv_table, in_full,
775                                  table, out_full,
776                                  brightness, contrast, saturation);
777         if (scale->isws[0])
778             sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
779                                      table, out_full,
780                                      brightness, contrast, saturation);
781         if (scale->isws[1])
782             sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
783                                      table, out_full,
784                                      brightness, contrast, saturation);
785
786         out->color_range = out_full ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
787     }
788
789     av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
790               (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
791               (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
792               INT_MAX);
793
794     if (scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)) {
795         scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
796         scale_slice(link, out, in, scale->isws[1], 0,  link->h   /2, 2, 1);
797     } else if (scale->nb_slices) {
798         int i, slice_h, slice_start, slice_end = 0;
799         const int nb_slices = FFMIN(scale->nb_slices, link->h);
800         for (i = 0; i < nb_slices; i++) {
801             slice_start = slice_end;
802             slice_end   = (link->h * (i+1)) / nb_slices;
803             slice_h     = slice_end - slice_start;
804             scale_slice(link, out, in, scale->sws, slice_start, slice_h, 1, 0);
805         }
806     } else {
807         scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
808     }
809
810     av_frame_free(&in);
811     return 0;
812 }
813
814 static int filter_frame(AVFilterLink *link, AVFrame *in)
815 {
816     AVFilterContext *ctx = link->dst;
817     AVFilterLink *outlink = ctx->outputs[0];
818     AVFrame *out;
819     int ret;
820
821     ret = scale_frame(link, in, &out);
822     if (out)
823         return ff_filter_frame(outlink, out);
824
825     return ret;
826 }
827
828 static int filter_frame_ref(AVFilterLink *link, AVFrame *in)
829 {
830     ScaleContext *scale = link->dst->priv;
831     AVFilterLink *outlink = link->dst->outputs[1];
832     int frame_changed;
833
834     frame_changed = in->width  != link->w ||
835                     in->height != link->h ||
836                     in->format != link->format ||
837                     in->sample_aspect_ratio.den != link->sample_aspect_ratio.den ||
838                     in->sample_aspect_ratio.num != link->sample_aspect_ratio.num;
839
840     if (frame_changed) {
841         link->format = in->format;
842         link->w = in->width;
843         link->h = in->height;
844         link->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
845         link->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
846
847         config_props_ref(outlink);
848     }
849
850     if (scale->eval_mode == EVAL_MODE_FRAME) {
851         scale->var_values[VAR_N] = link->frame_count_out;
852         scale->var_values[VAR_T] = TS2T(in->pts, link->time_base);
853         scale->var_values[VAR_POS] = in->pkt_pos == -1 ? NAN : in->pkt_pos;
854     }
855
856     return ff_filter_frame(outlink, in);
857 }
858
859 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
860                            char *res, int res_len, int flags)
861 {
862     ScaleContext *scale = ctx->priv;
863     char *str_expr;
864     AVExpr **pexpr_ptr;
865     int ret, w, h;
866
867     w = !strcmp(cmd, "width")  || !strcmp(cmd, "w");
868     h = !strcmp(cmd, "height")  || !strcmp(cmd, "h");
869
870     if (w || h) {
871         str_expr = w ? scale->w_expr : scale->h_expr;
872         pexpr_ptr = w ? &scale->w_pexpr : &scale->h_pexpr;
873
874         ret = scale_parse_expr(ctx, str_expr, pexpr_ptr, cmd, args);
875     } else
876         ret = AVERROR(ENOSYS);
877
878     if (ret < 0)
879         av_log(ctx, AV_LOG_ERROR, "Failed to process command. Continuing with existing parameters.\n");
880
881     return ret;
882 }
883
884 static const AVClass *child_class_iterate(void **iter)
885 {
886     const AVClass *c = *iter ? NULL : sws_get_class();
887     *iter = (void*)(uintptr_t)c;
888     return c;
889 }
890
891 #define OFFSET(x) offsetof(ScaleContext, x)
892 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
893 #define TFLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
894
895 static const AVOption scale_options[] = {
896     { "w",     "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
897     { "width", "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
898     { "h",     "Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
899     { "height","Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
900     { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
901     { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_BOOL, {.i64 = 0 }, -1, 1, FLAGS },
902     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
903     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
904     {  "in_color_matrix", "set input YCbCr type",   OFFSET(in_color_matrix),  AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS, "color" },
905     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS,  "color"},
906         { "auto",        NULL, 0, AV_OPT_TYPE_CONST, { .str = "auto" },      0, 0, FLAGS, "color" },
907         { "bt601",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt601" },     0, 0, FLAGS, "color" },
908         { "bt470",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt470" },     0, 0, FLAGS, "color" },
909         { "smpte170m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte170m" }, 0, 0, FLAGS, "color" },
910         { "bt709",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt709" },     0, 0, FLAGS, "color" },
911         { "fcc",         NULL, 0, AV_OPT_TYPE_CONST, { .str = "fcc" },       0, 0, FLAGS, "color" },
912         { "smpte240m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte240m" }, 0, 0, FLAGS, "color" },
913         { "bt2020",      NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt2020" },    0, 0, FLAGS, "color" },
914     {  "in_range", "set input color range",  OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
915     { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
916     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
917     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
918     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
919     { "limited",NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
920     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
921     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
922     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
923     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
924     { "in_v_chr_pos",   "input vertical chroma position in luma grid/256"  ,   OFFSET(in_v_chr_pos),  AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
925     { "in_h_chr_pos",   "input horizontal chroma position in luma grid/256",   OFFSET(in_h_chr_pos),  AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
926     { "out_v_chr_pos",   "output vertical chroma position in luma grid/256"  , OFFSET(out_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
927     { "out_h_chr_pos",   "output horizontal chroma position in luma grid/256", OFFSET(out_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -513}, -513, 512, FLAGS },
928     { "force_original_aspect_ratio", "decrease or increase w/h if necessary to keep the original AR", OFFSET(force_original_aspect_ratio), AV_OPT_TYPE_INT, { .i64 = 0}, 0, 2, FLAGS, "force_oar" },
929     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
930     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
931     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
932     { "force_divisible_by", "enforce that the output resolution is divisible by a defined integer when force_original_aspect_ratio is used", OFFSET(force_divisible_by), AV_OPT_TYPE_INT, { .i64 = 1}, 1, 256, FLAGS },
933     { "param0", "Scaler param 0",             OFFSET(param[0]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
934     { "param1", "Scaler param 1",             OFFSET(param[1]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
935     { "nb_slices", "set the number of slices (debug purpose only)", OFFSET(nb_slices), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
936     { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
937          { "init",  "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT},  .flags = FLAGS, .unit = "eval" },
938          { "frame", "eval expressions during initialization and per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
939     { NULL }
940 };
941
942 static const AVClass scale_class = {
943     .class_name       = "scale",
944     .item_name        = av_default_item_name,
945     .option           = scale_options,
946     .version          = LIBAVUTIL_VERSION_INT,
947     .category         = AV_CLASS_CATEGORY_FILTER,
948     .child_class_iterate = child_class_iterate,
949 };
950
951 static const AVFilterPad avfilter_vf_scale_inputs[] = {
952     {
953         .name         = "default",
954         .type         = AVMEDIA_TYPE_VIDEO,
955         .filter_frame = filter_frame,
956     },
957     { NULL }
958 };
959
960 static const AVFilterPad avfilter_vf_scale_outputs[] = {
961     {
962         .name         = "default",
963         .type         = AVMEDIA_TYPE_VIDEO,
964         .config_props = config_props,
965     },
966     { NULL }
967 };
968
969 const AVFilter ff_vf_scale = {
970     .name            = "scale",
971     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
972     .init_dict       = init_dict,
973     .uninit          = uninit,
974     .query_formats   = query_formats,
975     .priv_size       = sizeof(ScaleContext),
976     .priv_class      = &scale_class,
977     .inputs          = avfilter_vf_scale_inputs,
978     .outputs         = avfilter_vf_scale_outputs,
979     .process_command = process_command,
980 };
981
982 static const AVClass scale2ref_class = {
983     .class_name       = "scale2ref",
984     .item_name        = av_default_item_name,
985     .option           = scale_options,
986     .version          = LIBAVUTIL_VERSION_INT,
987     .category         = AV_CLASS_CATEGORY_FILTER,
988     .child_class_iterate = child_class_iterate,
989 };
990
991 static const AVFilterPad avfilter_vf_scale2ref_inputs[] = {
992     {
993         .name         = "default",
994         .type         = AVMEDIA_TYPE_VIDEO,
995         .filter_frame = filter_frame,
996     },
997     {
998         .name         = "ref",
999         .type         = AVMEDIA_TYPE_VIDEO,
1000         .filter_frame = filter_frame_ref,
1001     },
1002     { NULL }
1003 };
1004
1005 static const AVFilterPad avfilter_vf_scale2ref_outputs[] = {
1006     {
1007         .name         = "default",
1008         .type         = AVMEDIA_TYPE_VIDEO,
1009         .config_props = config_props,
1010         .request_frame= request_frame,
1011     },
1012     {
1013         .name         = "ref",
1014         .type         = AVMEDIA_TYPE_VIDEO,
1015         .config_props = config_props_ref,
1016         .request_frame= request_frame_ref,
1017     },
1018     { NULL }
1019 };
1020
1021 const AVFilter ff_vf_scale2ref = {
1022     .name            = "scale2ref",
1023     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format to the given reference."),
1024     .init_dict       = init_dict,
1025     .uninit          = uninit,
1026     .query_formats   = query_formats,
1027     .priv_size       = sizeof(ScaleContext),
1028     .priv_class      = &scale2ref_class,
1029     .inputs          = avfilter_vf_scale2ref_inputs,
1030     .outputs         = avfilter_vf_scale2ref_outputs,
1031     .process_command = process_command,
1032 };