]> git.sesse.net Git - ffmpeg/commitdiff
fix seeking bug
authorMåns Rullgård <mans@mansr.com>
Tue, 12 Apr 2005 13:33:22 +0000 (13:33 +0000)
committerMåns Rullgård <mans@mansr.com>
Tue, 12 Apr 2005 13:33:22 +0000 (13:33 +0000)
Originally committed as revision 4123 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/ogg2.c

index 2d88a92bcfd0f0c528802eabcd7dfee79b3e4b41..89e545eb27e5681147f143f71c8df4817856adb6 100644 (file)
@@ -554,7 +554,7 @@ ogg_read_seek (AVFormatContext * s, int stream_index, int64_t target_ts,
     ogg_save (s);
 
     while (min <= max){
-        uint64_t p = min + (max - min) * target_ts / (tmax - tmin);
+        uint64_t p = min + (max - min) * (target_ts - tmin) / (tmax - tmin);
         int i = -1;
 
         url_fseek (bc, p, SEEK_SET);