diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-26 09:12:36 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-26 14:00:09 +0000 |
commit | e9c3851d6006f5548d2bb6bfa5711195339f32df (patch) | |
tree | 95a8612376bf8e328fd7a9e130c0d4a3d5c018f6 | |
parent | 477f4efd0f1ce4527940b5d9ac90aa31f4298282 (diff) | |
download | ffmpeg-e9c3851d6006f5548d2bb6bfa5711195339f32df.tar.gz |
lavfi/bbox: use inlink->frame_count
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_bbox.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavfilter/vf_bbox.c b/libavfilter/vf_bbox.c index 6b4cdd01b6..db73f018bf 100644 --- a/libavfilter/vf_bbox.c +++ b/libavfilter/vf_bbox.c @@ -30,7 +30,7 @@ #include "internal.h" typedef struct { - unsigned int frame; + int unused; } BBoxContext; static int query_formats(AVFilterContext *ctx) @@ -63,7 +63,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) h = box.y2 - box.y1 + 1; 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)); if (has_bbox) { @@ -76,7 +76,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) } av_log(ctx, AV_LOG_INFO, "\n"); - bbox->frame++; return ff_filter_frame(inlink->dst->outputs[0], frame); } |