mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 17:37:23 +00:00
checking range of vo_osd_progbar_value added
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1725 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
855050e68a
commit
52b53568c2
@ -1763,6 +1763,10 @@ if(rel_seek_secs || abs_seek_pos){
|
|||||||
osd_visible=sh_video->fps; // 1 sec
|
osd_visible=sh_video->fps; // 1 sec
|
||||||
vo_osd_progbar_type=0;
|
vo_osd_progbar_type=0;
|
||||||
vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len;
|
vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len;
|
||||||
|
if (vo_osd_progbar_value<0)
|
||||||
|
vo_osd_progbar_value=0;
|
||||||
|
else if (vo_osd_progbar_value>255)
|
||||||
|
vo_osd_progbar_value=255;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user