summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_telecine.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_telecine.c')
-rw-r--r--libavfilter/vf_telecine.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c
index 76fb22c..136df22 100644
--- a/libavfilter/vf_telecine.c
+++ b/libavfilter/vf_telecine.c
@@ -43,7 +43,6 @@ typedef struct {
double ts_unit;
int out_cnt;
int occupied;
- int64_t frame_count;
int nb_planes;
int planeheight[4];
@@ -233,7 +232,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
}
av_frame_copy_props(frame, inpicref);
- frame->pts = tc->frame_count++ * tc->ts_unit;
+ frame->pts = outlink->frame_count * tc->ts_unit;
ret = ff_filter_frame(outlink, frame);
}
av_frame_free(&inpicref);
OpenPOWER on IntegriCloud