avcodec/setts_bsf: actually store the current packet's timestamps to be usable by the next

Before this change, the PREV_OUTPTS and PREV_OUTDTS constants always evaluated
to AV_NOPTS_VALUE.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
pull/359/head
James Almer 4 years ago
parent f73943d514
commit b0b3fce3c3
  1. 8
      libavcodec/setts_bsf.c

@ -171,10 +171,10 @@ static int setts_filter(AVBSFContext *ctx, AVPacket *pkt)
new_dts = new_ts;
}
s->var_values[VAR_PREV_INPTS] = pkt->pts;
s->var_values[VAR_PREV_INDTS] = pkt->dts;
s->var_values[VAR_PREV_OUTPTS] = new_pts;
s->var_values[VAR_PREV_OUTDTS] = new_dts;
s->prev_inpts = pkt->pts;
s->prev_indts = pkt->dts;
s->prev_outpts = new_pts;
s->prev_outdts = new_dts;
pkt->pts = new_pts;
pkt->dts = new_dts;

Loading…
Cancel
Save