From 84a215de32ee43b6933bed5f915f64f1d98fe718 Mon Sep 17 00:00:00 2001 From: reimar Date: Mon, 20 Aug 2007 09:26:29 +0000 Subject: [PATCH] -subfps makes sense for frame-based subtitle formats as well! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24103 b3059339-0415-0410-9bf9-f77b7e298cf2 --- subreader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subreader.c b/subreader.c index 8bd5419d17..a83ce4ee1e 100644 --- a/subreader.c +++ b/subreader.c @@ -1255,7 +1255,7 @@ static void adjust_subs_time(subtitle* sub, float subtime, float fps, int block, */ /* timed sub fps correction ::atmos */ - if(sub_uses_time && sub_fps) { + if(sub_fps) { sub->start *= sub_fps/fps; sub->end *= sub_fps/fps; }