Commit d173123d authored by michael's avatar michael

The convertion between bit and byte is 8 not 60.

Fixes wrong cursor key seek distances.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21627 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fbd2e8a6
......@@ -2371,7 +2371,7 @@ static void event_loop(void)
}else
pos = url_ftell(cur_stream->ic->pb);
if (cur_stream->ic->bit_rate)
incr *= cur_stream->ic->bit_rate / 60.0;
incr *= cur_stream->ic->bit_rate / 8.0;
else
incr *= 180000.0;
pos += incr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment