summaryrefslogtreecommitdiff
path: root/libavfilter/setpts.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/setpts.c')
-rw-r--r--libavfilter/setpts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/setpts.c b/libavfilter/setpts.c
index 2ccca28e9a..4505498bf3 100644
--- a/libavfilter/setpts.c
+++ b/libavfilter/setpts.c
@@ -165,7 +165,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
}
setpts->var_values[VAR_PTS ] = TS2D(frame->pts);
setpts->var_values[VAR_T ] = TS2T(frame->pts, inlink->time_base);
- setpts->var_values[VAR_POS ] = av_frame_get_pkt_pos(frame) == -1 ? NAN : av_frame_get_pkt_pos(frame);
+ setpts->var_values[VAR_POS ] = frame->pkt_pos == -1 ? NAN : frame->pkt_pos;
setpts->var_values[VAR_RTCTIME ] = av_gettime();
if (inlink->type == AVMEDIA_TYPE_VIDEO) {