0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

sub: read subtitles until their timestamps are past video

Change >= to >, because if the timestamps are equal, further subtitle
packets with the same timestamps could be required (e.g. ASS).
This commit is contained in:
wm4 2016-01-11 20:37:16 +01:00
parent 8135838018
commit 0915a8497b

View File

@ -165,7 +165,7 @@ bool sub_read_packets(struct dec_sub *sub, double video_pts)
// reading.
if (st <= 0) {
r = st < 0 || (sub->last_pkt_pts != MP_NOPTS_VALUE &&
sub->last_pkt_pts >= video_pts);
sub->last_pkt_pts > video_pts);
break;
}