mirror of https://github.com/mpv-player/mpv
vo: mark frame lost after seek reset
Reverts a small change made in commit ed9295c
. This is needed, because
otherwise mplayer.c/update_video_attached_pic() thinks it never has to
update the picture after initialization. (Maybe there would be more
elegant ways to handle this, but not without adding extra state.)
This commit is contained in:
parent
4da7630824
commit
a8240c1b58
|
@ -289,6 +289,7 @@ void vo_seek_reset(struct vo *vo)
|
|||
{
|
||||
vo_control(vo, VOCTRL_RESET, NULL);
|
||||
vo->frame_loaded = false;
|
||||
vo->hasframe = false;
|
||||
mp_image_unrefp(&vo->waiting_mpi);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue