mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
ass_process_chunk: Use llrint, not lrint
libass's ass_process_chunk expects long long int for the timecode and durations arguments, thus should use llrint instead of lrint. This does not cause any problems on most platforms, but on cygwin, it causes strange subtitle behaviour, like subtitles not showing, getting stuck or old subtitles showing at the same time as new subtitles.
This commit is contained in:
@@ -270,8 +270,8 @@ static void decode(struct sd *sd, struct demux_packet *packet)
|
||||
// Note that for this packet format, libass has an internal mechanism
|
||||
// for discarding duplicate (already seen) packets.
|
||||
ass_process_chunk(track, packet->buffer, packet->len,
|
||||
lrint(packet->pts * 1000),
|
||||
lrint(packet->duration * 1000));
|
||||
llrint(packet->pts * 1000),
|
||||
llrint(packet->duration * 1000));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user