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.

365 lines
13KB

  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. * video crop filter
  23. */
  24. /* #define DEBUG */
  25. #include <stdio.h>
  26. #include "avfilter.h"
  27. #include "formats.h"
  28. #include "internal.h"
  29. #include "video.h"
  30. #include "libavutil/eval.h"
  31. #include "libavutil/avstring.h"
  32. #include "libavutil/internal.h"
  33. #include "libavutil/libm.h"
  34. #include "libavutil/imgutils.h"
  35. #include "libavutil/mathematics.h"
  36. #include "libavutil/opt.h"
  37. static const char *const var_names[] = {
  38. "in_w", "iw", ///< width of the input video
  39. "in_h", "ih", ///< height of the input video
  40. "out_w", "ow", ///< width of the cropped video
  41. "out_h", "oh", ///< height of the cropped video
  42. "a",
  43. "sar",
  44. "dar",
  45. "hsub",
  46. "vsub",
  47. "x",
  48. "y",
  49. "n", ///< number of frame
  50. "pos", ///< position in the file
  51. "t", ///< timestamp expressed in seconds
  52. NULL
  53. };
  54. enum var_name {
  55. VAR_IN_W, VAR_IW,
  56. VAR_IN_H, VAR_IH,
  57. VAR_OUT_W, VAR_OW,
  58. VAR_OUT_H, VAR_OH,
  59. VAR_A,
  60. VAR_SAR,
  61. VAR_DAR,
  62. VAR_HSUB,
  63. VAR_VSUB,
  64. VAR_X,
  65. VAR_Y,
  66. VAR_N,
  67. VAR_T,
  68. VAR_VARS_NB
  69. };
  70. typedef struct {
  71. const AVClass *class;
  72. int x; ///< x offset of the non-cropped area with respect to the input area
  73. int y; ///< y offset of the non-cropped area with respect to the input area
  74. int w; ///< width of the cropped area
  75. int h; ///< height of the cropped area
  76. AVRational out_sar; ///< output sample aspect ratio
  77. int keep_aspect; ///< keep display aspect ratio when cropping
  78. int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes
  79. int hsub, vsub; ///< chroma subsampling
  80. char *x_expr, *y_expr, *w_expr, *h_expr;
  81. AVExpr *x_pexpr, *y_pexpr; /* parsed expressions for x and y */
  82. double var_values[VAR_VARS_NB];
  83. } CropContext;
  84. #define OFFSET(x) offsetof(CropContext, x)
  85. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  86. static const AVOption crop_options[] = {
  87. { "x", "set the x crop area expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "(in_w-out_w)/2"}, CHAR_MIN, CHAR_MAX, FLAGS },
  88. { "y", "set the y crop area expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "(in_h-out_h)/2"}, CHAR_MIN, CHAR_MAX, FLAGS },
  89. { "out_w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  90. { "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  91. { "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  92. { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  93. { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
  94. {NULL}
  95. };
  96. AVFILTER_DEFINE_CLASS(crop);
  97. static av_cold int init(AVFilterContext *ctx, const char *args)
  98. {
  99. CropContext *crop = ctx->priv;
  100. static const char *shorthand[] = { "w", "h", "x", "y", "keep_aspect", NULL };
  101. crop->class = &crop_class;
  102. av_opt_set_defaults(crop);
  103. return av_opt_set_from_string(crop, args, shorthand, "=", ":");
  104. }
  105. static av_cold void uninit(AVFilterContext *ctx)
  106. {
  107. CropContext *crop = ctx->priv;
  108. av_expr_free(crop->x_pexpr); crop->x_pexpr = NULL;
  109. av_expr_free(crop->y_pexpr); crop->y_pexpr = NULL;
  110. av_opt_free(crop);
  111. }
  112. static int query_formats(AVFilterContext *ctx)
  113. {
  114. static const enum AVPixelFormat pix_fmts[] = {
  115. AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGB48LE,
  116. AV_PIX_FMT_BGR48BE, AV_PIX_FMT_BGR48LE,
  117. AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
  118. AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
  119. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  120. AV_PIX_FMT_RGB565BE, AV_PIX_FMT_RGB565LE,
  121. AV_PIX_FMT_RGB555BE, AV_PIX_FMT_RGB555LE,
  122. AV_PIX_FMT_BGR565BE, AV_PIX_FMT_BGR565LE,
  123. AV_PIX_FMT_BGR555BE, AV_PIX_FMT_BGR555LE,
  124. AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE,
  125. AV_PIX_FMT_YUV420P16LE, AV_PIX_FMT_YUV420P16BE,
  126. AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV422P16BE,
  127. AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV444P16BE,
  128. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  129. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  130. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  131. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  132. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
  133. AV_PIX_FMT_YUVA420P,
  134. AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8,
  135. AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
  136. AV_PIX_FMT_PAL8, AV_PIX_FMT_GRAY8,
  137. AV_PIX_FMT_NONE
  138. };
  139. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  140. return 0;
  141. }
  142. static inline int normalize_double(int *n, double d)
  143. {
  144. int ret = 0;
  145. if (isnan(d)) {
  146. ret = AVERROR(EINVAL);
  147. } else if (d > INT_MAX || d < INT_MIN) {
  148. *n = d > INT_MAX ? INT_MAX : INT_MIN;
  149. ret = AVERROR(EINVAL);
  150. } else
  151. *n = round(d);
  152. return ret;
  153. }
  154. static int config_input(AVFilterLink *link)
  155. {
  156. AVFilterContext *ctx = link->dst;
  157. CropContext *crop = ctx->priv;
  158. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(link->format);
  159. int ret;
  160. const char *expr;
  161. double res;
  162. crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
  163. crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
  164. crop->var_values[VAR_A] = (float) link->w / link->h;
  165. crop->var_values[VAR_SAR] = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
  166. crop->var_values[VAR_DAR] = crop->var_values[VAR_A] * crop->var_values[VAR_SAR];
  167. crop->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
  168. crop->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
  169. crop->var_values[VAR_X] = NAN;
  170. crop->var_values[VAR_Y] = NAN;
  171. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
  172. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
  173. crop->var_values[VAR_N] = 0;
  174. crop->var_values[VAR_T] = NAN;
  175. av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
  176. crop->hsub = pix_desc->log2_chroma_w;
  177. crop->vsub = pix_desc->log2_chroma_h;
  178. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  179. var_names, crop->var_values,
  180. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  181. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  182. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->h_expr),
  183. var_names, crop->var_values,
  184. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  185. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
  186. /* evaluate again ow as it may depend on oh */
  187. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  188. var_names, crop->var_values,
  189. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  190. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  191. if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
  192. normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
  193. av_log(ctx, AV_LOG_ERROR,
  194. "Too big value or invalid expression for out_w/ow or out_h/oh. "
  195. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  196. crop->w_expr, crop->h_expr);
  197. return AVERROR(EINVAL);
  198. }
  199. crop->w &= ~((1 << crop->hsub) - 1);
  200. crop->h &= ~((1 << crop->vsub) - 1);
  201. if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
  202. NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
  203. (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
  204. NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  205. return AVERROR(EINVAL);
  206. if (crop->keep_aspect) {
  207. AVRational dar = av_mul_q(link->sample_aspect_ratio,
  208. (AVRational){ link->w, link->h });
  209. av_reduce(&crop->out_sar.num, &crop->out_sar.den,
  210. dar.num * crop->h, dar.den * crop->w, INT_MAX);
  211. } else
  212. crop->out_sar = link->sample_aspect_ratio;
  213. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d sar:%d/%d -> w:%d h:%d sar:%d/%d\n",
  214. link->w, link->h, link->sample_aspect_ratio.num, link->sample_aspect_ratio.den,
  215. crop->w, crop->h, crop->out_sar.num, crop->out_sar.den);
  216. if (crop->w <= 0 || crop->h <= 0 ||
  217. crop->w > link->w || crop->h > link->h) {
  218. av_log(ctx, AV_LOG_ERROR,
  219. "Invalid too big or non positive size for width '%d' or height '%d'\n",
  220. crop->w, crop->h);
  221. return AVERROR(EINVAL);
  222. }
  223. /* set default, required in the case the first computed value for x/y is NAN */
  224. crop->x = (link->w - crop->w) / 2;
  225. crop->y = (link->h - crop->h) / 2;
  226. crop->x &= ~((1 << crop->hsub) - 1);
  227. crop->y &= ~((1 << crop->vsub) - 1);
  228. return 0;
  229. fail_expr:
  230. av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
  231. return ret;
  232. }
  233. static int config_output(AVFilterLink *link)
  234. {
  235. CropContext *crop = link->src->priv;
  236. link->w = crop->w;
  237. link->h = crop->h;
  238. link->sample_aspect_ratio = crop->out_sar;
  239. return 0;
  240. }
  241. static int filter_frame(AVFilterLink *link, AVFrame *frame)
  242. {
  243. AVFilterContext *ctx = link->dst;
  244. CropContext *crop = ctx->priv;
  245. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
  246. int i;
  247. frame->width = crop->w;
  248. frame->height = crop->h;
  249. crop->var_values[VAR_T] = frame->pts == AV_NOPTS_VALUE ?
  250. NAN : frame->pts * av_q2d(link->time_base);
  251. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  252. crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
  253. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  254. normalize_double(&crop->x, crop->var_values[VAR_X]);
  255. normalize_double(&crop->y, crop->var_values[VAR_Y]);
  256. if (crop->x < 0) crop->x = 0;
  257. if (crop->y < 0) crop->y = 0;
  258. if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
  259. if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
  260. crop->x &= ~((1 << crop->hsub) - 1);
  261. crop->y &= ~((1 << crop->vsub) - 1);
  262. av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
  263. (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
  264. crop->y, crop->x+crop->w, crop->y+crop->h);
  265. frame->data[0] += crop->y * frame->linesize[0];
  266. frame->data[0] += crop->x * crop->max_step[0];
  267. if (!(desc->flags & PIX_FMT_PAL || desc->flags & PIX_FMT_PSEUDOPAL)) {
  268. for (i = 1; i < 3; i ++) {
  269. if (frame->data[i]) {
  270. frame->data[i] += (crop->y >> crop->vsub) * frame->linesize[i];
  271. frame->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
  272. }
  273. }
  274. }
  275. /* alpha plane */
  276. if (frame->data[3]) {
  277. frame->data[3] += crop->y * frame->linesize[3];
  278. frame->data[3] += crop->x * crop->max_step[3];
  279. }
  280. crop->var_values[VAR_N] += 1.0;
  281. return ff_filter_frame(link->dst->outputs[0], frame);
  282. }
  283. static const AVFilterPad avfilter_vf_crop_inputs[] = {
  284. {
  285. .name = "default",
  286. .type = AVMEDIA_TYPE_VIDEO,
  287. .filter_frame = filter_frame,
  288. .get_video_buffer = ff_null_get_video_buffer,
  289. .config_props = config_input,
  290. },
  291. { NULL }
  292. };
  293. static const AVFilterPad avfilter_vf_crop_outputs[] = {
  294. {
  295. .name = "default",
  296. .type = AVMEDIA_TYPE_VIDEO,
  297. .config_props = config_output,
  298. },
  299. { NULL }
  300. };
  301. AVFilter avfilter_vf_crop = {
  302. .name = "crop",
  303. .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
  304. .priv_size = sizeof(CropContext),
  305. .query_formats = query_formats,
  306. .init = init,
  307. .uninit = uninit,
  308. .inputs = avfilter_vf_crop_inputs,
  309. .outputs = avfilter_vf_crop_outputs,
  310. .priv_class = &crop_class,
  311. };