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.

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