From 901b9bc8888c8bc5647d146aa4b84a9cccc9cbe1 Mon Sep 17 00:00:00 2001 From: Dudemanguy Date: Wed, 9 Oct 2024 08:52:05 -0500 Subject: [PATCH] player/sub: ensure subtitles are updated for images with no audio The video_pts condition here would bail out on still images with no audio since their pts is always MP_NOPTS_VALUE. This is not exactly great because the subtitles may need to be updated so just let these files also go through the subtitle redraw logic below. --- player/sub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/sub.c b/player/sub.c index 3902c692b4..741f2ed0f9 100644 --- a/player/sub.c +++ b/player/sub.c @@ -96,7 +96,7 @@ static bool update_subtitle(struct MPContext *mpctx, double video_pts, { struct dec_sub *dec_sub = track ? track->d_sub : NULL; - if (!dec_sub || video_pts == MP_NOPTS_VALUE) + if (!dec_sub) return true; if (mpctx->vo_chain) {