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.

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