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.

585 lines
21KB

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