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>
This commit is contained in:
James Almer 2021-07-03 16:16:13 -03:00
parent f73943d514
commit b0b3fce3c3
1 changed files with 4 additions and 4 deletions

View File

@ -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;