Commit e9c3851d authored by Paul B Mahol's avatar Paul B Mahol

lavfi/bbox: use inlink->frame_count

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 477f4efd
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "internal.h" #include "internal.h"
typedef struct { typedef struct {
unsigned int frame; int unused;
} BBoxContext; } BBoxContext;
static int query_formats(AVFilterContext *ctx) static int query_formats(AVFilterContext *ctx)
...@@ -63,7 +63,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) ...@@ -63,7 +63,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
h = box.y2 - box.y1 + 1; h = box.y2 - box.y1 + 1;
av_log(ctx, AV_LOG_INFO, av_log(ctx, AV_LOG_INFO,
"n:%d pts:%s pts_time:%s", bbox->frame, "n:%"PRId64" pts:%s pts_time:%s", inlink->frame_count,
av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base)); av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base));
if (has_bbox) { if (has_bbox) {
...@@ -76,7 +76,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) ...@@ -76,7 +76,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
} }
av_log(ctx, AV_LOG_INFO, "\n"); av_log(ctx, AV_LOG_INFO, "\n");
bbox->frame++;
return ff_filter_frame(inlink->dst->outputs[0], frame); return ff_filter_frame(inlink->dst->outputs[0], frame);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment