vf_crop.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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_expr_free(crop->x_pexpr); crop->x_pexpr = NULL;
  110. av_expr_free(crop->y_pexpr); crop->y_pexpr = NULL;
  111. av_opt_free(crop);
  112. }
  113. static int query_formats(AVFilterContext *ctx)
  114. {
  115. static const enum AVPixelFormat pix_fmts[] = {
  116. AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGB48LE,
  117. AV_PIX_FMT_BGR48BE, AV_PIX_FMT_BGR48LE,
  118. AV_PIX_FMT_ARGB, AV_PIX_FMT_RGBA,
  119. AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA,
  120. AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
  121. AV_PIX_FMT_RGB565BE, AV_PIX_FMT_RGB565LE,
  122. AV_PIX_FMT_RGB555BE, AV_PIX_FMT_RGB555LE,
  123. AV_PIX_FMT_BGR565BE, AV_PIX_FMT_BGR565LE,
  124. AV_PIX_FMT_BGR555BE, AV_PIX_FMT_BGR555LE,
  125. AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_GRAY16LE,
  126. AV_PIX_FMT_YUV420P16LE, AV_PIX_FMT_YUV420P16BE,
  127. AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV422P16BE,
  128. AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV444P16BE,
  129. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  130. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  131. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  132. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P,
  133. AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ440P,
  134. AV_PIX_FMT_YUVA420P,
  135. AV_PIX_FMT_RGB8, AV_PIX_FMT_BGR8,
  136. AV_PIX_FMT_RGB4_BYTE, AV_PIX_FMT_BGR4_BYTE,
  137. AV_PIX_FMT_PAL8, AV_PIX_FMT_GRAY8,
  138. AV_PIX_FMT_NONE
  139. };
  140. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  141. return 0;
  142. }
  143. static inline int normalize_double(int *n, double d)
  144. {
  145. int ret = 0;
  146. if (isnan(d)) {
  147. ret = AVERROR(EINVAL);
  148. } else if (d > INT_MAX || d < INT_MIN) {
  149. *n = d > INT_MAX ? INT_MAX : INT_MIN;
  150. ret = AVERROR(EINVAL);
  151. } else
  152. *n = round(d);
  153. return ret;
  154. }
  155. static int config_input(AVFilterLink *link)
  156. {
  157. AVFilterContext *ctx = link->dst;
  158. CropContext *crop = ctx->priv;
  159. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(link->format);
  160. int ret;
  161. const char *expr;
  162. double res;
  163. crop->var_values[VAR_IN_W] = crop->var_values[VAR_IW] = ctx->inputs[0]->w;
  164. crop->var_values[VAR_IN_H] = crop->var_values[VAR_IH] = ctx->inputs[0]->h;
  165. crop->var_values[VAR_A] = (float) link->w / link->h;
  166. crop->var_values[VAR_SAR] = link->sample_aspect_ratio.num ? av_q2d(link->sample_aspect_ratio) : 1;
  167. crop->var_values[VAR_DAR] = crop->var_values[VAR_A] * crop->var_values[VAR_SAR];
  168. crop->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
  169. crop->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
  170. crop->var_values[VAR_X] = NAN;
  171. crop->var_values[VAR_Y] = NAN;
  172. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = NAN;
  173. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = NAN;
  174. crop->var_values[VAR_N] = 0;
  175. crop->var_values[VAR_T] = NAN;
  176. crop->var_values[VAR_POS] = NAN;
  177. av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
  178. crop->hsub = pix_desc->log2_chroma_w;
  179. crop->vsub = pix_desc->log2_chroma_h;
  180. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  181. var_names, crop->var_values,
  182. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  183. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  184. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->h_expr),
  185. var_names, crop->var_values,
  186. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  187. crop->var_values[VAR_OUT_H] = crop->var_values[VAR_OH] = res;
  188. /* evaluate again ow as it may depend on oh */
  189. if ((ret = av_expr_parse_and_eval(&res, (expr = crop->w_expr),
  190. var_names, crop->var_values,
  191. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0) goto fail_expr;
  192. crop->var_values[VAR_OUT_W] = crop->var_values[VAR_OW] = res;
  193. if (normalize_double(&crop->w, crop->var_values[VAR_OUT_W]) < 0 ||
  194. normalize_double(&crop->h, crop->var_values[VAR_OUT_H]) < 0) {
  195. av_log(ctx, AV_LOG_ERROR,
  196. "Too big value or invalid expression for out_w/ow or out_h/oh. "
  197. "Maybe the expression for out_w:'%s' or for out_h:'%s' is self-referencing.\n",
  198. crop->w_expr, crop->h_expr);
  199. return AVERROR(EINVAL);
  200. }
  201. crop->w &= ~((1 << crop->hsub) - 1);
  202. crop->h &= ~((1 << crop->vsub) - 1);
  203. if ((ret = av_expr_parse(&crop->x_pexpr, crop->x_expr, var_names,
  204. NULL, NULL, NULL, NULL, 0, ctx)) < 0 ||
  205. (ret = av_expr_parse(&crop->y_pexpr, crop->y_expr, var_names,
  206. NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  207. return AVERROR(EINVAL);
  208. if (crop->keep_aspect) {
  209. AVRational dar = av_mul_q(link->sample_aspect_ratio,
  210. (AVRational){ link->w, link->h });
  211. av_reduce(&crop->out_sar.num, &crop->out_sar.den,
  212. dar.num * crop->h, dar.den * crop->w, INT_MAX);
  213. } else
  214. crop->out_sar = link->sample_aspect_ratio;
  215. av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d sar:%d/%d -> w:%d h:%d sar:%d/%d\n",
  216. link->w, link->h, link->sample_aspect_ratio.num, link->sample_aspect_ratio.den,
  217. crop->w, crop->h, crop->out_sar.num, crop->out_sar.den);
  218. if (crop->w <= 0 || crop->h <= 0 ||
  219. crop->w > link->w || crop->h > link->h) {
  220. av_log(ctx, AV_LOG_ERROR,
  221. "Invalid too big or non positive size for width '%d' or height '%d'\n",
  222. crop->w, crop->h);
  223. return AVERROR(EINVAL);
  224. }
  225. /* set default, required in the case the first computed value for x/y is NAN */
  226. crop->x = (link->w - crop->w) / 2;
  227. crop->y = (link->h - crop->h) / 2;
  228. crop->x &= ~((1 << crop->hsub) - 1);
  229. crop->y &= ~((1 << crop->vsub) - 1);
  230. return 0;
  231. fail_expr:
  232. av_log(NULL, AV_LOG_ERROR, "Error when evaluating the expression '%s'\n", expr);
  233. return ret;
  234. }
  235. static int config_output(AVFilterLink *link)
  236. {
  237. CropContext *crop = link->src->priv;
  238. link->w = crop->w;
  239. link->h = crop->h;
  240. link->sample_aspect_ratio = crop->out_sar;
  241. return 0;
  242. }
  243. static int filter_frame(AVFilterLink *link, AVFilterBufferRef *frame)
  244. {
  245. AVFilterContext *ctx = link->dst;
  246. CropContext *crop = ctx->priv;
  247. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
  248. int i;
  249. frame->video->w = crop->w;
  250. frame->video->h = crop->h;
  251. crop->var_values[VAR_T] = frame->pts == AV_NOPTS_VALUE ?
  252. NAN : frame->pts * av_q2d(link->time_base);
  253. crop->var_values[VAR_POS] = frame->pos == -1 ? NAN : frame->pos;
  254. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  255. crop->var_values[VAR_Y] = av_expr_eval(crop->y_pexpr, crop->var_values, NULL);
  256. crop->var_values[VAR_X] = av_expr_eval(crop->x_pexpr, crop->var_values, NULL);
  257. normalize_double(&crop->x, crop->var_values[VAR_X]);
  258. normalize_double(&crop->y, crop->var_values[VAR_Y]);
  259. if (crop->x < 0) crop->x = 0;
  260. if (crop->y < 0) crop->y = 0;
  261. if ((unsigned)crop->x + (unsigned)crop->w > link->w) crop->x = link->w - crop->w;
  262. if ((unsigned)crop->y + (unsigned)crop->h > link->h) crop->y = link->h - crop->h;
  263. crop->x &= ~((1 << crop->hsub) - 1);
  264. crop->y &= ~((1 << crop->vsub) - 1);
  265. av_dlog(ctx, "n:%d t:%f x:%d y:%d x+w:%d y+h:%d\n",
  266. (int)crop->var_values[VAR_N], crop->var_values[VAR_T], crop->x,
  267. crop->y, crop->x+crop->w, crop->y+crop->h);
  268. frame->data[0] += crop->y * frame->linesize[0];
  269. frame->data[0] += crop->x * crop->max_step[0];
  270. if (!(desc->flags & PIX_FMT_PAL || desc->flags & PIX_FMT_PSEUDOPAL)) {
  271. for (i = 1; i < 3; i ++) {
  272. if (frame->data[i]) {
  273. frame->data[i] += (crop->y >> crop->vsub) * frame->linesize[i];
  274. frame->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
  275. }
  276. }
  277. }
  278. /* alpha plane */
  279. if (frame->data[3]) {
  280. frame->data[3] += crop->y * frame->linesize[3];
  281. frame->data[3] += crop->x * crop->max_step[3];
  282. }
  283. crop->var_values[VAR_N] += 1.0;
  284. return ff_filter_frame(link->dst->outputs[0], frame);
  285. }
  286. static const AVFilterPad avfilter_vf_crop_inputs[] = {
  287. {
  288. .name = "default",
  289. .type = AVMEDIA_TYPE_VIDEO,
  290. .filter_frame = filter_frame,
  291. .get_video_buffer = ff_null_get_video_buffer,
  292. .config_props = config_input,
  293. },
  294. { NULL }
  295. };
  296. static const AVFilterPad avfilter_vf_crop_outputs[] = {
  297. {
  298. .name = "default",
  299. .type = AVMEDIA_TYPE_VIDEO,
  300. .config_props = config_output,
  301. },
  302. { NULL }
  303. };
  304. AVFilter avfilter_vf_crop = {
  305. .name = "crop",
  306. .description = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
  307. .priv_size = sizeof(CropContext),
  308. .query_formats = query_formats,
  309. .init = init,
  310. .uninit = uninit,
  311. .inputs = avfilter_vf_crop_inputs,
  312. .outputs = avfilter_vf_crop_outputs,
  313. .priv_class = &crop_class,
  314. };