diff options
author | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-12-15 01:09:47 +0200 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-12-20 19:02:16 +0200 |
commit | f0649f13d698eb6aeffeaacd6801b666c4366caf (patch) | |
tree | 809200e48f70f5a13e8a1d27f688f7b92348a744 /options.h | |
parent | 23f598e0ee2151923a44077f510cd484f239480b (diff) | |
download | mpv-f0649f13d698eb6aeffeaacd6801b666c4366caf.tar.bz2 mpv-f0649f13d698eb6aeffeaacd6801b666c4366caf.tar.xz |
core: add support for precise non-keyframe-limited seeks
Add support for seeking to an arbitrary non-keyframe position by
decoding video starting from the previous keyframe. Whether to use
this functionality when seeking is controlled by the new option
-hr-seek and a new third argument to the "seek" command. The default
is to use it for absolute seeks (like chapter seeks) but not for
relative ones. Because there's currently no support for cutting
encoded audio some desync is expected if encoded audio passthrough is
used. Currently precise seeks always go to the first frame with
timestamp equal to or greater than the target position; there's no
support for "matching or earlier" backwards seeks at frame level.
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -47,6 +47,7 @@ typedef struct MPOpts { int user_correct_pts; int user_pts_assoc_mode; int initial_audio_sync; + int hr_seek; int autosync; int softsleep; int rtc; |