]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
avfilter/scale2ref: update links and re-eval expr upon ref frame change
[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     AVFilterContext *ctx = link->dst;
396     ScaleContext *scale = ctx->priv;
397     AVFilterLink *outlink = ctx->outputs[0];
398     AVFrame *out;
399     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
400     char buf[32];
401     int in_range;
402     int frame_changed;
403
404     *frame_out = NULL;
405     if (in->colorspace == AVCOL_SPC_YCGCO)
406         av_log(link->dst, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
407
408     frame_changed = in->width  != link->w ||
409                     in->height != link->h ||
410                     in->format != link->format ||
411                     in->sample_aspect_ratio.den != link->sample_aspect_ratio.den ||
412                     in->sample_aspect_ratio.num != link->sample_aspect_ratio.num;
413
414     if (frame_changed ||
415         (scale->eval_mode == EVAL_MODE_FRAME &&
416          ctx->filter == &ff_vf_scale2ref) ) {
417         int ret;
418
419         if (scale->eval_mode == EVAL_MODE_INIT) {
420             snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
421             av_opt_set(scale, "w", buf, 0);
422             snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
423             av_opt_set(scale, "h", buf, 0);
424         }
425
426         link->dst->inputs[0]->format = in->format;
427         link->dst->inputs[0]->w      = in->width;
428         link->dst->inputs[0]->h      = in->height;
429
430         link->dst->inputs[0]->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
431         link->dst->inputs[0]->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
432
433         if ((ret = config_props(outlink)) < 0)
434             return ret;
435     }
436
437     if (!scale->sws) {
438         *frame_out = in;
439         return 0;
440     }
441
442     scale->hsub = desc->log2_chroma_w;
443     scale->vsub = desc->log2_chroma_h;
444
445     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
446     if (!out) {
447         av_frame_free(&in);
448         return AVERROR(ENOMEM);
449     }
450     *frame_out = out;
451
452     av_frame_copy_props(out, in);
453     out->width  = outlink->w;
454     out->height = outlink->h;
455
456     if (scale->output_is_pal)
457         avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
458
459     in_range = in->color_range;
460
461     if (   scale->in_color_matrix
462         || scale->out_color_matrix
463         || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
464         || in_range != AVCOL_RANGE_UNSPECIFIED
465         || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
466         int in_full, out_full, brightness, contrast, saturation;
467         const int *inv_table, *table;
468
469         sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
470                                  (int **)&table, &out_full,
471                                  &brightness, &contrast, &saturation);
472
473         if (scale->in_color_matrix)
474             inv_table = parse_yuv_type(scale->in_color_matrix, in->colorspace);
475         if (scale->out_color_matrix)
476             table     = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
477         else if (scale->in_color_matrix)
478             table = inv_table;
479
480         if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
481             in_full  = (scale-> in_range == AVCOL_RANGE_JPEG);
482         else if (in_range != AVCOL_RANGE_UNSPECIFIED)
483             in_full  = (in_range == AVCOL_RANGE_JPEG);
484         if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
485             out_full = (scale->out_range == AVCOL_RANGE_JPEG);
486
487         sws_setColorspaceDetails(scale->sws, inv_table, in_full,
488                                  table, out_full,
489                                  brightness, contrast, saturation);
490         if (scale->isws[0])
491             sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
492                                      table, out_full,
493                                      brightness, contrast, saturation);
494         if (scale->isws[1])
495             sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
496                                      table, out_full,
497                                      brightness, contrast, saturation);
498
499         out->color_range = out_full ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
500     }
501
502     av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
503               (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
504               (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
505               INT_MAX);
506
507     if (scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)) {
508         scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
509         scale_slice(link, out, in, scale->isws[1], 0,  link->h   /2, 2, 1);
510     } else if (scale->nb_slices) {
511         int i, slice_h, slice_start, slice_end = 0;
512         const int nb_slices = FFMIN(scale->nb_slices, link->h);
513         for (i = 0; i < nb_slices; i++) {
514             slice_start = slice_end;
515             slice_end   = (link->h * (i+1)) / nb_slices;
516             slice_h     = slice_end - slice_start;
517             scale_slice(link, out, in, scale->sws, slice_start, slice_h, 1, 0);
518         }
519     } else {
520         scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
521     }
522
523     av_frame_free(&in);
524     return 0;
525 }
526
527 static int filter_frame(AVFilterLink *link, AVFrame *in)
528 {
529     AVFilterContext *ctx = link->dst;
530     AVFilterLink *outlink = ctx->outputs[0];
531     AVFrame *out;
532     int ret;
533
534     ret = scale_frame(link, in, &out);
535     if (out)
536         return ff_filter_frame(outlink, out);
537
538     return ret;
539 }
540
541 static int filter_frame_ref(AVFilterLink *link, AVFrame *in)
542 {
543     AVFilterLink *outlink = link->dst->outputs[1];
544     int frame_changed;
545
546     frame_changed = in->width  != link->w ||
547                     in->height != link->h ||
548                     in->format != link->format ||
549                     in->sample_aspect_ratio.den != link->sample_aspect_ratio.den ||
550                     in->sample_aspect_ratio.num != link->sample_aspect_ratio.num;
551
552     if (frame_changed) {
553         link->format = in->format;
554         link->w = in->width;
555         link->h = in->height;
556         link->sample_aspect_ratio.num = in->sample_aspect_ratio.num;
557         link->sample_aspect_ratio.den = in->sample_aspect_ratio.den;
558
559         config_props_ref(outlink);
560     }
561
562     return ff_filter_frame(outlink, in);
563 }
564
565 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
566                            char *res, int res_len, int flags)
567 {
568     ScaleContext *scale = ctx->priv;
569     int ret;
570
571     if (   !strcmp(cmd, "width")  || !strcmp(cmd, "w")
572         || !strcmp(cmd, "height") || !strcmp(cmd, "h")) {
573
574         int old_w = scale->w;
575         int old_h = scale->h;
576         AVFilterLink *outlink = ctx->outputs[0];
577
578         av_opt_set(scale, cmd, args, 0);
579         if ((ret = config_props(outlink)) < 0) {
580             scale->w = old_w;
581             scale->h = old_h;
582         }
583     } else
584         ret = AVERROR(ENOSYS);
585
586     return ret;
587 }
588
589 static const AVClass *child_class_next(const AVClass *prev)
590 {
591     return prev ? NULL : sws_get_class();
592 }
593
594 #define OFFSET(x) offsetof(ScaleContext, x)
595 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
596 #define TFLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
597
598 static const AVOption scale_options[] = {
599     { "w",     "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
600     { "width", "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
601     { "h",     "Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
602     { "height","Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = TFLAGS },
603     { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
604     { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_BOOL, {.i64 = 0 }, -1, 1, FLAGS },
605     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
606     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
607     {  "in_color_matrix", "set input YCbCr type",   OFFSET(in_color_matrix),  AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS, "color" },
608     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS,  "color"},
609         { "auto",        NULL, 0, AV_OPT_TYPE_CONST, { .str = "auto" },      0, 0, FLAGS, "color" },
610         { "bt601",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt601" },     0, 0, FLAGS, "color" },
611         { "bt470",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt470" },     0, 0, FLAGS, "color" },
612         { "smpte170m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte170m" }, 0, 0, FLAGS, "color" },
613         { "bt709",       NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt709" },     0, 0, FLAGS, "color" },
614         { "fcc",         NULL, 0, AV_OPT_TYPE_CONST, { .str = "fcc" },       0, 0, FLAGS, "color" },
615         { "smpte240m",   NULL, 0, AV_OPT_TYPE_CONST, { .str = "smpte240m" }, 0, 0, FLAGS, "color" },
616         { "bt2020",      NULL, 0, AV_OPT_TYPE_CONST, { .str = "bt2020" },    0, 0, FLAGS, "color" },
617     {  "in_range", "set input color range",  OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
618     { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
619     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
620     { "unknown", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
621     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
622     { "limited",NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
623     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
624     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
625     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
626     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
627     { "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 },
628     { "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 },
629     { "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 },
630     { "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 },
631     { "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" },
632     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
633     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
634     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
635     { "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 },
636     { "param0", "Scaler param 0",             OFFSET(param[0]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
637     { "param1", "Scaler param 1",             OFFSET(param[1]),  AV_OPT_TYPE_DOUBLE, { .dbl = SWS_PARAM_DEFAULT  }, INT_MIN, INT_MAX, FLAGS },
638     { "nb_slices", "set the number of slices (debug purpose only)", OFFSET(nb_slices), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
639     { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
640          { "init",  "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT},  .flags = FLAGS, .unit = "eval" },
641          { "frame", "eval expressions during initialization and per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
642     { NULL }
643 };
644
645 static const AVClass scale_class = {
646     .class_name       = "scale",
647     .item_name        = av_default_item_name,
648     .option           = scale_options,
649     .version          = LIBAVUTIL_VERSION_INT,
650     .category         = AV_CLASS_CATEGORY_FILTER,
651     .child_class_next = child_class_next,
652 };
653
654 static const AVFilterPad avfilter_vf_scale_inputs[] = {
655     {
656         .name         = "default",
657         .type         = AVMEDIA_TYPE_VIDEO,
658         .filter_frame = filter_frame,
659     },
660     { NULL }
661 };
662
663 static const AVFilterPad avfilter_vf_scale_outputs[] = {
664     {
665         .name         = "default",
666         .type         = AVMEDIA_TYPE_VIDEO,
667         .config_props = config_props,
668     },
669     { NULL }
670 };
671
672 AVFilter ff_vf_scale = {
673     .name            = "scale",
674     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
675     .init_dict       = init_dict,
676     .uninit          = uninit,
677     .query_formats   = query_formats,
678     .priv_size       = sizeof(ScaleContext),
679     .priv_class      = &scale_class,
680     .inputs          = avfilter_vf_scale_inputs,
681     .outputs         = avfilter_vf_scale_outputs,
682     .process_command = process_command,
683 };
684
685 static const AVClass scale2ref_class = {
686     .class_name       = "scale2ref",
687     .item_name        = av_default_item_name,
688     .option           = scale_options,
689     .version          = LIBAVUTIL_VERSION_INT,
690     .category         = AV_CLASS_CATEGORY_FILTER,
691     .child_class_next = child_class_next,
692 };
693
694 static const AVFilterPad avfilter_vf_scale2ref_inputs[] = {
695     {
696         .name         = "default",
697         .type         = AVMEDIA_TYPE_VIDEO,
698         .filter_frame = filter_frame,
699     },
700     {
701         .name         = "ref",
702         .type         = AVMEDIA_TYPE_VIDEO,
703         .filter_frame = filter_frame_ref,
704     },
705     { NULL }
706 };
707
708 static const AVFilterPad avfilter_vf_scale2ref_outputs[] = {
709     {
710         .name         = "default",
711         .type         = AVMEDIA_TYPE_VIDEO,
712         .config_props = config_props,
713         .request_frame= request_frame,
714     },
715     {
716         .name         = "ref",
717         .type         = AVMEDIA_TYPE_VIDEO,
718         .config_props = config_props_ref,
719         .request_frame= request_frame_ref,
720     },
721     { NULL }
722 };
723
724 AVFilter ff_vf_scale2ref = {
725     .name            = "scale2ref",
726     .description     = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format to the given reference."),
727     .init_dict       = init_dict,
728     .uninit          = uninit,
729     .query_formats   = query_formats,
730     .priv_size       = sizeof(ScaleContext),
731     .priv_class      = &scale2ref_class,
732     .inputs          = avfilter_vf_scale2ref_inputs,
733     .outputs         = avfilter_vf_scale2ref_outputs,
734     .process_command = process_command,
735 };