Skip to content
Snippets Groups Projects
Commit 16d14d64 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

Add informative log message in the crop filter.

Originally committed as revision 25817 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 782f69e8
No related branches found
No related tags found
No related merge requests found
...@@ -200,6 +200,9 @@ static int config_input(AVFilterLink *link) ...@@ -200,6 +200,9 @@ static int config_input(AVFilterLink *link)
NULL, NULL, NULL, NULL, 0, ctx)) < 0) NULL, NULL, NULL, NULL, 0, ctx)) < 0)
return AVERROR(EINVAL); return AVERROR(EINVAL);
av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
link->w, link->h, crop->w, crop->h, crop->x, crop->y);
if (crop->w <= 0 || crop->h <= 0 || if (crop->w <= 0 || crop->h <= 0 ||
crop->w > link->w || crop->h > link->h) { crop->w > link->w || crop->h > link->h) {
av_log(ctx, AV_LOG_ERROR, av_log(ctx, AV_LOG_ERROR,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment