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_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. #define OFFSET(x) offsetof(CropContext, x)
  86. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  87. static const AVOption crop_options[] = {
  88. { "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 },
  89. { "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 },
  90. { "out_w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  91. { "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
  92. { "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  93. { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
  94. { "keep_aspect", "force packed RGB in input and output", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
  95. {NULL}
  96. };
  97. AVFILTER_DEFINE_CLASS(crop);
  98. static av_cold int init(AVFilterContext *ctx, const char *args)
  99. {
  100. CropContext *crop = ctx->priv;
  101. static const char *shorthand[] = { "w", "h", "x", "y", "keep_aspect", NULL };
  102. crop->class = &crop_class;
  103. av_opt_set_defaults(crop);
  104. return av_opt_set_from_string(crop, args, shorthand, "=", ":");
  105. }
  106. static av_cold void uninit(AVFilterContext *ctx)
  107. {
  108. CropContext *crop = ctx->priv;
  109. av_opt_free(crop);
  110. }
  111. static int query_formats(AVFilterContext *ctx)
  112. {
  113. static const enum AVPixelFormat pix_fmts[] = {
  114. AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGB48LE,
  115. AV_PIX_FMT_BGR48BE, AV_PIX_FMT_BGR48LE,
  116. AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
  117. AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
  118. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  119. AV_PIX_FMT_RGB565BE, AV_PIX_FMT_RGB565LE,
  120. AV_PIX_FMT_RGB555BE, AV_PIX_FMT_RGB555LE,
  121. AV_PIX_FMT_BGR565BE, AV_PIX_FMT_BGR565LE,
  122. AV_PIX_FMT_BGR555BE, AV_PIX_FMT_BGR555LE,
  123. AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE,
  124. AV_PIX_FMT_YUV420P16LE, AV_PIX_FMT_YUV420P16BE,
  125. AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV422P16BE,
  126. AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV444P16BE,
  127. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  128. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  129. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  130. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  131. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
  132. AV_PIX_FMT_YUVA420P,
  133. AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8,
  134. AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
  135. AV_PIX_FMT_PAL8, AV_PIX_FMT_GRAY8,
  136. AV_PIX_FMT_NONE
  137. };
  138. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  139. return 0;
  140. }
  141. static inline int normalize_double(int *n, double d)
  142. {
  143. int ret = 0;
  144. if (isnan(d)) {
  145. ret = AVERROR(EINVAL);
  146. } else if (d > INT_MAX || d < INT_MIN) {
  147. *n = d > INT_MAX ? INT_MAX : INT_MIN;
  148. ret = AVERROR(EINVAL);
  149. } else
  150. *n = round(d);
  151. return ret;
  152. }
  153. static int config_input(AVFilterLink *link)
  154. {
  155. AVFilterContext *ctx = link->dst;
  156. CropContext *crop = ctx->priv;
  157. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(link->format);
  158. int ret;
  159. const char *expr;
  160. double res;
  161. crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
  162. crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
  163. crop->var_values[VAR_A] = (float) link->w / link->h;
  164. crop->var_values[VAR_SAR] = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
  165. crop->var_values[VAR_DAR] = crop->var_values[VAR_A] * crop->var_values[VAR_SAR];
  166. crop->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
  167. crop->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
  168. crop->var_values[VAR_X] = NAN;
  169. crop->var_values[VAR_Y] = NAN;
  170. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
  171. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
  172. crop->var_values[VAR_N] = 0;
  173. crop->var_values[VAR_T] = NAN;
  174. crop->var_values[VAR_POS] = 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, AVFilterBufferRef *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->video->w = crop->w;
  248. frame->video->h = 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_POS] = frame->pos == -1 ? NAN : frame->pos;
  252. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  253. crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
  254. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  255. normalize_double(&crop->x, crop->var_values[VAR_X]);
  256. normalize_double(&crop->y, crop->var_values[VAR_Y]);
  257. if (crop->x < 0) crop->x = 0;
  258. if (crop->y < 0) crop->y = 0;
  259. if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
  260. if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
  261. crop->x &= ~((1 << crop->hsub) - 1);
  262. crop->y &= ~((1 << crop->vsub) - 1);
  263. av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
  264. (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
  265. crop->y, crop->x+crop->w, crop->y+crop->h);
  266. frame->data[0] += crop->y * frame->linesize[0];
  267. frame->data[0] += crop->x * crop->max_step[0];
  268. if (!(desc->flags & PIX_FMT_PAL || desc->flags & PIX_FMT_PSEUDOPAL)) {
  269. for (i = 1; i < 3; i ++) {
  270. if (frame->data[i]) {
  271. frame->data[i] += (crop->y >> crop->vsub) * frame->linesize[i];
  272. frame->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
  273. }
  274. }
  275. }
  276. /* alpha plane */
  277. if (frame->data[3]) {
  278. frame->data[3] += crop->y * frame->linesize[3];
  279. frame->data[3] += crop->x * crop->max_step[3];
  280. }
  281. crop->var_values[VAR_N] += 1.0;
  282. return ff_filter_frame(link->dst->outputs[0], frame);
  283. }
  284. static const AVFilterPad avfilter_vf_crop_inputs[] = {
  285. {
  286. .name = "default",
  287. .type = AVMEDIA_TYPE_VIDEO,
  288. .filter_frame = filter_frame,
  289. .get_video_buffer = ff_null_get_video_buffer,
  290. .config_props = config_input,
  291. },
  292. { NULL }
  293. };
  294. static const AVFilterPad avfilter_vf_crop_outputs[] = {
  295. {
  296. .name = "default",
  297. .type = AVMEDIA_TYPE_VIDEO,
  298. .config_props = config_output,
  299. },
  300. { NULL }
  301. };
  302. AVFilter avfilter_vf_crop = {
  303. .name = "crop",
  304. .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
  305. .priv_size = sizeof(CropContext),
  306. .query_formats = query_formats,
  307. .init = init,
  308. .uninit = uninit,
  309. .inputs = avfilter_vf_crop_inputs,
  310. .outputs = avfilter_vf_crop_outputs,
  311. .priv_class = &crop_class,
  312. };