summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorrcombs <rcombs@rcombs.me>2020-12-23 00:40:32 -0600
committerLeo Izen <leo.izen@gmail.com>2021-06-23 16:10:29 -0400
commit11423acf3048445620bf1e8987b3f7aa04887cf0 (patch)
treea5f1d977eee7d02856eabf77776faf10b24b6c2b /options/options.c
parentcb56c2f888dbe86dbc38839c32684d54ea93c63e (diff)
downloadmpv-11423acf3048445620bf1e8987b3f7aa04887cf0.tar.bz2
mpv-11423acf3048445620bf1e8987b3f7aa04887cf0.tar.xz
sub: by default, don't render timestamps after video EOF
This fixes a long-standing apparent issue where mpv would display the last frame with no subtitles at EOF. This is caused by sub rendering switching from video timestamps to audio timestamps when the video ends, and audio streams often running past the timestamp of the last video frame. However, authoring tools (most notably Aegisub) don't tend to provide easy ways to add meaningful subtitles after the end of the video, so this is rarely actually useful.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/options/options.c b/options/options.c
index 89ea4f85e0..ebeff51d23 100644
--- a/options/options.c
+++ b/options/options.c
@@ -275,6 +275,7 @@ const struct m_sub_options mp_subtitle_sub_opts = {
{"sub", OPT_SUBSTRUCT(sub_style, sub_style_conf)},
{"sub-clear-on-seek", OPT_FLAG(sub_clear_on_seek)},
{"teletext-page", OPT_INT(teletext_page), M_RANGE(1, 999)},
+ {"sub-past-video-end", OPT_FLAG(sub_past_video_end)},
{0}
},
.size = sizeof(OPT_BASE_STRUCT),