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.

561 lines
20KB

  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. int out_h_chr_pos;
  89. int out_v_chr_pos;
  90. int in_h_chr_pos;
  91. int in_v_chr_pos;
  92. int force_original_aspect_ratio;
  93. } ScaleContext;
  94. static av_cold int init(AVFilterContext *ctx)
  95. {
  96. ScaleContext *scale = ctx->priv;
  97. int ret;
  98. if (scale->size_str && (scale->w_expr || scale->h_expr)) {
  99. av_log(ctx, AV_LOG_ERROR,
  100. "Size and width/height expressions cannot be set at the same time.\n");
  101. return AVERROR(EINVAL);
  102. }
  103. if (scale->w_expr && !scale->h_expr)
  104. FFSWAP(char *, scale->w_expr, scale->size_str);
  105. if (scale->size_str) {
  106. char buf[32];
  107. if ((ret = av_parse_video_size(&scale->w, &scale->h, scale->size_str)) < 0) {
  108. av_log(ctx, AV_LOG_ERROR,
  109. "Invalid size '%s'\n", scale->size_str);
  110. return ret;
  111. }
  112. snprintf(buf, sizeof(buf)-1, "%d", scale->w);
  113. av_opt_set(scale, "w", buf, 0);
  114. snprintf(buf, sizeof(buf)-1, "%d", scale->h);
  115. av_opt_set(scale, "h", buf, 0);
  116. }
  117. if (!scale->w_expr)
  118. av_opt_set(scale, "w", "iw", 0);
  119. if (!scale->h_expr)
  120. av_opt_set(scale, "h", "ih", 0);
  121. av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
  122. scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
  123. scale->flags = SWS_BILINEAR;
  124. if (scale->flags_str) {
  125. const AVClass *class = sws_get_class();
  126. const AVOption *o = av_opt_find(&class, "sws_flags", NULL, 0,
  127. AV_OPT_SEARCH_FAKE_OBJ);
  128. int ret = av_opt_eval_flags(&class, o, scale->flags_str, &scale->flags);
  129. if (ret < 0)
  130. return ret;
  131. }
  132. return 0;
  133. }
  134. static av_cold void uninit(AVFilterContext *ctx)
  135. {
  136. ScaleContext *scale = ctx->priv;
  137. sws_freeContext(scale->sws);
  138. sws_freeContext(scale->isws[0]);
  139. sws_freeContext(scale->isws[1]);
  140. scale->sws = NULL;
  141. }
  142. static int query_formats(AVFilterContext *ctx)
  143. {
  144. AVFilterFormats *formats;
  145. enum AVPixelFormat pix_fmt;
  146. int ret;
  147. if (ctx->inputs[0]) {
  148. formats = NULL;
  149. for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
  150. if ((sws_isSupportedInput(pix_fmt) ||
  151. sws_isSupportedEndiannessConversion(pix_fmt))
  152. && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
  153. ff_formats_unref(&formats);
  154. return ret;
  155. }
  156. ff_formats_ref(formats, &ctx->inputs[0]->out_formats);
  157. }
  158. if (ctx->outputs[0]) {
  159. formats = NULL;
  160. for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++)
  161. if ((sws_isSupportedOutput(pix_fmt) || pix_fmt == AV_PIX_FMT_PAL8 ||
  162. sws_isSupportedEndiannessConversion(pix_fmt))
  163. && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
  164. ff_formats_unref(&formats);
  165. return ret;
  166. }
  167. ff_formats_ref(formats, &ctx->outputs[0]->in_formats);
  168. }
  169. return 0;
  170. }
  171. static const int *parse_yuv_type(const char *s, enum AVColorSpace colorspace)
  172. {
  173. if (!s)
  174. s = "bt601";
  175. if (s && strstr(s, "bt709")) {
  176. colorspace = AVCOL_SPC_BT709;
  177. } else if (s && strstr(s, "fcc")) {
  178. colorspace = AVCOL_SPC_FCC;
  179. } else if (s && strstr(s, "smpte240m")) {
  180. colorspace = AVCOL_SPC_SMPTE240M;
  181. } else if (s && (strstr(s, "bt601") || strstr(s, "bt470") || strstr(s, "smpte170m"))) {
  182. colorspace = AVCOL_SPC_BT470BG;
  183. }
  184. if (colorspace < 1 || colorspace > 7) {
  185. colorspace = AVCOL_SPC_BT470BG;
  186. }
  187. return sws_getCoefficients(colorspace);
  188. }
  189. static int config_props(AVFilterLink *outlink)
  190. {
  191. AVFilterContext *ctx = outlink->src;
  192. AVFilterLink *inlink = outlink->src->inputs[0];
  193. enum AVPixelFormat outfmt = outlink->format;
  194. ScaleContext *scale = ctx->priv;
  195. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  196. int64_t w, h;
  197. double var_values[VARS_NB], res;
  198. char *expr;
  199. int ret;
  200. var_values[VAR_IN_W] = var_values[VAR_IW] = inlink->w;
  201. var_values[VAR_IN_H] = var_values[VAR_IH] = inlink->h;
  202. var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
  203. var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
  204. var_values[VAR_A] = (double) inlink->w / inlink->h;
  205. var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
  206. (double) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
  207. var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
  208. var_values[VAR_HSUB] = 1 << desc->log2_chroma_w;
  209. var_values[VAR_VSUB] = 1 << desc->log2_chroma_h;
  210. /* evaluate width and height */
  211. av_expr_parse_and_eval(&res, (expr = scale->w_expr),
  212. var_names, var_values,
  213. NULL, NULL, NULL, NULL, NULL, 0, ctx);
  214. scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
  215. if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
  216. var_names, var_values,
  217. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  218. goto fail;
  219. scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
  220. /* evaluate again the width, as it may depend on the output height */
  221. if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
  222. var_names, var_values,
  223. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  224. goto fail;
  225. scale->w = res;
  226. w = scale->w;
  227. h = scale->h;
  228. /* sanity check params */
  229. if (w < -1 || h < -1) {
  230. av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
  231. return AVERROR(EINVAL);
  232. }
  233. if (w == -1 && h == -1)
  234. scale->w = scale->h = 0;
  235. if (!(w = scale->w))
  236. w = inlink->w;
  237. if (!(h = scale->h))
  238. h = inlink->h;
  239. if (w == -1)
  240. w = av_rescale(h, inlink->w, inlink->h);
  241. if (h == -1)
  242. h = av_rescale(w, inlink->h, inlink->w);
  243. if (scale->force_original_aspect_ratio) {
  244. int tmp_w = av_rescale(h, inlink->w, inlink->h);
  245. int tmp_h = av_rescale(w, inlink->h, inlink->w);
  246. if (scale->force_original_aspect_ratio == 1) {
  247. w = FFMIN(tmp_w, w);
  248. h = FFMIN(tmp_h, h);
  249. } else {
  250. w = FFMAX(tmp_w, w);
  251. h = FFMAX(tmp_h, h);
  252. }
  253. }
  254. if (w > INT_MAX || h > INT_MAX ||
  255. (h * inlink->w) > INT_MAX ||
  256. (w * inlink->h) > INT_MAX)
  257. av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
  258. outlink->w = w;
  259. outlink->h = h;
  260. /* TODO: make algorithm configurable */
  261. scale->input_is_pal = desc->flags & AV_PIX_FMT_FLAG_PAL ||
  262. desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
  263. if (outfmt == AV_PIX_FMT_PAL8) outfmt = AV_PIX_FMT_BGR8;
  264. scale->output_is_pal = av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PAL ||
  265. av_pix_fmt_desc_get(outfmt)->flags & AV_PIX_FMT_FLAG_PSEUDOPAL;
  266. if (scale->sws)
  267. sws_freeContext(scale->sws);
  268. if (scale->isws[0])
  269. sws_freeContext(scale->isws[0]);
  270. if (scale->isws[1])
  271. sws_freeContext(scale->isws[1]);
  272. scale->isws[0] = scale->isws[1] = scale->sws = NULL;
  273. if (inlink->w == outlink->w && inlink->h == outlink->h &&
  274. inlink->format == outlink->format)
  275. ;
  276. else {
  277. struct SwsContext **swscs[3] = {&scale->sws, &scale->isws[0], &scale->isws[1]};
  278. int i;
  279. for (i = 0; i < 3; i++) {
  280. struct SwsContext **s = swscs[i];
  281. *s = sws_alloc_context();
  282. if (!*s)
  283. return AVERROR(ENOMEM);
  284. av_opt_set_int(*s, "srcw", inlink ->w, 0);
  285. av_opt_set_int(*s, "srch", inlink ->h >> !!i, 0);
  286. av_opt_set_int(*s, "src_format", inlink->format, 0);
  287. av_opt_set_int(*s, "dstw", outlink->w, 0);
  288. av_opt_set_int(*s, "dsth", outlink->h >> !!i, 0);
  289. av_opt_set_int(*s, "dst_format", outfmt, 0);
  290. av_opt_set_int(*s, "sws_flags", scale->flags, 0);
  291. av_opt_set_int(*s, "src_h_chr_pos", scale->in_h_chr_pos, 0);
  292. av_opt_set_int(*s, "src_v_chr_pos", scale->in_v_chr_pos, 0);
  293. av_opt_set_int(*s, "dst_h_chr_pos", scale->out_h_chr_pos, 0);
  294. av_opt_set_int(*s, "dst_v_chr_pos", scale->out_v_chr_pos, 0);
  295. if ((ret = sws_init_context(*s, NULL, NULL)) < 0)
  296. return ret;
  297. if (!scale->interlaced)
  298. break;
  299. }
  300. }
  301. if (inlink->sample_aspect_ratio.num){
  302. outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
  303. } else
  304. outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
  305. 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",
  306. inlink ->w, inlink ->h, av_get_pix_fmt_name( inlink->format),
  307. inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
  308. outlink->w, outlink->h, av_get_pix_fmt_name(outlink->format),
  309. outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
  310. scale->flags);
  311. return 0;
  312. fail:
  313. av_log(NULL, AV_LOG_ERROR,
  314. "Error when evaluating the expression '%s'.\n"
  315. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  316. expr, scale->w_expr, scale->h_expr);
  317. return ret;
  318. }
  319. static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field)
  320. {
  321. ScaleContext *scale = link->dst->priv;
  322. const uint8_t *in[4];
  323. uint8_t *out[4];
  324. int in_stride[4],out_stride[4];
  325. int i;
  326. for(i=0; i<4; i++){
  327. int vsub= ((i+1)&2) ? scale->vsub : 0;
  328. in_stride[i] = cur_pic->linesize[i] * mul;
  329. out_stride[i] = out_buf->linesize[i] * mul;
  330. in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
  331. out[i] = out_buf->data[i] + field * out_buf->linesize[i];
  332. }
  333. if(scale->input_is_pal)
  334. in[1] = cur_pic->data[1];
  335. if(scale->output_is_pal)
  336. out[1] = out_buf->data[1];
  337. return sws_scale(sws, in, in_stride, y/mul, h,
  338. out,out_stride);
  339. }
  340. static int filter_frame(AVFilterLink *link, AVFrame *in)
  341. {
  342. ScaleContext *scale = link->dst->priv;
  343. AVFilterLink *outlink = link->dst->outputs[0];
  344. AVFrame *out;
  345. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
  346. char buf[32];
  347. int in_range;
  348. if( in->width != link->w
  349. || in->height != link->h
  350. || in->format != link->format) {
  351. int ret;
  352. snprintf(buf, sizeof(buf)-1, "%d", outlink->w);
  353. av_opt_set(scale, "w", buf, 0);
  354. snprintf(buf, sizeof(buf)-1, "%d", outlink->h);
  355. av_opt_set(scale, "h", buf, 0);
  356. link->dst->inputs[0]->format = in->format;
  357. link->dst->inputs[0]->w = in->width;
  358. link->dst->inputs[0]->h = in->height;
  359. if ((ret = config_props(outlink)) < 0)
  360. return ret;
  361. }
  362. if (!scale->sws)
  363. return ff_filter_frame(outlink, in);
  364. scale->hsub = desc->log2_chroma_w;
  365. scale->vsub = desc->log2_chroma_h;
  366. out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  367. if (!out) {
  368. av_frame_free(&in);
  369. return AVERROR(ENOMEM);
  370. }
  371. av_frame_copy_props(out, in);
  372. out->width = outlink->w;
  373. out->height = outlink->h;
  374. if(scale->output_is_pal)
  375. avpriv_set_systematic_pal2((uint32_t*)out->data[1], outlink->format == AV_PIX_FMT_PAL8 ? AV_PIX_FMT_BGR8 : outlink->format);
  376. in_range = av_frame_get_color_range(in);
  377. if ( scale->in_color_matrix
  378. || scale->out_color_matrix
  379. || scale-> in_range != AVCOL_RANGE_UNSPECIFIED
  380. || in_range != AVCOL_RANGE_UNSPECIFIED
  381. || scale->out_range != AVCOL_RANGE_UNSPECIFIED) {
  382. int in_full, out_full, brightness, contrast, saturation;
  383. const int *inv_table, *table;
  384. sws_getColorspaceDetails(scale->sws, (int **)&inv_table, &in_full,
  385. (int **)&table, &out_full,
  386. &brightness, &contrast, &saturation);
  387. if (scale->in_color_matrix)
  388. inv_table = parse_yuv_type(scale->in_color_matrix, av_frame_get_colorspace(in));
  389. if (scale->out_color_matrix)
  390. table = parse_yuv_type(scale->out_color_matrix, AVCOL_SPC_UNSPECIFIED);
  391. if (scale-> in_range != AVCOL_RANGE_UNSPECIFIED)
  392. in_full = (scale-> in_range == AVCOL_RANGE_JPEG);
  393. else if (in_range != AVCOL_RANGE_UNSPECIFIED)
  394. in_full = (in_range == AVCOL_RANGE_JPEG);
  395. if (scale->out_range != AVCOL_RANGE_UNSPECIFIED)
  396. out_full = (scale->out_range == AVCOL_RANGE_JPEG);
  397. sws_setColorspaceDetails(scale->sws, inv_table, in_full,
  398. table, out_full,
  399. brightness, contrast, saturation);
  400. if (scale->isws[0])
  401. sws_setColorspaceDetails(scale->isws[0], inv_table, in_full,
  402. table, out_full,
  403. brightness, contrast, saturation);
  404. if (scale->isws[1])
  405. sws_setColorspaceDetails(scale->isws[1], inv_table, in_full,
  406. table, out_full,
  407. brightness, contrast, saturation);
  408. }
  409. av_reduce(&out->sample_aspect_ratio.num, &out->sample_aspect_ratio.den,
  410. (int64_t)in->sample_aspect_ratio.num * outlink->h * link->w,
  411. (int64_t)in->sample_aspect_ratio.den * outlink->w * link->h,
  412. INT_MAX);
  413. if(scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)){
  414. scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0);
  415. scale_slice(link, out, in, scale->isws[1], 0, link->h /2, 2, 1);
  416. }else{
  417. scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0);
  418. }
  419. av_frame_free(&in);
  420. return ff_filter_frame(outlink, out);
  421. }
  422. #define OFFSET(x) offsetof(ScaleContext, x)
  423. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  424. static const AVOption scale_options[] = {
  425. { "w", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
  426. { "width", "Output video width", OFFSET(w_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
  427. { "h", "Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
  428. { "height","Output video height", OFFSET(h_expr), AV_OPT_TYPE_STRING, .flags = FLAGS },
  429. { "flags", "Flags to pass to libswscale", OFFSET(flags_str), AV_OPT_TYPE_STRING, { .str = "bilinear" }, .flags = FLAGS },
  430. { "interl", "set interlacing", OFFSET(interlaced), AV_OPT_TYPE_INT, {.i64 = 0 }, -1, 1, FLAGS },
  431. { "size", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
  432. { "s", "set video size", OFFSET(size_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, FLAGS },
  433. { "in_color_matrix", "set input YCbCr type", OFFSET(in_color_matrix), AV_OPT_TYPE_STRING, { .str = "auto" }, .flags = FLAGS },
  434. { "out_color_matrix", "set output YCbCr type", OFFSET(out_color_matrix), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = FLAGS },
  435. { "in_range", "set input color range", OFFSET( in_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
  436. { "out_range", "set output color range", OFFSET(out_range), AV_OPT_TYPE_INT, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 2, FLAGS, "range" },
  437. { "auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_UNSPECIFIED }, 0, 0, FLAGS, "range" },
  438. { "full", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
  439. { "jpeg", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
  440. { "mpeg", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
  441. { "tv", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_JPEG}, 0, 0, FLAGS, "range" },
  442. { "pc", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = AVCOL_RANGE_MPEG}, 0, 0, FLAGS, "range" },
  443. { "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 },
  444. { "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 },
  445. { "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 },
  446. { "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 },
  447. { "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" },
  448. { "disable", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 0 }, 0, 0, FLAGS, "force_oar" },
  449. { "decrease", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 1 }, 0, 0, FLAGS, "force_oar" },
  450. { "increase", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = 2 }, 0, 0, FLAGS, "force_oar" },
  451. { NULL },
  452. };
  453. AVFILTER_DEFINE_CLASS(scale);
  454. static const AVFilterPad avfilter_vf_scale_inputs[] = {
  455. {
  456. .name = "default",
  457. .type = AVMEDIA_TYPE_VIDEO,
  458. .filter_frame = filter_frame,
  459. },
  460. { NULL }
  461. };
  462. static const AVFilterPad avfilter_vf_scale_outputs[] = {
  463. {
  464. .name = "default",
  465. .type = AVMEDIA_TYPE_VIDEO,
  466. .config_props = config_props,
  467. },
  468. { NULL }
  469. };
  470. AVFilter avfilter_vf_scale = {
  471. .name = "scale",
  472. .description = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
  473. .init = init,
  474. .uninit = uninit,
  475. .query_formats = query_formats,
  476. .priv_size = sizeof(ScaleContext),
  477. .priv_class = &scale_class,
  478. .inputs = avfilter_vf_scale_inputs,
  479. .outputs = avfilter_vf_scale_outputs,
  480. };