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.

345 lines
12KB

  1. /*
  2. * Copyright (c) 2007 Bobby Bingham
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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 "avfilter.h"
  26. #include "video.h"
  27. #include "libavutil/eval.h"
  28. #include "libavutil/avstring.h"
  29. #include "libavutil/libm.h"
  30. #include "libavutil/imgutils.h"
  31. #include "libavutil/mathematics.h"
  32. static const char *const var_names[] = {
  33. "E",
  34. "PHI",
  35. "PI",
  36. "in_w", "iw", ///< width of the input video
  37. "in_h", "ih", ///< height of the input video
  38. "out_w", "ow", ///< width of the cropped video
  39. "out_h", "oh", ///< height of the cropped video
  40. "x",
  41. "y",
  42. "n", ///< number of frame
  43. "pos", ///< position in the file
  44. "t", ///< timestamp expressed in seconds
  45. NULL
  46. };
  47. enum var_name {
  48. VAR_E,
  49. VAR_PHI,
  50. VAR_PI,
  51. VAR_IN_W, VAR_IW,
  52. VAR_IN_H, VAR_IH,
  53. VAR_OUT_W, VAR_OW,
  54. VAR_OUT_H, VAR_OH,
  55. VAR_X,
  56. VAR_Y,
  57. VAR_N,
  58. VAR_POS,
  59. VAR_T,
  60. VAR_VARS_NB
  61. };
  62. typedef struct {
  63. int x; ///< x offset of the non-cropped area with respect to the input area
  64. int y; ///< y offset of the non-cropped area with respect to the input area
  65. int w; ///< width of the cropped area
  66. int h; ///< height of the cropped area
  67. int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes
  68. int hsub, vsub; ///< chroma subsampling
  69. char x_expr[256], y_expr[256], ow_expr[256], oh_expr[256];
  70. AVExpr *x_pexpr, *y_pexpr; /* parsed expressions for x and y */
  71. double var_values[VAR_VARS_NB];
  72. } CropContext;
  73. static int query_formats(AVFilterContext *ctx)
  74. {
  75. static const enum PixelFormat pix_fmts[] = {
  76. PIX_FMT_RGB48BE, PIX_FMT_RGB48LE,
  77. PIX_FMT_BGR48BE, PIX_FMT_BGR48LE,
  78. PIX_FMT_ARGB, PIX_FMT_RGBA,
  79. PIX_FMT_ABGR, PIX_FMT_BGRA,
  80. PIX_FMT_RGB24, PIX_FMT_BGR24,
  81. PIX_FMT_RGB565BE, PIX_FMT_RGB565LE,
  82. PIX_FMT_RGB555BE, PIX_FMT_RGB555LE,
  83. PIX_FMT_BGR565BE, PIX_FMT_BGR565LE,
  84. PIX_FMT_BGR555BE, PIX_FMT_BGR555LE,
  85. PIX_FMT_GRAY16BE, PIX_FMT_GRAY16LE,
  86. PIX_FMT_YUV420P16LE, PIX_FMT_YUV420P16BE,
  87. PIX_FMT_YUV422P16LE, PIX_FMT_YUV422P16BE,
  88. PIX_FMT_YUV444P16LE, PIX_FMT_YUV444P16BE,
  89. PIX_FMT_YUV444P, PIX_FMT_YUV422P,
  90. PIX_FMT_YUV420P, PIX_FMT_YUV411P,
  91. PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  92. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P,
  93. PIX_FMT_YUVJ420P, PIX_FMT_YUVJ440P,
  94. PIX_FMT_YUVA420P,
  95. PIX_FMT_RGB8, PIX_FMT_BGR8,
  96. PIX_FMT_RGB4_BYTE, PIX_FMT_BGR4_BYTE,
  97. PIX_FMT_PAL8, PIX_FMT_GRAY8,
  98. PIX_FMT_NONE
  99. };
  100. avfilter_set_common_formats(ctx, avfilter_make_format_list(pix_fmts));
  101. return 0;
  102. }
  103. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  104. {
  105. CropContext *crop = ctx->priv;
  106. av_strlcpy(crop->ow_expr, "iw", sizeof(crop->ow_expr));
  107. av_strlcpy(crop->oh_expr, "ih", sizeof(crop->oh_expr));
  108. av_strlcpy(crop->x_expr, "(in_w-out_w)/2", sizeof(crop->x_expr));
  109. av_strlcpy(crop->y_expr, "(in_h-out_h)/2", sizeof(crop->y_expr));
  110. if (args)
  111. sscanf(args, "%255[^:]:%255[^:]:%255[^:]:%255[^:]", crop->ow_expr, crop->oh_expr, crop->x_expr, crop->y_expr);
  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_descriptors[link->format];
  137. int ret;
  138. const char *expr;
  139. double res;
  140. crop->var_values[VAR_E] = M_E;
  141. crop->var_values[VAR_PHI] = M_PHI;
  142. crop->var_values[VAR_PI] = M_PI;
  143. crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
  144. crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
  145. crop->var_values[VAR_X] = NAN;
  146. crop->var_values[VAR_Y] = NAN;
  147. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
  148. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
  149. crop->var_values[VAR_N] = 0;
  150. crop->var_values[VAR_T] = NAN;
  151. crop->var_values[VAR_POS] = NAN;
  152. av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
  153. crop->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
  154. crop->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
  155. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
  156. var_names, crop->var_values,
  157. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  158. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  159. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->oh_expr),
  160. var_names, crop->var_values,
  161. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  162. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
  163. /* evaluate again ow as it may depend on oh */
  164. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->ow_expr),
  165. var_names, crop->var_values,
  166. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  167. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  168. if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
  169. normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
  170. av_log(ctx, AV_LOG_ERROR,
  171. "Too big value or invalid expression for out_w/ow or out_h/oh. "
  172. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  173. crop->ow_expr, crop->oh_expr);
  174. return AVERROR(EINVAL);
  175. }
  176. crop->w &= ~((1 << crop->hsub) - 1);
  177. crop->h &= ~((1 << crop->vsub) - 1);
  178. if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
  179. NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
  180. (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
  181. NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  182. return AVERROR(EINVAL);
  183. av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
  184. link->w, link->h, crop->w, crop->h);
  185. if (crop->w <= 0 || crop->h <= 0 ||
  186. crop->w > link->w || crop->h > link->h) {
  187. av_log(ctx, AV_LOG_ERROR,
  188. "Invalid too big or non positive size for width '%d' or height '%d'\n",
  189. crop->w, crop->h);
  190. return AVERROR(EINVAL);
  191. }
  192. /* set default, required in the case the first computed value for x/y is NAN */
  193. crop->x = (link->w - crop->w) / 2;
  194. crop->y = (link->h - crop->h) / 2;
  195. crop->x &= ~((1 << crop->hsub) - 1);
  196. crop->y &= ~((1 << crop->vsub) - 1);
  197. return 0;
  198. fail_expr:
  199. av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
  200. return ret;
  201. }
  202. static int config_output(AVFilterLink *link)
  203. {
  204. CropContext *crop = link->src->priv;
  205. link->w = crop->w;
  206. link->h = crop->h;
  207. return 0;
  208. }
  209. static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
  210. {
  211. AVFilterContext *ctx = link->dst;
  212. CropContext *crop = ctx->priv;
  213. AVFilterBufferRef *ref2;
  214. int i;
  215. ref2 = avfilter_ref_buffer(picref, ~0);
  216. ref2->video->w = crop->w;
  217. ref2->video->h = crop->h;
  218. crop->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
  219. NAN : picref->pts * av_q2d(link->time_base);
  220. crop->var_values[VAR_POS] = picref->pos == -1 ? NAN : picref->pos;
  221. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  222. crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
  223. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  224. normalize_double(&crop->x, crop->var_values[VAR_X]);
  225. normalize_double(&crop->y, crop->var_values[VAR_Y]);
  226. if (crop->x < 0) crop->x = 0;
  227. if (crop->y < 0) crop->y = 0;
  228. if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
  229. if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
  230. crop->x &= ~((1 << crop->hsub) - 1);
  231. crop->y &= ~((1 << crop->vsub) - 1);
  232. av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
  233. (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
  234. crop->y, crop->x+crop->w, crop->y+crop->h);
  235. ref2->data[0] += crop->y * ref2->linesize[0];
  236. ref2->data[0] += crop->x * crop->max_step[0];
  237. if (!(av_pix_fmt_descriptors[link->format].flags & PIX_FMT_PAL ||
  238. av_pix_fmt_descriptors[link->format].flags & PIX_FMT_PSEUDOPAL)) {
  239. for (i = 1; i < 3; i ++) {
  240. if (ref2->data[i]) {
  241. ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i];
  242. ref2->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
  243. }
  244. }
  245. }
  246. /* alpha plane */
  247. if (ref2->data[3]) {
  248. ref2->data[3] += crop->y * ref2->linesize[3];
  249. ref2->data[3] += crop->x * crop->max_step[3];
  250. }
  251. avfilter_start_frame(link->dst->outputs[0], ref2);
  252. }
  253. static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  254. {
  255. AVFilterContext *ctx = link->dst;
  256. CropContext *crop = ctx->priv;
  257. if (y >= crop->y + crop->h || y + h <= crop->y)
  258. return;
  259. if (y < crop->y) {
  260. h -= crop->y - y;
  261. y = crop->y;
  262. }
  263. if (y + h > crop->y + crop->h)
  264. h = crop->y + crop->h - y;
  265. avfilter_draw_slice(ctx->outputs[0], y - crop->y, h, slice_dir);
  266. }
  267. static void end_frame(AVFilterLink *link)
  268. {
  269. CropContext *crop = link->dst->priv;
  270. crop->var_values[VAR_N] += 1.0;
  271. avfilter_unref_buffer(link->cur_buf);
  272. avfilter_end_frame(link->dst->outputs[0]);
  273. }
  274. AVFilter avfilter_vf_crop = {
  275. .name = "crop",
  276. .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
  277. .priv_size = sizeof(CropContext),
  278. .query_formats = query_formats,
  279. .init = init,
  280. .uninit = uninit,
  281. .inputs = (AVFilterPad[]) {{ .name = "default",
  282. .type = AVMEDIA_TYPE_VIDEO,
  283. .start_frame = start_frame,
  284. .draw_slice = draw_slice,
  285. .end_frame = end_frame,
  286. .get_video_buffer = ff_null_get_video_buffer,
  287. .config_props = config_input, },
  288. { .name = NULL}},
  289. .outputs = (AVFilterPad[]) {{ .name = "default",
  290. .type = AVMEDIA_TYPE_VIDEO,
  291. .config_props = config_output, },
  292. { .name = NULL}},
  293. };