mirror of
https://github.com/mpv-player/mpv
synced 2024-12-13 18:36:09 +00:00
Fix compilation of teletext code without freetype support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29864 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
509475ec2c
commit
4b55351e28
@ -351,6 +351,7 @@ inline static void vo_update_text_teletext(mp_osd_obj_t *obj, int dxs, int dys)
|
|||||||
hm=vo_font->height+1;
|
hm=vo_font->height+1;
|
||||||
wm=dxs*hm*max_rows/(dys*VBI_COLUMNS);
|
wm=dxs*hm*max_rows/(dys*VBI_COLUMNS);
|
||||||
|
|
||||||
|
#ifdef CONFIG_FREETYPE
|
||||||
//very simple teletext font auto scaling
|
//very simple teletext font auto scaling
|
||||||
if(!vo_osd_teletext_scale && hm*(max_rows+1)>dys){
|
if(!vo_osd_teletext_scale && hm*(max_rows+1)>dys){
|
||||||
osd_font_scale_factor*=1.0*(dys)/((max_rows+1)*hm);
|
osd_font_scale_factor*=1.0*(dys)/((max_rows+1)*hm);
|
||||||
@ -359,6 +360,7 @@ inline static void vo_update_text_teletext(mp_osd_obj_t *obj, int dxs, int dys)
|
|||||||
obj->flags&=~OSDFLAG_VISIBLE;
|
obj->flags&=~OSDFLAG_VISIBLE;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
cols=dxs/wm;
|
cols=dxs/wm;
|
||||||
rows=dys/hm;
|
rows=dys/hm;
|
||||||
|
Loading…
Reference in New Issue
Block a user