diff options
author | 2009-03-09 01:48:42 +0000 | |
---|---|---|
committer | 2009-03-09 01:48:42 +0000 | |
commit | 708819105f20bbe4e608045e13e1f025352d7def (patch) | |
tree | 398caaa723cfec0672ba7ef9f5c7f1a2551fa35c | |
parent | 15b605c6909f668abaf937ff9588defd5714101e (diff) |
Change default OSD/subtitle font sizes.
This was discussed on -dev-eng and IRC. The consensus seems to be that
3-4% of the diagonal is a good default, and most people use something
along these lines.
The subtitle font size is set to 3.5% and the OSD is kept a little bigger
with 4%.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28900 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/font_load_ft.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/font_load_ft.c b/libvo/font_load_ft.c index ddb6af5ada..20d673a0fc 100644 --- a/libvo/font_load_ft.c +++ b/libvo/font_load_ft.c @@ -56,8 +56,8 @@ #endif char *subtitle_font_encoding = NULL; -float text_font_scale_factor = 5.0; -float osd_font_scale_factor = 6.0; +float text_font_scale_factor = 3.5; +float osd_font_scale_factor = 4.0; float subtitle_font_radius = 2.0; float subtitle_font_thickness = 2.0; // 0 = no autoscale |