mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 21:06:00 +00:00
video: fix timeline with some container formats
Using edl or --merge-files with .avi files didn't work, because the DTS was not offset. Only the PTS was adjusted, which led to nonsense timestamps.
This commit is contained in:
parent
64e86b5b4d
commit
24c805331d
@ -384,6 +384,8 @@ static int decode_image(struct MPContext *mpctx)
|
||||
return VD_WAIT;
|
||||
if (pkt && pkt->pts != MP_NOPTS_VALUE)
|
||||
pkt->pts += mpctx->video_offset;
|
||||
if (pkt && pkt->dts != MP_NOPTS_VALUE)
|
||||
pkt->dts += mpctx->video_offset;
|
||||
if ((pkt && pkt->pts >= mpctx->hrseek_pts - .005) ||
|
||||
d_video->has_broken_packet_pts ||
|
||||
!mpctx->opts->hr_seek_framedrop)
|
||||
|
Loading…
Reference in New Issue
Block a user