# HG changeset patch # User uau # Date 1182363543 0 # Node ID a00685941686507c9dc4a4bc3e9336f2bd7641ba # Parent f3dd45afeaf7353343e4a3c9d0e2a371e7c820e6 demux_mkv very long seek fix The seek code searching for the closest position in the index used "int64_t min_diff=0xFFFFFFFL" as the initial "further from the goal than any real alternative" value. The unit is milliseconds so seeks more than about 75 hours past the end of the file would fail to recognize the last index position as the best match. This was triggered in practice by chapter seek code which apparently uses a seek of 1000000000 seconds forward to mean "seek to the end". The practical effect was that trying to seek to the next chapter in a file without chapters made MPlayer block until it finished reading the file from the current position to the end. Fixed by increasing the initial value from FFFFFFF to FFFFFFFFFFFFFFF. diff -r f3dd45afeaf7 -r a00685941686 libmpdemux/demux_mkv.c --- a/libmpdemux/demux_mkv.c Wed Jun 20 16:52:32 2007 +0000 +++ b/libmpdemux/demux_mkv.c Wed Jun 20 18:19:03 2007 +0000 @@ -3394,7 +3394,7 @@ { mkv_demuxer_t *mkv_d = (mkv_demuxer_t *) demuxer->priv; stream_t *s = demuxer->stream; - int64_t target_timecode = 0, diff, min_diff=0xFFFFFFFL; + int64_t target_timecode = 0, diff, min_diff=0xFFFFFFFFFFFFFFFLL; int i; if (!(flags & 1)) /* relative seek */