core: hr-seek: fix soft hang with hrseek past EOF
commitafef26425d41f34079698891ea71f59212bdef2c
authorUoti Urpala <uau@glyph.nonexistent.invalid>
Thu, 3 Mar 2011 10:54:36 +0000 (3 12:54 +0200)
committerUoti Urpala <uau@glyph.nonexistent.invalid>
Thu, 3 Mar 2011 10:54:36 +0000 (3 12:54 +0200)
tree75e20adc9da5ec5c7e0192aca401663a8cd5aa5b
parent9f6b8e30d2a844c171a2237b6f5f29595c06ff49
core: hr-seek: fix soft hang with hrseek past EOF

When doing a precise seek video_out->frame_loaded was left to true
while frames were being skipped. However vo_get_buffered_frame()
always returns success if a frame is already loaded; due to this the
EOF detection in update_video() never triggered, and a hr-seek past
EOF could cause a soft hang (commands were still processed and it was
possible to seek again to exit the loop). This could also happen with
Matroska files using ordered chapters if an underlying file was
actually shorter than the chapter that was supposed to come from it.
Then seeking to a timestamp after the end of the file but before the
end of the chapter would trigger the bug.

Fix the problem by setting frame_loaded to false when we decide to
skip the frame in question.
libvo/video_out.c
libvo/video_out.h
mplayer.c