[FFmpeg-devel] [PATCH] libavformar/demux: fix dts being incorrectly set to pts
Shiqi Zhu
hiccupzhu at gmail.com
Wed May 15 12:43:02 EEST 2024
Signed-off-by: Shiqi Zhu <hiccupzhu at gmail.com>
---
libavformat/demux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/demux.c b/libavformat/demux.c
index ecefe7e0a7..e19b8b6473 100644
--- a/libavformat/demux.c
+++ b/libavformat/demux.c
@@ -1112,7 +1112,7 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
/* presentation is not delayed : PTS and DTS are the same */
if (pkt->pts == AV_NOPTS_VALUE)
pkt->pts = pkt->dts;
- update_initial_timestamps(s, pkt->stream_index, pkt->pts,
+ update_initial_timestamps(s, pkt->stream_index, pkt->dts,
pkt->pts, pkt);
if (pkt->pts == AV_NOPTS_VALUE)
pkt->pts = sti->cur_dts;
--
2.34.1
More information about the ffmpeg-devel
mailing list