[FFmpeg-cvslog] avcodec/setts_bsf: actually store the current packet's timestamps to be usable by the next

James Almer git at videolan.org
Sun Jul 4 17:20:00 EEST 2021


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Jul  3 16:16:13 2021 -0300| [b0b3fce3c33352a87267b6ffa51da31d5162daff] | committer: James Almer

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 at gmail.com>
Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b0b3fce3c33352a87267b6ffa51da31d5162daff
---

 libavcodec/setts_bsf.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/setts_bsf.c b/libavcodec/setts_bsf.c
index 2558e38f51..1e43036ee1 100644
--- a/libavcodec/setts_bsf.c
+++ b/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;



More information about the ffmpeg-cvslog mailing list