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:
wm4 2013-10-02 20:41:11 +02:00
parent 4da7630824
commit a8240c1b58
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}