mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-06 14:53:23 +00:00
ffm_seek: fix division by zero
Fixes CID732202 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
657998b5ee
commit
7fd65104f4
@ -443,7 +443,7 @@ static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, in
|
||||
while (pos_min <= pos_max) {
|
||||
pts_min = get_dts(s, pos_min);
|
||||
pts_max = get_dts(s, pos_max);
|
||||
if (pts_min > wanted_pts || pts_max < wanted_pts) {
|
||||
if (pts_min > wanted_pts || pts_max <= wanted_pts) {
|
||||
pos = pts_min > wanted_pts ? pos_min : pos_max;
|
||||
goto found;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user