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
1 changed files with 1 additions and 1 deletions

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