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.

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