You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

532 lines
19KB

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