Make the cropdetect filter print the time for each frame, in addition

to the timestamp.

Originally committed as revision 25647 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Stefano Sabatini 14 years ago
parent da1b9b88a5
commit d370e3e931
  1. 4
      libavfilter/vf_cropdetect.c

@ -182,8 +182,8 @@ static void end_frame(AVFilterLink *inlink)
y += (shrink_by/2 + 1) & ~1; y += (shrink_by/2 + 1) & ~1;
av_log(ctx, AV_LOG_INFO, av_log(ctx, AV_LOG_INFO,
"x1:%d x2:%d y1:%d y2:%d w:%d h:%d x:%d y:%d pos:%"PRId64" pts:%f crop=%d:%d:%d:%d\n", "x1:%d x2:%d y1:%d y2:%d w:%d h:%d x:%d y:%d pos:%"PRId64" pts:%"PRId64" t:%f crop=%d:%d:%d:%d\n",
cd->x1, cd->x2, cd->y1, cd->y2, w, h, x, y, picref->pos, cd->x1, cd->x2, cd->y1, cd->y2, w, h, x, y, picref->pos, picref->pts,
picref->pts == AV_NOPTS_VALUE ? -1 : (double)picref->pts / AV_TIME_BASE, picref->pts == AV_NOPTS_VALUE ? -1 : (double)picref->pts / AV_TIME_BASE,
w, h, x, y); w, h, x, y);
} }

Loading…
Cancel
Save