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.

352 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. static int query_formats(AVFilterContext *ctx)
  85. {
  86. static const enum AVPixelFormat pix_fmts[] = {
  87. AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGB48LE,
  88. AV_PIX_FMT_BGR48BE, AV_PIX_FMT_BGR48LE,
  89. AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
  90. AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
  91. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  92. AV_PIX_FMT_RGB565BE, AV_PIX_FMT_RGB565LE,
  93. AV_PIX_FMT_RGB555BE, AV_PIX_FMT_RGB555LE,
  94. AV_PIX_FMT_BGR565BE, AV_PIX_FMT_BGR565LE,
  95. AV_PIX_FMT_BGR555BE, AV_PIX_FMT_BGR555LE,
  96. AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE,
  97. AV_PIX_FMT_YUV420P16LE, AV_PIX_FMT_YUV420P16BE,
  98. AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV422P16BE,
  99. AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV444P16BE,
  100. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  101. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  102. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  103. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  104. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
  105. AV_PIX_FMT_YUVA420P,
  106. AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8,
  107. AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
  108. AV_PIX_FMT_PAL8, AV_PIX_FMT_GRAY8,
  109. AV_PIX_FMT_NONE
  110. };
  111. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  112. return 0;
  113. }
  114. static av_cold void uninit(AVFilterContext *ctx)
  115. {
  116. CropContext *crop = ctx->priv;
  117. av_expr_free(crop->x_pexpr); crop->x_pexpr = NULL;
  118. av_expr_free(crop->y_pexpr); crop->y_pexpr = NULL;
  119. }
  120. static inline int normalize_double(int *n, double d)
  121. {
  122. int ret = 0;
  123. if (isnan(d)) {
  124. ret = AVERROR(EINVAL);
  125. } else if (d > INT_MAX || d < INT_MIN) {
  126. *n = d > INT_MAX ? INT_MAX : INT_MIN;
  127. ret = AVERROR(EINVAL);
  128. } else
  129. *n = round(d);
  130. return ret;
  131. }
  132. static int config_input(AVFilterLink *link)
  133. {
  134. AVFilterContext *ctx = link->dst;
  135. CropContext *crop = ctx->priv;
  136. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(link->format);
  137. int ret;
  138. const char *expr;
  139. double res;
  140. crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
  141. crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
  142. crop->var_values[VAR_A] = (float) link->w / link->h;
  143. crop->var_values[VAR_SAR] = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
  144. crop->var_values[VAR_DAR] = crop->var_values[VAR_A] * crop->var_values[VAR_SAR];
  145. crop->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
  146. crop->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
  147. crop->var_values[VAR_X] = NAN;
  148. crop->var_values[VAR_Y] = NAN;
  149. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
  150. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
  151. crop->var_values[VAR_N] = 0;
  152. crop->var_values[VAR_T] = NAN;
  153. av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
  154. crop->hsub = pix_desc->log2_chroma_w;
  155. crop->vsub = pix_desc->log2_chroma_h;
  156. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  157. var_names, crop->var_values,
  158. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  159. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  160. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->h_expr),
  161. var_names, crop->var_values,
  162. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  163. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
  164. /* evaluate again ow as it may depend on oh */
  165. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  166. var_names, crop->var_values,
  167. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  168. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  169. if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
  170. normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
  171. av_log(ctx, AV_LOG_ERROR,
  172. "Too big value or invalid expression for out_w/ow or out_h/oh. "
  173. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  174. crop->w_expr, crop->h_expr);
  175. return AVERROR(EINVAL);
  176. }
  177. crop->w &= ~((1 << crop->hsub) - 1);
  178. crop->h &= ~((1 << crop->vsub) - 1);
  179. if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
  180. NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
  181. (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
  182. NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  183. return AVERROR(EINVAL);
  184. if (crop->keep_aspect) {
  185. AVRational dar = av_mul_q(link->sample_aspect_ratio,
  186. (AVRational){ link->w, link->h });
  187. av_reduce(&crop->out_sar.num, &crop->out_sar.den,
  188. dar.num * crop->h, dar.den * crop->w, INT_MAX);
  189. } else
  190. crop->out_sar = link->sample_aspect_ratio;
  191. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d sar:%d/%d -> w:%d h:%d sar:%d/%d\n",
  192. link->w, link->h, link->sample_aspect_ratio.num, link->sample_aspect_ratio.den,
  193. crop->w, crop->h, crop->out_sar.num, crop->out_sar.den);
  194. if (crop->w <= 0 || crop->h <= 0 ||
  195. crop->w > link->w || crop->h > link->h) {
  196. av_log(ctx, AV_LOG_ERROR,
  197. "Invalid too big or non positive size for width '%d' or height '%d'\n",
  198. crop->w, crop->h);
  199. return AVERROR(EINVAL);
  200. }
  201. /* set default, required in the case the first computed value for x/y is NAN */
  202. crop->x = (link->w - crop->w) / 2;
  203. crop->y = (link->h - crop->h) / 2;
  204. crop->x &= ~((1 << crop->hsub) - 1);
  205. crop->y &= ~((1 << crop->vsub) - 1);
  206. return 0;
  207. fail_expr:
  208. av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
  209. return ret;
  210. }
  211. static int config_output(AVFilterLink *link)
  212. {
  213. CropContext *crop = link->src->priv;
  214. link->w = crop->w;
  215. link->h = crop->h;
  216. link->sample_aspect_ratio = crop->out_sar;
  217. return 0;
  218. }
  219. static int filter_frame(AVFilterLink *link, AVFrame *frame)
  220. {
  221. AVFilterContext *ctx = link->dst;
  222. CropContext *crop = ctx->priv;
  223. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
  224. int i;
  225. frame->width = crop->w;
  226. frame->height = crop->h;
  227. crop->var_values[VAR_T] = frame->pts == AV_NOPTS_VALUE ?
  228. NAN : frame->pts * av_q2d(link->time_base);
  229. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  230. crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
  231. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  232. normalize_double(&crop->x, crop->var_values[VAR_X]);
  233. normalize_double(&crop->y, crop->var_values[VAR_Y]);
  234. if (crop->x < 0) crop->x = 0;
  235. if (crop->y < 0) crop->y = 0;
  236. if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
  237. if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
  238. crop->x &= ~((1 << crop->hsub) - 1);
  239. crop->y &= ~((1 << crop->vsub) - 1);
  240. av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
  241. (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
  242. crop->y, crop->x+crop->w, crop->y+crop->h);
  243. frame->data[0] += crop->y * frame->linesize[0];
  244. frame->data[0] += crop->x * crop->max_step[0];
  245. if (!(desc->flags & PIX_FMT_PAL || desc->flags & PIX_FMT_PSEUDOPAL)) {
  246. for (i = 1; i < 3; i ++) {
  247. if (frame->data[i]) {
  248. frame->data[i] += (crop->y >> crop->vsub) * frame->linesize[i];
  249. frame->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
  250. }
  251. }
  252. }
  253. /* alpha plane */
  254. if (frame->data[3]) {
  255. frame->data[3] += crop->y * frame->linesize[3];
  256. frame->data[3] += crop->x * crop->max_step[3];
  257. }
  258. crop->var_values[VAR_N] += 1.0;
  259. return ff_filter_frame(link->dst->outputs[0], frame);
  260. }
  261. #define OFFSET(x) offsetof(CropContext, x)
  262. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  263. static const AVOption crop_options[] = {
  264. { "out_w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  265. { "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  266. { "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  267. { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  268. { "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 },
  269. { "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 },
  270. { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
  271. {NULL}
  272. };
  273. AVFILTER_DEFINE_CLASS(crop);
  274. static const AVFilterPad avfilter_vf_crop_inputs[] = {
  275. {
  276. .name = "default",
  277. .type = AVMEDIA_TYPE_VIDEO,
  278. .filter_frame = filter_frame,
  279. .get_video_buffer = ff_null_get_video_buffer,
  280. .config_props = config_input,
  281. },
  282. { NULL }
  283. };
  284. static const AVFilterPad avfilter_vf_crop_outputs[] = {
  285. {
  286. .name = "default",
  287. .type = AVMEDIA_TYPE_VIDEO,
  288. .config_props = config_output,
  289. },
  290. { NULL }
  291. };
  292. AVFilter avfilter_vf_crop = {
  293. .name = "crop",
  294. .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
  295. .priv_size = sizeof(CropContext),
  296. .priv_class = &crop_class,
  297. .query_formats = query_formats,
  298. .uninit = uninit,
  299. .inputs = avfilter_vf_crop_inputs,
  300. .outputs = avfilter_vf_crop_outputs,
  301. };