]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_scale.c
Merge commit 'e75ef2b7f48b96a9b6c8646058713899d5ea5731'
[ffmpeg] / libavfilter / vf_scale.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * scale video filter
24  */
25
26 #include <stdio.h>
27 #include <string.h>
28
29 #include "avfilter.h"
30 #include "formats.h"
31 #include "internal.h"
32 #include "video.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/eval.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/mathematics.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/parseutils.h"
39 #include "libavutil/pixdesc.h"
40 #include "libavutil/imgutils.h"
41 #include "libavutil/avassert.h"
42 #include "libswscale/swscale.h"
43
44 static const char *const var_names[] = {
45     "in_w",   "iw",
46     "in_h",   "ih",
47     "out_w",  "ow",
48     "out_h",  "oh",
49     "a",
50     "sar",
51     "dar",
52     "hsub",
53     "vsub",
54     "ohsub",
55     "ovsub",
56     NULL
57 };
58
59 enum var_name {
60     VAR_IN_W,   VAR_IW,
61     VAR_IN_H,   VAR_IH,
62     VAR_OUT_W,  VAR_OW,
63     VAR_OUT_H,  VAR_OH,
64     VAR_A,
65     VAR_SAR,
66     VAR_DAR,
67     VAR_HSUB,
68     VAR_VSUB,
69     VAR_OHSUB,
70     VAR_OVSUB,
71     VARS_NB
72 };
73
74 typedef struct {
75     const AVClass *class;
76     struct SwsContext *sws;     ///< software scaler context
77     struct SwsContext *isws[2]; ///< software scaler context for interlaced material
78     AVDictionary *opts;
79
80     /**
81      * New dimensions. Special values are:
82      *   0 = original width/height
83      *  -1 = keep original aspect
84      *  -N = try to keep aspect but make sure it is divisible by N
85      */
86     int w, h;
87     char *size_str;
88     unsigned int flags;         ///sws flags
89
90     int hsub, vsub;             ///< chroma subsampling
91     int slice_y;                ///< top of current output slice
92     int input_is_pal;           ///< set to 1 if the input format is paletted
93     int output_is_pal;          ///< set to 1 if the output format is paletted
94     int interlaced;
95
96     char *w_expr;               ///< width  expression string
97     char *h_expr;               ///< height expression string
98     char *flags_str;
99
100     char *in_color_matrix;
101     char *out_color_matrix;
102
103     int in_range;
104     int out_range;
105
106     int out_h_chr_pos;
107     int out_v_chr_pos;
108     int in_h_chr_pos;
109     int in_v_chr_pos;
110
111     int force_original_aspect_ratio;
112 } ScaleContext;
113
114 static av_cold int init_dict(AVFilterContext *ctx, AVDictionary **opts)
115 {
116     ScaleContext *scale = ctx->priv;
117     int ret;
118
119     if (scale->size_str && (scale->w_expr || scale->h_expr)) {
120         av_log(ctx, AV_LOG_ERROR,
121                "Size and width/height expressions cannot be set at the same time.\n");
122             return AVERROR(EINVAL);
123     }
124
125     if (scale->w_expr && !scale->h_expr)
126         FFSWAP(char *, scale->w_expr, scale->size_str);
127
128     if (scale->size_str) {
129         char buf[32];
130         if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
131             av_log(ctx, AV_LOG_ERROR,
132                    "Invalid size '%s'\n", scale->size_str);
133             return ret;
134         }
135         snprintf(buf, sizeof(buf)-1, "%d", scale->w);
136         av_opt_set(scale, "w", buf, 0);
137         snprintf(buf, sizeof(buf)-1, "%d", scale->h);
138         av_opt_set(scale, "h", buf, 0);
139     }
140     if (!scale->w_expr)
141         av_opt_set(scale, "w", "iw", 0);
142     if (!scale->h_expr)
143         av_opt_set(scale, "h", "ih", 0);
144
145     av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
146            scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
147
148     scale->flags = 0;
149
150     if (scale->flags_str) {
151         const AVClass *class = sws_get_class();
152         const AVOption    *o = av_opt_find(&class, "sws_flags", NULL, 0,
153                                            AV_OPT_SEARCH_FAKE_OBJ);
154         int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
155         if (ret < 0)
156             return ret;
157     }
158     scale->opts = *opts;
159     *opts = NULL;
160
161     return 0;
162 }
163
164 static av_cold void uninit(AVFilterContext *ctx)
165 {
166     ScaleContext *scale = ctx->priv;
167     sws_freeContext(scale->sws);
168     sws_freeContext(scale->isws[0]);
169     sws_freeContext(scale->isws[1]);
170     scale->sws = NULL;
171     av_dict_free(&scale->opts);
172 }
173
174 static int query_formats(AVFilterContext *ctx)
175 {
176     AVFilterFormats *formats;
177     enum AVPixelFormat pix_fmt;
178     int ret;
179
180     if (ctx->inputs[0]) {
181         formats = NULL;
182         for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
183             if ((sws_isSupportedInput(pix_fmt) ||
184                  sws_isSupportedEndiannessConversion(pix_fmt))
185                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
186                 ff_formats_unref(&formats);
187                 return ret;
188             }
189         ff_formats_ref(formats, &ctx->inputs[0]->out_formats);
190     }
191     if (ctx->outputs[0]) {
192         formats = NULL;
193         for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
194             if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
195                  sws_isSupportedEndiannessConversion(pix_fmt))
196                 && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
197                 ff_formats_unref(&formats);
198                 return ret;
199             }
200         ff_formats_ref(formats, &ctx->outputs[0]->in_formats);
201     }
202
203     return 0;
204 }
205
206 static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
207 {
208     if (!s)
209         s = "bt601";
210
211     if (s && strstr(s, "bt709")) {
212         colorspace = AVCOL_SPC_BT709;
213     } else if (s && strstr(s, "fcc")) {
214         colorspace = AVCOL_SPC_FCC;
215     } else if (s && strstr(s, "smpte240m")) {
216         colorspace = AVCOL_SPC_SMPTE240M;
217     } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
218         colorspace = AVCOL_SPC_BT470BG;
219     }
220
221     if (colorspace < 1 || colorspace > 7) {
222         colorspace = AVCOL_SPC_BT470BG;
223     }
224
225     return sws_getCoefficients(colorspace);
226 }
227
228 static int config_props(AVFilterLink *outlink)
229 {
230     AVFilterContext *ctx = outlink->src;
231     AVFilterLink *inlink = outlink->src->inputs[0];
232     enum AVPixelFormat outfmt = outlink->format;
233     ScaleContext *scale = ctx->priv;
234     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
235     const AVPixFmtDescriptor *out_desc = av_pix_fmt_desc_get(outlink->format);
236     int64_t w, h;
237     double var_values[VARS_NB], res;
238     char *expr;
239     int ret;
240     int factor_w, factor_h;
241
242     var_values[VAR_IN_W]  = var_values[VAR_IW] = inlink->w;
243     var_values[VAR_IN_H]  = var_values[VAR_IH] = inlink->h;
244     var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
245     var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
246     var_values[VAR_A]     = (double) inlink->w / inlink->h;
247     var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ?
248         (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
249     var_values[VAR_DAR]   = var_values[VAR_A] * var_values[VAR_SAR];
250     var_values[VAR_HSUB]  = 1 << desc->log2_chroma_w;
251     var_values[VAR_VSUB]  = 1 << desc->log2_chroma_h;
252     var_values[VAR_OHSUB] = 1 << out_desc->log2_chroma_w;
253     var_values[VAR_OVSUB] = 1 << out_desc->log2_chroma_h;
254
255     /* evaluate width and height */
256     av_expr_parse_and_eval(&res, (expr = scale->w_expr),
257                            var_names, var_values,
258                            NULL, NULL, NULL, NULL, NULL, 0, ctx);
259     scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
260     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
261                                       var_names, var_values,
262                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
263         goto fail;
264     scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
265     /* evaluate again the width, as it may depend on the output height */
266     if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
267                                       var_names, var_values,
268                                       NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
269         goto fail;
270     scale->w = res;
271
272     w = scale->w;
273     h = scale->h;
274
275     /* Check if it is requested that the result has to be divisible by a some
276      * factor (w or h = -n with n being the factor). */
277     factor_w = 1;
278     factor_h = 1;
279     if (w < -1) {
280         factor_w = -w;
281     }
282     if (h < -1) {
283         factor_h = -h;
284     }
285
286     if (w < 0 && h < 0)
287         scale->w = scale->h = 0;
288
289     if (!(w = scale->w))
290         w = inlink->w;
291     if (!(h = scale->h))
292         h = inlink->h;
293
294     /* Make sure that the result is divisible by the factor we determined
295      * earlier. If no factor was set, it is nothing will happen as the default
296      * factor is 1 */
297     if (w < 0)
298         w = av_rescale(h, inlink->w, inlink->h * factor_w) * factor_w;
299     if (h < 0)
300         h = av_rescale(w, inlink->h, inlink->w * factor_h) * factor_h;
301
302     /* Note that force_original_aspect_ratio may overwrite the previous set
303      * dimensions so that it is not divisible by the set factors anymore. */
304     if (scale->force_original_aspect_ratio) {
305         int tmp_w = av_rescale(h, inlink->w, inlink->h);
306         int tmp_h = av_rescale(w, inlink->h, inlink->w);
307
308         if (scale->force_original_aspect_ratio == 1) {
309              w = FFMIN(tmp_w, w);
310              h = FFMIN(tmp_h, h);
311         } else {
312              w = FFMAX(tmp_w, w);
313              h = FFMAX(tmp_h, h);
314         }
315     }
316
317     if (w > INT_MAX || h > INT_MAX ||
318         (h * inlink->w) > INT_MAX  ||
319         (w * inlink->h) > INT_MAX)
320         av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
321
322     outlink->w = w;
323     outlink->h = h;
324
325     /* TODO: make algorithm configurable */
326
327     scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL ||
328                           desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
329     if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
330     scale->output_is_pal = av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PAL ||
331                            av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
332
333     if (scale->sws)
334         sws_freeContext(scale->sws);
335     if (scale->isws[0])
336         sws_freeContext(scale->isws[0]);
337     if (scale->isws[1])
338         sws_freeContext(scale->isws[1]);
339     scale->isws[0] = scale->isws[1] = scale->sws = NULL;
340     if (inlink->w == outlink->w && inlink->h == outlink->h &&
341         inlink->format == outlink->format)
342         ;
343     else {
344         struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
345         int i;
346
347         for (i = 0; i < 3; i++) {
348             struct SwsContext **s = swscs[i];
349             *s = sws_alloc_context();
350             if (!*s)
351                 return AVERROR(ENOMEM);
352
353             if (scale->opts) {
354                 AVDictionaryEntry *e = NULL;
355
356                 while ((e = av_dict_get(scale->opts, "", e, AV_DICT_IGNORE_SUFFIX))) {
357                     if ((ret = av_opt_set(*s, e->key, e->value, 0)) < 0)
358                         return ret;
359                 }
360             }
361
362             av_opt_set_int(*s, "srcw", inlink ->w, 0);
363             av_opt_set_int(*s, "srch", inlink ->h >> !!i, 0);
364             av_opt_set_int(*s, "src_format", inlink->format, 0);
365             av_opt_set_int(*s, "dstw", outlink->w, 0);
366             av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
367             av_opt_set_int(*s, "dst_format", outfmt, 0);
368             av_opt_set_int(*s, "sws_flags", scale->flags, 0);
369
370             av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
371             av_opt_set_int(*s, "src_v_chr_pos", scale->in_v_chr_pos, 0);
372             av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
373             av_opt_set_int(*s, "dst_v_chr_pos", scale->out_v_chr_pos, 0);
374
375             if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
376                 return ret;
377             if (!scale->interlaced)
378                 break;
379         }
380     }
381
382     if (inlink->sample_aspect_ratio.num){
383         outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
384     } else
385         outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
386
387     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",
388            inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
389            inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
390            outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
391            outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
392            scale->flags);
393     return 0;
394
395 fail:
396     av_log(NULL, AV_LOG_ERROR,
397            "Error when evaluating the expression '%s'.\n"
398            "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
399            expr, scale->w_expr, scale->h_expr);
400     return ret;
401 }
402
403 static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
404 {
405     ScaleContext *scale = link->dst->priv;
406     const uint8_t *in[4];
407     uint8_t *out[4];
408     int in_stride[4],out_stride[4];
409     int i;
410
411     for(i=0; i<4; i++){
412         int vsub= ((i+1)&2) ? scale->vsub : 0;
413          in_stride[i] = cur_pic->linesize[i] * mul;
414         out_stride[i] = out_buf->linesize[i] * mul;
415          in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
416         out[i] = out_buf->data[i] +            field  * out_buf->linesize[i];
417     }
418     if(scale->input_is_pal)
419          in[1] = cur_pic->data[1];
420     if(scale->output_is_pal)
421         out[1] = out_buf->data[1];
422
423     return sws_scale(sws, in, in_stride, y/mul, h,
424                          out,out_stride);
425 }
426
427 static int filter_frame(AVFilterLink *link, AVFrame *in)
428 {
429     ScaleContext *scale = link->dst->priv;
430     AVFilterLink *outlink = link->dst->outputs[0];
431     AVFrame *out;
432     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
433     char buf[32];
434     int in_range;
435
436     if(   in->width  != link->w
437        || in->height != link->h
438        || in->format != link->format) {
439         int ret;
440         snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
441         av_opt_set(scale, "w", buf, 0);
442         snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
443         av_opt_set(scale, "h", buf, 0);
444
445         link->dst->inputs[0]->format = in->format;
446         link->dst->inputs[0]->w      = in->width;
447         link->dst->inputs[0]->h      = in->height;
448
449         if ((ret = config_props(outlink)) < 0)
450             return ret;
451     }
452
453     if (!scale->sws)
454         return ff_filter_frame(outlink, in);
455
456     scale->hsub = desc->log2_chroma_w;
457     scale->vsub = desc->log2_chroma_h;
458
459     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
460     if (!out) {
461         av_frame_free(&in);
462         return AVERROR(ENOMEM);
463     }
464
465     av_frame_copy_props(out, in);
466     out->width  = outlink->w;
467     out->height = outlink->h;
468
469     if(scale->output_is_pal)
470         avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
471
472     in_range = av_frame_get_color_range(in);
473
474     if (   scale->in_color_matrix
475         || scale->out_color_matrix
476         || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
477         || in_range != AVCOL_RANGE_UNSPECIFIED
478         || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
479         int in_full, out_full, brightness, contrast, saturation;
480         const int *inv_table, *table;
481
482         sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
483                                  (int **)&table, &out_full,
484                                  &brightness, &contrast, &saturation);
485
486         if (scale->in_color_matrix)
487             inv_table = parse_yuv_type(scale->in_color_matrix, av_frame_get_colorspace(in));
488         if (scale->out_color_matrix)
489             table     = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
490
491         if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
492             in_full  = (scale-> in_range == AVCOL_RANGE_JPEG);
493         else if (in_range != AVCOL_RANGE_UNSPECIFIED)
494             in_full  = (in_range == AVCOL_RANGE_JPEG);
495         if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
496             out_full = (scale->out_range == AVCOL_RANGE_JPEG);
497
498         sws_setColorspaceDetails(scale->sws, inv_table, in_full,
499                                  table, out_full,
500                                  brightness, contrast, saturation);
501         if (scale->isws[0])
502             sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
503                                      table, out_full,
504                                      brightness, contrast, saturation);
505         if (scale->isws[1])
506             sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
507                                      table, out_full,
508                                      brightness, contrast, saturation);
509     }
510
511     av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
512               (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
513               (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
514               INT_MAX);
515
516     if(scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)){
517         scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
518         scale_slice(link, out, in, scale->isws[1], 0,  link->h   /2, 2, 1);
519     }else{
520         scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
521     }
522
523     av_frame_free(&in);
524     return ff_filter_frame(outlink, out);
525 }
526
527 static const AVClass *child_class_next(const AVClass *prev)
528 {
529     return prev ? NULL : sws_get_class();
530 }
531
532 #define OFFSET(x) offsetof(ScaleContext, x)
533 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
534
535 static const AVOption scale_options[] = {
536     { "w",     "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
537     { "width", "Output video width",          OFFSET(w_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
538     { "h",     "Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
539     { "height","Output video height",         OFFSET(h_expr),    AV_OPT_TYPE_STRING,        .flags = FLAGS },
540     { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
541     { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_INT, {.i64 = 0 }, -1, 1, FLAGS },
542     { "size",   "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
543     { "s",      "set video size",          OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
544     {  "in_color_matrix", "set input YCbCr type",   OFFSET(in_color_matrix),  AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS },
545     { "out_color_matrix", "set output YCbCr type",  OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
546     {  "in_range", "set input color range",  OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
547     { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
548     { "auto",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
549     { "full",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
550     { "jpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
551     { "mpeg",   NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
552     { "tv",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
553     { "pc",     NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
554     { "in_v_chr_pos",   "input vertical chroma position in luma grid/256"  , OFFSET(in_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
555     { "in_h_chr_pos",   "input horizontal chroma position in luma grid/256", OFFSET(in_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
556     { "out_v_chr_pos",   "output vertical chroma position in luma grid/256"  , OFFSET(out_v_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
557     { "out_h_chr_pos",   "output horizontal chroma position in luma grid/256", OFFSET(out_h_chr_pos), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 512, FLAGS },
558     { "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" },
559     { "disable",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
560     { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
561     { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
562     { NULL }
563 };
564
565 static const AVClass scale_class = {
566     .class_name       = "scale",
567     .item_name        = av_default_item_name,
568     .option           = scale_options,
569     .version          = LIBAVUTIL_VERSION_INT,
570     .child_class_next = child_class_next,
571 };
572
573 static const AVFilterPad avfilter_vf_scale_inputs[] = {
574     {
575         .name         = "default",
576         .type         = AVMEDIA_TYPE_VIDEO,
577         .filter_frame = filter_frame,
578     },
579     { NULL }
580 };
581
582 static const AVFilterPad avfilter_vf_scale_outputs[] = {
583     {
584         .name         = "default",
585         .type         = AVMEDIA_TYPE_VIDEO,
586         .config_props = config_props,
587     },
588     { NULL }
589 };
590
591 AVFilter ff_vf_scale = {
592     .name          = "scale",
593     .description   = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
594     .init_dict     = init_dict,
595     .uninit        = uninit,
596     .query_formats = query_formats,
597     .priv_size     = sizeof(ScaleContext),
598     .priv_class    = &scale_class,
599     .inputs        = avfilter_vf_scale_inputs,
600     .outputs       = avfilter_vf_scale_outputs,
601 };