]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
avfilter/scale: store frame change eval
[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/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 enum EvalMode {
45     EVAL_MODE_INIT,
46     EVAL_MODE_FRAME,
47     EVAL_MODE_NB
48 };
49
50 typedef struct ScaleContext {
51     const AVClass *class;
52     struct SwsContext *sws;     ///< software scaler context
53     struct SwsContext *isws[2]; ///< software scaler context for interlaced material
54     AVDictionary *opts;
55
56     /**
57      * New dimensions. Special values are:
58      *   0 = original width/height
59      *  -1 = keep original aspect
60      *  -N = try to keep aspect but make sure it is divisible by N
61      */
62     int w, h;
63     char *size_str;
64     unsigned int flags;         ///sws flags
65     double param[2];            // sws params
66
67     int hsub, vsub;             ///< chroma subsampling
68     int slice_y;                ///< top of current output slice
69     int input_is_pal;           ///< set to 1 if the input format is paletted
70     int output_is_pal;          ///< set to 1 if the output format is paletted
71     int interlaced;
72
73     char *w_expr;               ///< width  expression string
74     char *h_expr;               ///< height expression string
75     char *flags_str;
76
77     char *in_color_matrix;
78     char *out_color_matrix;
79
80     int in_range;
81     int out_range;
82
83     int out_h_chr_pos;
84     int out_v_chr_pos;
85     int in_h_chr_pos;
86     int in_v_chr_pos;
87
88     int force_original_aspect_ratio;
89     int force_divisible_by;
90
91     int nb_slices;
92
93     int eval_mode;              ///< expression evaluation mode
94
95 } ScaleContext;
96
97 AVFilter ff_vf_scale2ref;
98
99 static av_cold int init_dict(AVFilterContext *ctx, AVDictionary **opts)
100 {
101     ScaleContext *scale = ctx->priv;
102     int ret;
103
104     if (scale->size_str && (scale->w_expr || scale->h_expr)) {
105         av_log(ctx, AV_LOG_ERROR,
106                "Size and width/height expressions cannot be set at the same time.\n");
107             return AVERROR(EINVAL);
108     }
109
110     if (scale->w_expr && !scale->h_expr)
111         FFSWAP(char *, scale->w_expr, scale->size_str);
112
113     if (scale->size_str) {
114         char buf[32];
115         if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
116             av_log(ctx, AV_LOG_ERROR,
117                    "Invalid size '%s'\n", scale->size_str);
118             return ret;
119         }
120         snprintf(buf, sizeof(buf)-1, "%d", scale->w);
121         av_opt_set(scale, "w", buf, 0);
122         snprintf(buf, sizeof(buf)-1, "%d", scale->h);
123         av_opt_set(scale, "h", buf, 0);
124     }
125     if (!scale->w_expr)
126         av_opt_set(scale, "w", "iw", 0);
127     if (!scale->h_expr)
128         av_opt_set(scale, "h", "ih", 0);
129
130     av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
131            scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
132
133     scale->flags = 0;
134
135     if (scale->flags_str) {
136         const AVClass *class = sws_get_class();
137         const AVOption    *o = av_opt_find(&class, "sws_flags", NULL, 0,
138                                            AV_OPT_SEARCH_FAKE_OBJ);
139         int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
140         if (ret < 0)
141             return ret;
142     }
143     scale->opts = *opts;
144     *opts = NULL;
145
146     return 0;
147 }
148
149 static av_cold void uninit(AVFilterContext *ctx)
150 {
151     ScaleContext *scale = ctx->priv;
152     sws_freeContext(scale->sws);
153     sws_freeContext(scale->isws[0]);
154     sws_freeContext(scale->isws[1]);
155     scale->sws = NULL;
156     av_dict_free(&scale->opts);
157 }
158
159 static int query_formats(AVFilterContext *ctx)
160 {
161     AVFilterFormats *formats;
162     enum AVPixelFormat pix_fmt;
163     int ret;
164
165     if (ctx->inputs[0]) {
166         const AVPixFmtDescriptor *desc = NULL;
167         formats = NULL;
168         while ((desc = av_pix_fmt_desc_next(desc))) {
169             pix_fmt = av_pix_fmt_desc_get_id(desc);
170             if ((sws_isSupportedInput(pix_fmt) ||
171                  sws_isSupportedEndiannessConversion(pix_fmt))
172                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
173                 return ret;
174             }
175         }
176         if ((ret = ff_formats_ref(formats, &ctx->inputs[0]->out_formats)) < 0)
177             return ret;
178     }
179     if (ctx->outputs[0]) {
180         const AVPixFmtDescriptor *desc = NULL;
181         formats = NULL;
182         while ((desc = av_pix_fmt_desc_next(desc))) {
183             pix_fmt = av_pix_fmt_desc_get_id(desc);
184             if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
185                  sws_isSupportedEndiannessConversion(pix_fmt))
186                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
187                 return ret;
188             }
189         }
190         if ((ret = ff_formats_ref(formats, &ctx->outputs[0]->in_formats)) < 0)
191             return ret;
192     }
193
194     return 0;
195 }
196
197 static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
198 {
199     if (!s)
200         s = "bt601";
201
202     if (s && strstr(s, "bt709")) {
203         colorspace = AVCOL_SPC_BT709;
204     } else if (s && strstr(s, "fcc")) {
205         colorspace = AVCOL_SPC_FCC;
206     } else if (s && strstr(s, "smpte240m")) {
207         colorspace = AVCOL_SPC_SMPTE240M;
208     } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
209         colorspace = AVCOL_SPC_BT470BG;
210     } else if (s && strstr(s, "bt2020")) {
211         colorspace = AVCOL_SPC_BT2020_NCL;
212     }
213
214     if (colorspace < 1 || colorspace > 10 || colorspace == 8) {
215         colorspace = AVCOL_SPC_BT470BG;
216     }
217
218     return sws_getCoefficients(colorspace);
219 }
220
221 static int config_props(AVFilterLink *outlink)
222 {
223     AVFilterContext *ctx = outlink->src;
224     AVFilterLink *inlink0 = outlink->src->inputs[0];
225     AVFilterLink *inlink  = ctx->filter == &ff_vf_scale2ref ?
226                             outlink->src->inputs[1] :
227                             outlink->src->inputs[0];
228     enum AVPixelFormat outfmt = outlink->format;
229     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
230     ScaleContext *scale = ctx->priv;
231     int w, h;
232     int ret;
233
234     if ((ret = ff_scale_eval_dimensions(ctx,
235                                         scale->w_expr, scale->h_expr,
236                                         inlink, outlink,
237                                         &w, &h)) < 0)
238         goto fail;
239
240     ff_scale_adjust_dimensions(inlink, &w, &h,
241                                scale->force_original_aspect_ratio,
242                                scale->force_divisible_by);
243
244     if (w > INT_MAX || h > INT_MAX ||
245         (h * inlink->w) > INT_MAX  ||
246         (w * inlink->h) > INT_MAX)
247         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
248
249     outlink->w = w;
250     outlink->h = h;
251
252     /* TODO: make algorithm configurable */
253
254     scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL;
255     if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
256     scale->output_is_pal = av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PAL ||
257                            av_pix_fmt_desc_get(outfmt)->flags & FF_PSEUDOPAL;
258
259     if (scale->sws)
260         sws_freeContext(scale->sws);
261     if (scale->isws[0])
262         sws_freeContext(scale->isws[0]);
263     if (scale->isws[1])
264         sws_freeContext(scale->isws[1]);
265     scale->isws[0] = scale->isws[1] = scale->sws = NULL;
266     if (inlink0->w == outlink->w &&
267         inlink0->h == outlink->h &&
268         !scale->out_color_matrix &&
269         scale->in_range == scale->out_range &&
270         inlink0->format == outlink->format)
271         ;
272     else {
273         struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
274         int i;
275
276         for (i = 0; i < 3; i++) {
277             int in_v_chr_pos = scale->in_v_chr_pos, out_v_chr_pos = scale->out_v_chr_pos;
278             struct SwsContext **s = swscs[i];
279             *s = sws_alloc_context();
280             if (!*s)
281                 return AVERROR(ENOMEM);
282
283             av_opt_set_int(*s, "srcw", inlink0 ->w, 0);
284             av_opt_set_int(*s, "srch", inlink0 ->h >> !!i, 0);
285             av_opt_set_int(*s, "src_format", inlink0->format, 0);
286             av_opt_set_int(*s, "dstw", outlink->w, 0);
287             av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
288             av_opt_set_int(*s, "dst_format", outfmt, 0);
289             av_opt_set_int(*s, "sws_flags", scale->flags, 0);
290             av_opt_set_int(*s, "param0", scale->param[0], 0);
291             av_opt_set_int(*s, "param1", scale->param[1], 0);
292             if (scale->in_range != AVCOL_RANGE_UNSPECIFIED)
293                 av_opt_set_int(*s, "src_range",
294                                scale->in_range == AVCOL_RANGE_JPEG, 0);
295             if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
296                 av_opt_set_int(*s, "dst_range",
297                                scale->out_range == AVCOL_RANGE_JPEG, 0);
298
299             if (scale->opts) {
300                 AVDictionaryEntry *e = NULL;
301                 while ((e = av_dict_get(scale->opts, "", e, AV_DICT_IGNORE_SUFFIX))) {
302                     if ((ret = av_opt_set(*s, e->key, e->value, 0)) < 0)
303                         return ret;
304                 }
305             }
306             /* Override YUV420P default settings to have the correct (MPEG-2) chroma positions
307              * MPEG-2 chroma positions are used by convention
308              * XXX: support other 4:2:0 pixel formats */
309             if (inlink0->format == AV_PIX_FMT_YUV420P && scale->in_v_chr_pos == -513) {
310                 in_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
311             }
312
313             if (outlink->format == AV_PIX_FMT_YUV420P && scale->out_v_chr_pos == -513) {
314                 out_v_chr_pos = (i == 0) ? 128 : (i == 1) ? 64 : 192;
315             }
316
317             av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
318             av_opt_set_int(*s, "src_v_chr_pos", in_v_chr_pos, 0);
319             av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
320             av_opt_set_int(*s, "dst_v_chr_pos", out_v_chr_pos, 0);
321
322             if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
323                 return ret;
324             if (!scale->interlaced)
325                 break;
326         }
327     }
328
329     if (inlink0->sample_aspect_ratio.num){
330         outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink0->w, outlink->w * inlink0->h}, inlink0->sample_aspect_ratio);
331     } else
332         outlink->sample_aspect_ratio = inlink0->sample_aspect_ratio;
333
334     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",
335            inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
336            inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
337            outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
338            outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
339            scale->flags);
340     return 0;
341
342 fail:
343     return ret;
344 }
345
346 static int config_props_ref(AVFilterLink *outlink)
347 {
348     AVFilterLink *inlink = outlink->src->inputs[1];
349
350     outlink->w = inlink->w;
351     outlink->h = inlink->h;
352     outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
353     outlink->time_base = inlink->time_base;
354     outlink->frame_rate = inlink->frame_rate;
355
356     return 0;
357 }
358
359 static int request_frame(AVFilterLink *outlink)
360 {
361     return ff_request_frame(outlink->src->inputs[0]);
362 }
363
364 static int request_frame_ref(AVFilterLink *outlink)
365 {
366     return ff_request_frame(outlink->src->inputs[1]);
367 }
368
369 static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
370 {
371     ScaleContext *scale = link->dst->priv;
372     const uint8_t *in[4];
373     uint8_t *out[4];
374     int in_stride[4],out_stride[4];
375     int i;
376
377     for (i=0; i<4; i++) {
378         int vsub= ((i+1)&2) ? scale->vsub : 0;
379          in_stride[i] = cur_pic->linesize[i] * mul;
380         out_stride[i] = out_buf->linesize[i] * mul;
381          in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
382         out[i] = out_buf->data[i] +            field  * out_buf->linesize[i];
383     }
384     if (scale->input_is_pal)
385          in[1] = cur_pic->data[1];
386     if (scale->output_is_pal)
387         out[1] = out_buf->data[1];
388
389     return sws_scale(sws, in, in_stride, y/mul, h,
390                          out,out_stride);
391 }
392
393 static int scale_frame(AVFilterLink *link, AVFrame *in, AVFrame **frame_out)
394 {
395     ScaleContext *scale = link->dst->priv;
396     AVFilterLink *outlink = link->dst->outputs[0];
397     AVFrame *out;
398     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
399     char buf[32];
400     int in_range;
401     int frame_changed;
402
403     *frame_out = NULL;
404     if (in->colorspace == AVCOL_SPC_YCGCO)
405         av_log(link->dst, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
406
407     frame_changed = in->width  != link->w ||
408                     in->height != link->h ||
409                     in->format != link->format ||
410                     in->sample_aspect_ratio.den != link->sample_aspect_ratio.den ||
411                     in->sample_aspect_ratio.num != link->sample_aspect_ratio.num;
412
413     if (frame_changed) {
414         int ret;
415
416         if (scale->eval_mode == EVAL_MODE_INIT) {
417             snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
418             av_opt_set(scale, "w", buf, 0);
419             snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
420             av_opt_set(scale, "h", buf, 0);
421         }
422
423         link->dst->inputs[0]->format = in->format;
424         link->dst->inputs[0]->w      = in->width;
425         link->dst->inputs[0]->h      = in->height;
426
427         link->dst->inputs[0]->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
428         link->dst->inputs[0]->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
429
430         if ((ret = config_props(outlink)) < 0)
431             return ret;
432     }
433
434     if (!scale->sws) {
435         *frame_out = in;
436         return 0;
437     }
438
439     scale->hsub = desc->log2_chroma_w;
440     scale->vsub = desc->log2_chroma_h;
441
442     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
443     if (!out) {
444         av_frame_free(&in);
445         return AVERROR(ENOMEM);
446     }
447     *frame_out = out;
448
449     av_frame_copy_props(out, in);
450     out->width  = outlink->w;
451     out->height = outlink->h;
452
453     if (scale->output_is_pal)
454         avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
455
456     in_range = in->color_range;
457
458     if (   scale->in_color_matrix
459         || scale->out_color_matrix
460         || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
461         || in_range != AVCOL_RANGE_UNSPECIFIED
462         || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
463         int in_full, out_full, brightness, contrast, saturation;
464         const int *inv_table, *table;
465
466         sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
467                                  (int **)&table, &out_full,
468                                  &brightness, &contrast, &saturation);
469
470         if (scale->in_color_matrix)
471             inv_table = parse_yuv_type(scale->in_color_matrix, in->colorspace);
472         if (scale->out_color_matrix)
473             table     = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
474         else if (scale->in_color_matrix)
475             table = inv_table;
476
477         if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
478             in_full  = (scale-> in_range == AVCOL_RANGE_JPEG);
479         else if (in_range != AVCOL_RANGE_UNSPECIFIED)
480             in_full  = (in_range == AVCOL_RANGE_JPEG);
481         if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
482             out_full = (scale->out_range == AVCOL_RANGE_JPEG);
483
484         sws_setColorspaceDetails(scale->sws, inv_table, in_full,
485                                  table, out_full,
486                                  brightness, contrast, saturation);
487         if (scale->isws[0])
488             sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
489                                      table, out_full,
490                                      brightness, contrast, saturation);
491         if (scale->isws[1])
492             sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
493                                      table, out_full,
494                                      brightness, contrast, saturation);
495
496         out->color_range = out_full ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
497     }
498
499     av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
500               (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
501               (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
502               INT_MAX);
503
504     if (scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)) {
505         scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
506         scale_slice(link, out, in, scale->isws[1], 0,  link->h   /2, 2, 1);
507     } else if (scale->nb_slices) {
508         int i, slice_h, slice_start, slice_end = 0;
509         const int nb_slices = FFMIN(scale->nb_slices, link->h);
510         for (i = 0; i < nb_slices; i++) {
511             slice_start = slice_end;
512             slice_end   = (link->h * (i+1)) / nb_slices;
513             slice_h     = slice_end - slice_start;
514             scale_slice(link, out, in, scale->sws, slice_start, slice_h, 1, 0);
515         }
516     } else {
517         scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
518     }
519
520     av_frame_free(&in);
521     return 0;
522 }
523
524 static int filter_frame(AVFilterLink *link, AVFrame *in)
525 {
526     AVFilterContext *ctx = link->dst;
527     AVFilterLink *outlink = ctx->outputs[0];
528     AVFrame *out;
529     int ret;
530
531     ret = scale_frame(link, in, &out);
532     if (out)
533         return ff_filter_frame(outlink, out);
534
535     return ret;
536 }
537
538 static int filter_frame_ref(AVFilterLink *link, AVFrame *in)
539 {
540     AVFilterLink *outlink = link->dst->outputs[1];
541
542     return ff_filter_frame(outlink, in);
543 }
544
545 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
546                            char *res, int res_len, int flags)
547 {
548     ScaleContext *scale = ctx->priv;
549     int ret;
550
551     if (   !strcmp(cmd, "width")  || !strcmp(cmd, "w")
552         || !strcmp(cmd, "height") || !strcmp(cmd, "h")) {
553
554         int old_w = scale->w;
555         int old_h = scale->h;
556         AVFilterLink *outlink = ctx->outputs[0];
557
558         av_opt_set(scale, cmd, args, 0);
559         if ((ret = config_props(outlink)) < 0) {
560             scale->w = old_w;
561             scale->h = old_h;
562         }
563     } else
564         ret = AVERROR(ENOSYS);
565
566     return ret;
567 }
568
569 static const AVClass *child_class_next(const AVClass *prev)
570 {
571     return prev ? NULL : sws_get_class();
572 }
573
574 #define OFFSET(x) offsetof(ScaleContext, x)
575 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
576 #define TFLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
577
578 static const AVOption scale_options[] = {
579     { "w",     "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
580     { "width", "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
581     { "h",     "Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
582     { "height","Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
583     { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
584     { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_BOOL, {.i64 = 0 }, -1, 1, FLAGS },
585     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
586     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
587     {  "in_color_matrix", "set input YCbCr type",   OFFSET(in_color_matrix),  AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS, "color" },
588     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS,  "color"},
589         { "auto",        NULL, 0, AV_OPT_TYPE_CONST, { .str = "auto" },      0, 0, FLAGS, "color" },
590         { "bt601",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt601" },     0, 0, FLAGS, "color" },
591         { "bt470",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt470" },     0, 0, FLAGS, "color" },
592         { "smpte170m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte170m" }, 0, 0, FLAGS, "color" },
593         { "bt709",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt709" },     0, 0, FLAGS, "color" },
594         { "fcc",         NULL, 0, AV_OPT_TYPE_CONST, { .str = "fcc" },       0, 0, FLAGS, "color" },
595         { "smpte240m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte240m" }, 0, 0, FLAGS, "color" },
596         { "bt2020",      NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt2020" },    0, 0, FLAGS, "color" },
597     {  "in_range", "set input color range",  OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
598     { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
599     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
600     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
601     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
602     { "limited",NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
603     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
604     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
605     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
606     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
607     { "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 },
608     { "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 },
609     { "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 },
610     { "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 },
611     { "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" },
612     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
613     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
614     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
615     { "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 },
616     { "param0", "Scaler param 0",             OFFSET(param[0]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
617     { "param1", "Scaler param 1",             OFFSET(param[1]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
618     { "nb_slices", "set the number of slices (debug purpose only)", OFFSET(nb_slices), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
619     { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
620          { "init",  "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT},  .flags = FLAGS, .unit = "eval" },
621          { "frame", "eval expressions during initialization and per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
622     { NULL }
623 };
624
625 static const AVClass scale_class = {
626     .class_name       = "scale",
627     .item_name        = av_default_item_name,
628     .option           = scale_options,
629     .version          = LIBAVUTIL_VERSION_INT,
630     .category         = AV_CLASS_CATEGORY_FILTER,
631     .child_class_next = child_class_next,
632 };
633
634 static const AVFilterPad avfilter_vf_scale_inputs[] = {
635     {
636         .name         = "default",
637         .type         = AVMEDIA_TYPE_VIDEO,
638         .filter_frame = filter_frame,
639     },
640     { NULL }
641 };
642
643 static const AVFilterPad avfilter_vf_scale_outputs[] = {
644     {
645         .name         = "default",
646         .type         = AVMEDIA_TYPE_VIDEO,
647         .config_props = config_props,
648     },
649     { NULL }
650 };
651
652 AVFilter ff_vf_scale = {
653     .name            = "scale",
654     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
655     .init_dict       = init_dict,
656     .uninit          = uninit,
657     .query_formats   = query_formats,
658     .priv_size       = sizeof(ScaleContext),
659     .priv_class      = &scale_class,
660     .inputs          = avfilter_vf_scale_inputs,
661     .outputs         = avfilter_vf_scale_outputs,
662     .process_command = process_command,
663 };
664
665 static const AVClass scale2ref_class = {
666     .class_name       = "scale2ref",
667     .item_name        = av_default_item_name,
668     .option           = scale_options,
669     .version          = LIBAVUTIL_VERSION_INT,
670     .category         = AV_CLASS_CATEGORY_FILTER,
671     .child_class_next = child_class_next,
672 };
673
674 static const AVFilterPad avfilter_vf_scale2ref_inputs[] = {
675     {
676         .name         = "default",
677         .type         = AVMEDIA_TYPE_VIDEO,
678         .filter_frame = filter_frame,
679     },
680     {
681         .name         = "ref",
682         .type         = AVMEDIA_TYPE_VIDEO,
683         .filter_frame = filter_frame_ref,
684     },
685     { NULL }
686 };
687
688 static const AVFilterPad avfilter_vf_scale2ref_outputs[] = {
689     {
690         .name         = "default",
691         .type         = AVMEDIA_TYPE_VIDEO,
692         .config_props = config_props,
693         .request_frame= request_frame,
694     },
695     {
696         .name         = "ref",
697         .type         = AVMEDIA_TYPE_VIDEO,
698         .config_props = config_props_ref,
699         .request_frame= request_frame_ref,
700     },
701     { NULL }
702 };
703
704 AVFilter ff_vf_scale2ref = {
705     .name            = "scale2ref",
706     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format to the given reference."),
707     .init_dict       = init_dict,
708     .uninit          = uninit,
709     .query_formats   = query_formats,
710     .priv_size       = sizeof(ScaleContext),
711     .priv_class      = &scale2ref_class,
712     .inputs          = avfilter_vf_scale2ref_inputs,
713     .outputs         = avfilter_vf_scale2ref_outputs,
714     .process_command = process_command,
715 };