player: remove initial seek on playback start

Accidental leftover from commit ae55896f. (This seek ised to be done
with ordered chapters, and was accidentally changed to always being
done.)
This commit is contained in:
wm4 2016-02-18 22:56:40 +01:00
parent 53ef4822e8
commit e832e46bd6
1 changed files with 0 additions and 2 deletions

View File

@ -1189,8 +1189,6 @@ reopen_file:
if (start != MP_NOPTS_VALUE)
startpos = start;
}
if (startpos == MP_NOPTS_VALUE)
startpos = 0;
if (startpos != MP_NOPTS_VALUE) {
queue_seek(mpctx, MPSEEK_ABSOLUTE, startpos, 0, true);
execute_queued_seek(mpctx);