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.

399 lines
14KB

  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 "avfilter.h"
  25. #include "formats.h"
  26. #include "video.h"
  27. #include "libavutil/avstring.h"
  28. #include "libavutil/eval.h"
  29. #include "libavutil/mathematics.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/pixdesc.h"
  32. #include "libavutil/imgutils.h"
  33. #include "libavutil/avassert.h"
  34. #include "libswscale/swscale.h"
  35. static const char *const var_names[] = {
  36. "in_w", "iw",
  37. "in_h", "ih",
  38. "out_w", "ow",
  39. "out_h", "oh",
  40. "a",
  41. "sar",
  42. "dar",
  43. "hsub",
  44. "vsub",
  45. NULL
  46. };
  47. enum var_name {
  48. VAR_IN_W, VAR_IW,
  49. VAR_IN_H, VAR_IH,
  50. VAR_OUT_W, VAR_OW,
  51. VAR_OUT_H, VAR_OH,
  52. VAR_A,
  53. VAR_SAR,
  54. VAR_DAR,
  55. VAR_HSUB,
  56. VAR_VSUB,
  57. VARS_NB
  58. };
  59. typedef struct {
  60. struct SwsContext *sws; ///< software scaler context
  61. struct SwsContext *isws[2]; ///< software scaler context for interlaced material
  62. /**
  63. * New dimensions. Special values are:
  64. * 0 = original width/height
  65. * -1 = keep original aspect
  66. */
  67. int w, h;
  68. unsigned int flags; ///sws flags
  69. int hsub, vsub; ///< chroma subsampling
  70. int slice_y; ///< top of current output slice
  71. int input_is_pal; ///< set to 1 if the input format is paletted
  72. int output_is_pal; ///< set to 1 if the output format is paletted
  73. int interlaced;
  74. char w_expr[256]; ///< width expression string
  75. char h_expr[256]; ///< height expression string
  76. } ScaleContext;
  77. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  78. {
  79. ScaleContext *scale = ctx->priv;
  80. const char *p;
  81. av_strlcpy(scale->w_expr, "iw", sizeof(scale->w_expr));
  82. av_strlcpy(scale->h_expr, "ih", sizeof(scale->h_expr));
  83. scale->flags = SWS_BILINEAR;
  84. if (args) {
  85. sscanf(args, "%255[^:]:%255[^:]", scale->w_expr, scale->h_expr);
  86. p = strstr(args,"flags=");
  87. if (p) {
  88. const AVClass *class = sws_get_class();
  89. const AVOption *o = av_opt_find(&class, "sws_flags", NULL, 0,
  90. AV_OPT_SEARCH_FAKE_OBJ);
  91. int ret = av_opt_eval_flags(&class, o, p + 6, &scale->flags);
  92. if (ret < 0)
  93. return ret;
  94. }
  95. if(strstr(args,"interl=1")){
  96. scale->interlaced=1;
  97. }else if(strstr(args,"interl=-1"))
  98. scale->interlaced=-1;
  99. }
  100. return 0;
  101. }
  102. static av_cold void uninit(AVFilterContext *ctx)
  103. {
  104. ScaleContext *scale = ctx->priv;
  105. sws_freeContext(scale->sws);
  106. sws_freeContext(scale->isws[0]);
  107. sws_freeContext(scale->isws[1]);
  108. scale->sws = NULL;
  109. }
  110. static int query_formats(AVFilterContext *ctx)
  111. {
  112. AVFilterFormats *formats;
  113. enum PixelFormat pix_fmt;
  114. int ret;
  115. if (ctx->inputs[0]) {
  116. formats = NULL;
  117. for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
  118. if ( sws_isSupportedInput(pix_fmt)
  119. && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
  120. ff_formats_unref(&formats);
  121. return ret;
  122. }
  123. ff_formats_ref(formats, &ctx->inputs[0]->out_formats);
  124. }
  125. if (ctx->outputs[0]) {
  126. formats = NULL;
  127. for (pix_fmt = 0; pix_fmt < PIX_FMT_NB; pix_fmt++)
  128. if ( (sws_isSupportedOutput(pix_fmt) || pix_fmt == PIX_FMT_PAL8)
  129. && (ret = ff_add_format(&formats, pix_fmt)) < 0) {
  130. ff_formats_unref(&formats);
  131. return ret;
  132. }
  133. ff_formats_ref(formats, &ctx->outputs[0]->in_formats);
  134. }
  135. return 0;
  136. }
  137. static int config_props(AVFilterLink *outlink)
  138. {
  139. AVFilterContext *ctx = outlink->src;
  140. AVFilterLink *inlink = outlink->src->inputs[0];
  141. enum PixelFormat outfmt = outlink->format;
  142. ScaleContext *scale = ctx->priv;
  143. int64_t w, h;
  144. double var_values[VARS_NB], res;
  145. char *expr;
  146. int ret;
  147. var_values[VAR_IN_W] = var_values[VAR_IW] = inlink->w;
  148. var_values[VAR_IN_H] = var_values[VAR_IH] = inlink->h;
  149. var_values[VAR_OUT_W] = var_values[VAR_OW] = NAN;
  150. var_values[VAR_OUT_H] = var_values[VAR_OH] = NAN;
  151. var_values[VAR_A] = (float) inlink->w / inlink->h;
  152. var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ?
  153. (float) inlink->sample_aspect_ratio.num / inlink->sample_aspect_ratio.den : 1;
  154. var_values[VAR_DAR] = var_values[VAR_A] * var_values[VAR_SAR];
  155. var_values[VAR_HSUB] = 1<<av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
  156. var_values[VAR_VSUB] = 1<<av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
  157. /* evaluate width and height */
  158. av_expr_parse_and_eval(&res, (expr = scale->w_expr),
  159. var_names, var_values,
  160. NULL, NULL, NULL, NULL, NULL, 0, ctx);
  161. scale->w = var_values[VAR_OUT_W] = var_values[VAR_OW] = res;
  162. if ((ret = av_expr_parse_and_eval(&res, (expr = scale->h_expr),
  163. var_names, var_values,
  164. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  165. goto fail;
  166. scale->h = var_values[VAR_OUT_H] = var_values[VAR_OH] = res;
  167. /* evaluate again the width, as it may depend on the output height */
  168. if ((ret = av_expr_parse_and_eval(&res, (expr = scale->w_expr),
  169. var_names, var_values,
  170. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  171. goto fail;
  172. scale->w = res;
  173. w = scale->w;
  174. h = scale->h;
  175. /* sanity check params */
  176. if (w < -1 || h < -1) {
  177. av_log(ctx, AV_LOG_ERROR, "Size values less than -1 are not acceptable.\n");
  178. return AVERROR(EINVAL);
  179. }
  180. if (w == -1 && h == -1)
  181. scale->w = scale->h = 0;
  182. if (!(w = scale->w))
  183. w = inlink->w;
  184. if (!(h = scale->h))
  185. h = inlink->h;
  186. if (w == -1)
  187. w = av_rescale(h, inlink->w, inlink->h);
  188. if (h == -1)
  189. h = av_rescale(w, inlink->h, inlink->w);
  190. if (w > INT_MAX || h > INT_MAX ||
  191. (h * inlink->w) > INT_MAX ||
  192. (w * inlink->h) > INT_MAX)
  193. av_log(ctx, AV_LOG_ERROR, "Rescaled value for width or height is too big.\n");
  194. outlink->w = w;
  195. outlink->h = h;
  196. /* TODO: make algorithm configurable */
  197. scale->input_is_pal = av_pix_fmt_descriptors[inlink->format].flags & PIX_FMT_PAL ||
  198. av_pix_fmt_descriptors[inlink->format].flags & PIX_FMT_PSEUDOPAL;
  199. if (outfmt == PIX_FMT_PAL8) outfmt = PIX_FMT_BGR8;
  200. scale->output_is_pal = av_pix_fmt_descriptors[outfmt].flags & PIX_FMT_PAL ||
  201. av_pix_fmt_descriptors[outfmt].flags & PIX_FMT_PSEUDOPAL;
  202. if (scale->sws)
  203. sws_freeContext(scale->sws);
  204. if (inlink->w == outlink->w && inlink->h == outlink->h &&
  205. inlink->format == outlink->format)
  206. scale->sws = NULL;
  207. else {
  208. scale->sws = sws_getContext(inlink ->w, inlink ->h, inlink ->format,
  209. outlink->w, outlink->h, outfmt,
  210. scale->flags, NULL, NULL, NULL);
  211. if (scale->isws[0])
  212. sws_freeContext(scale->isws[0]);
  213. scale->isws[0] = sws_getContext(inlink ->w, inlink ->h/2, inlink ->format,
  214. outlink->w, outlink->h/2, outfmt,
  215. scale->flags, NULL, NULL, NULL);
  216. if (scale->isws[1])
  217. sws_freeContext(scale->isws[1]);
  218. scale->isws[1] = sws_getContext(inlink ->w, inlink ->h/2, inlink ->format,
  219. outlink->w, outlink->h/2, outfmt,
  220. scale->flags, NULL, NULL, NULL);
  221. if (!scale->sws || !scale->isws[0] || !scale->isws[1])
  222. return AVERROR(EINVAL);
  223. }
  224. if (inlink->sample_aspect_ratio.num){
  225. outlink->sample_aspect_ratio = av_mul_q((AVRational){outlink->h * inlink->w, outlink->w * inlink->h}, inlink->sample_aspect_ratio);
  226. } else
  227. outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
  228. av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d fmt:%s sar:%d/%d flags:0x%0x\n",
  229. inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
  230. inlink->sample_aspect_ratio.num, inlink->sample_aspect_ratio.den,
  231. outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
  232. outlink->sample_aspect_ratio.num, outlink->sample_aspect_ratio.den,
  233. scale->flags);
  234. return 0;
  235. fail:
  236. av_log(NULL, AV_LOG_ERROR,
  237. "Error when evaluating the expression '%s'.\n"
  238. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  239. expr, scale->w_expr, scale->h_expr);
  240. return ret;
  241. }
  242. static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
  243. {
  244. ScaleContext *scale = link->dst->priv;
  245. AVFilterLink *outlink = link->dst->outputs[0];
  246. AVFilterBufferRef *outpicref;
  247. if( picref->video->w != link->w
  248. || picref->video->h != link->h
  249. || picref->format != link->format) {
  250. AVFilterLink *out_link;
  251. int ret;
  252. snprintf(scale->w_expr, sizeof(scale->w_expr)-1, "%d", outlink->w);
  253. snprintf(scale->h_expr, sizeof(scale->h_expr)-1, "%d", outlink->h);
  254. link->dst->inputs[0]->format = picref->format;
  255. link->dst->inputs[0]->w = picref->video->w;
  256. link->dst->inputs[0]->h = picref->video->h;
  257. if ((ret = config_props(outlink)) < 0)
  258. av_assert0(0); //what to do here ?
  259. }
  260. if (!scale->sws) {
  261. ff_start_frame(outlink, avfilter_ref_buffer(picref, ~0));
  262. return;
  263. }
  264. scale->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
  265. scale->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
  266. outpicref = avfilter_get_video_buffer(outlink, AV_PERM_WRITE|AV_PERM_ALIGN, outlink->w, outlink->h);
  267. avfilter_copy_buffer_ref_props(outpicref, picref);
  268. outpicref->video->w = outlink->w;
  269. outpicref->video->h = outlink->h;
  270. outlink->out_buf = outpicref;
  271. if(scale->output_is_pal)
  272. ff_set_systematic_pal2(outpicref->data[1], outlink->format == PIX_FMT_PAL8 ? PIX_FMT_BGR8 : outlink->format);
  273. av_reduce(&outpicref->video->sample_aspect_ratio.num, &outpicref->video->sample_aspect_ratio.den,
  274. (int64_t)picref->video->sample_aspect_ratio.num * outlink->h * link->w,
  275. (int64_t)picref->video->sample_aspect_ratio.den * outlink->w * link->h,
  276. INT_MAX);
  277. scale->slice_y = 0;
  278. ff_start_frame(outlink, avfilter_ref_buffer(outpicref, ~0));
  279. }
  280. static int scale_slice(AVFilterLink *link, struct SwsContext *sws, int y, int h, int mul, int field)
  281. {
  282. ScaleContext *scale = link->dst->priv;
  283. AVFilterBufferRef *cur_pic = link->cur_buf;
  284. AVFilterBufferRef *out_buf = link->dst->outputs[0]->out_buf;
  285. const uint8_t *in[4];
  286. uint8_t *out[4];
  287. int in_stride[4],out_stride[4];
  288. int i;
  289. for(i=0; i<4; i++){
  290. int vsub= ((i+1)&2) ? scale->vsub : 0;
  291. in_stride[i] = cur_pic->linesize[i] * mul;
  292. out_stride[i] = out_buf->linesize[i] * mul;
  293. in[i] = cur_pic->data[i] + ((y>>vsub)+field) * cur_pic->linesize[i];
  294. out[i] = out_buf->data[i] + field * out_buf->linesize[i];
  295. }
  296. if(scale->input_is_pal)
  297. in[1] = cur_pic->data[1];
  298. if(scale->output_is_pal)
  299. out[1] = out_buf->data[1];
  300. return sws_scale(sws, in, in_stride, y/mul, h,
  301. out,out_stride);
  302. }
  303. static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  304. {
  305. ScaleContext *scale = link->dst->priv;
  306. int out_h;
  307. if (!scale->sws) {
  308. ff_draw_slice(link->dst->outputs[0], y, h, slice_dir);
  309. return;
  310. }
  311. if (scale->slice_y == 0 && slice_dir == -1)
  312. scale->slice_y = link->dst->outputs[0]->h;
  313. if(scale->interlaced>0 || (scale->interlaced<0 && link->cur_buf->video->interlaced)){
  314. av_assert0(y%(2<<scale->vsub) == 0);
  315. out_h = scale_slice(link, scale->isws[0], y, (h+1)/2, 2, 0);
  316. out_h+= scale_slice(link, scale->isws[1], y, h /2, 2, 1);
  317. }else{
  318. out_h = scale_slice(link, scale->sws, y, h, 1, 0);
  319. }
  320. if (slice_dir == -1)
  321. scale->slice_y -= out_h;
  322. ff_draw_slice(link->dst->outputs[0], scale->slice_y, out_h, slice_dir);
  323. if (slice_dir == 1)
  324. scale->slice_y += out_h;
  325. }
  326. AVFilter avfilter_vf_scale = {
  327. .name = "scale",
  328. .description = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
  329. .init = init,
  330. .uninit = uninit,
  331. .query_formats = query_formats,
  332. .priv_size = sizeof(ScaleContext),
  333. .inputs = (const AVFilterPad[]) {{ .name = "default",
  334. .type = AVMEDIA_TYPE_VIDEO,
  335. .start_frame = start_frame,
  336. .draw_slice = draw_slice,
  337. .min_perms = AV_PERM_READ, },
  338. { .name = NULL}},
  339. .outputs = (const AVFilterPad[]) {{ .name = "default",
  340. .type = AVMEDIA_TYPE_VIDEO,
  341. .config_props = config_props, },
  342. { .name = NULL}},
  343. };