Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
375bd7cf
Commit
375bd7cf
authored
Apr 01, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Freetype: cleanup and clarify font/family differences
parent
94fa0aeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
22 deletions
+21
-22
modules/misc/text_renderer/freetype.c
modules/misc/text_renderer/freetype.c
+20
-21
modules/misc/text_renderer/text_renderer.h
modules/misc/text_renderer/text_renderer.h
+1
-1
No files found.
modules/misc/text_renderer/freetype.c
View file @
375bd7cf
...
@@ -43,16 +43,16 @@
...
@@ -43,16 +43,16 @@
/* Default fonts */
/* Default fonts */
#ifdef __APPLE__
#ifdef __APPLE__
# define DEFAULT_FONT "/Library/Fonts/Arial Black.ttf"
# define DEFAULT_FONT "/Library/Fonts/Arial Black.ttf"
# define
FC_DEFAULT_FONT
"Arial Black"
# define
DEFAULT_FAMILY
"Arial Black"
#elif defined( WIN32 )
#elif defined( WIN32 )
# define DEFAULT_FONT "arial.ttf"
/* Default font found at run-time */
# define DEFAULT_FONT "arial.ttf"
/* Default
path
font found at run-time */
# define
FC_DEFAULT_FONT
"Arial"
# define
DEFAULT_FAMILY
"Arial"
#elif defined( HAVE_MAEMO )
#elif defined( HAVE_MAEMO )
# define DEFAULT_FONT "/usr/share/fonts/nokia/nosnb.ttf"
# define DEFAULT_FONT "/usr/share/fonts/nokia/nosnb.ttf"
# define
FC_DEFAULT_FONT
"Nokia Sans Bold"
# define
DEFAULT_FAMILY
"Nokia Sans Bold"
#else
#else
# define DEFAULT_FONT "/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
# define DEFAULT_FONT "/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
# define
FC_DEFAULT_FONT
"Serif Bold"
# define
DEFAULT_FAMILY
"Serif Bold"
#endif
#endif
/* Freetype */
/* Freetype */
...
@@ -85,12 +85,6 @@
...
@@ -85,12 +85,6 @@
# define HAVE_STYLES
# define HAVE_STYLES
#endif
#endif
/* If we have font/styles support, use a fontfamily */
#ifdef HAVE_STYLES
# undef DEFAULT_FONT
# define DEFAULT_FONT FC_DEFAULT_FONT
#endif
#include <assert.h>
#include <assert.h>
/*****************************************************************************
/*****************************************************************************
...
@@ -101,11 +95,8 @@ static void Destroy( vlc_object_t * );
...
@@ -101,11 +95,8 @@ static void Destroy( vlc_object_t * );
#define FONT_TEXT N_("Font")
#define FONT_TEXT N_("Font")
#ifdef HAVE_STYLES
#define FAMILY_LONGTEXT N_("Font family for the font you want to use")
#define FONT_LONGTEXT N_("Font family for the font you want to use")
#else
#define FONT_LONGTEXT N_("Font file for the font you want to use")
#define FONT_LONGTEXT N_("Font file for the font you want to use")
#endif
#define FONTSIZE_TEXT N_("Font size in pixels")
#define FONTSIZE_TEXT N_("Font size in pixels")
#define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \
#define FONTSIZE_LONGTEXT N_("This is the default size of the fonts " \
...
@@ -160,7 +151,11 @@ vlc_module_begin ()
...
@@ -160,7 +151,11 @@ vlc_module_begin ()
set_category
(
CAT_VIDEO
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
)
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
)
#ifdef HAVE_STYLES
add_font
(
"freetype-font"
,
DEFAULT_FAMILY
,
FONT_TEXT
,
FAMILY_LONGTEXT
,
false
)
#else
add_font
(
"freetype-font"
,
DEFAULT_FONT
,
FONT_TEXT
,
FONT_LONGTEXT
,
false
)
add_font
(
"freetype-font"
,
DEFAULT_FONT
,
FONT_TEXT
,
FONT_LONGTEXT
,
false
)
#endif
add_integer
(
"freetype-fontsize"
,
0
,
FONTSIZE_TEXT
,
add_integer
(
"freetype-fontsize"
,
0
,
FONTSIZE_TEXT
,
FONTSIZE_LONGTEXT
,
true
)
FONTSIZE_LONGTEXT
,
true
)
...
@@ -286,8 +281,8 @@ struct filter_sys_t
...
@@ -286,8 +281,8 @@ struct filter_sys_t
int
i_default_font_size
;
int
i_default_font_size
;
int
i_display_height
;
int
i_display_height
;
char
*
psz_fontfamily
;
#ifdef HAVE_STYLES
#ifdef HAVE_STYLES
char
*
psz_fontfamily
;
xml_reader_t
*
p_xml
;
xml_reader_t
*
p_xml
;
#ifdef WIN32
#ifdef WIN32
char
*
psz_win_fonts_path
;
char
*
psz_win_fonts_path
;
...
@@ -358,7 +353,7 @@ static int Create( vlc_object_t *p_this )
...
@@ -358,7 +353,7 @@ static int Create( vlc_object_t *p_this )
{
{
free
(
psz_fontfamily
);
free
(
psz_fontfamily
);
#ifdef HAVE_STYLES
#ifdef HAVE_STYLES
psz_fontfamily
=
strdup
(
DEFAULT_F
ONT
);
psz_fontfamily
=
strdup
(
DEFAULT_F
AMILY
);
#else
#else
psz_fontfamily
=
(
char
*
)
malloc
(
PATH_MAX
+
1
);
psz_fontfamily
=
(
char
*
)
malloc
(
PATH_MAX
+
1
);
if
(
!
psz_fontfamily
)
if
(
!
psz_fontfamily
)
...
@@ -369,13 +364,13 @@ static int Create( vlc_object_t *p_this )
...
@@ -369,13 +364,13 @@ static int Create( vlc_object_t *p_this )
# else
# else
strcpy
(
psz_fontfamily
,
DEFAULT_FONT
);
strcpy
(
psz_fontfamily
,
DEFAULT_FONT
);
# endif
# endif
msg_Err
(
p_filter
,
"User
didn't specify fontfile, using %s"
,
psz_fontfamily
);
msg_Err
(
p_filter
,
"User
specified an empty fontfile, using %s"
,
psz_fontfamily
);
#endif
#endif
}
}
p_sys
->
psz_fontfamily
=
psz_fontfamily
;
/* Set the font file */
/* Set the
current
font file */
#ifdef HAVE_STYLES
#ifdef HAVE_STYLES
p_sys
->
psz_fontfamily
=
psz_fontfamily
;
#ifdef HAVE_FONTCONFIG
#ifdef HAVE_FONTCONFIG
FontConfig_BuildCache
(
p_filter
);
FontConfig_BuildCache
(
p_filter
);
...
@@ -388,9 +383,13 @@ static int Create( vlc_object_t *p_this )
...
@@ -388,9 +383,13 @@ static int Create( vlc_object_t *p_this )
#endif
#endif
msg_Dbg
(
p_filter
,
"Using %s as font from file %s"
,
psz_fontfamily
,
psz_fontfile
);
msg_Dbg
(
p_filter
,
"Using %s as font from file %s"
,
psz_fontfamily
,
psz_fontfile
);
/* If nothing is found, use the default family */
if
(
!
psz_fontfile
)
if
(
!
psz_fontfile
)
psz_fontfile
=
psz_fontfamily
;
psz_fontfile
=
psz_fontfamily
;
#else
/* !HAVE_STYLES */
#else
/* !HAVE_STYLES */
/* Use the default file */
psz_fontfile
=
psz_fontfamily
;
psz_fontfile
=
psz_fontfamily
;
#endif
#endif
...
@@ -474,8 +473,8 @@ static void Destroy( vlc_object_t *p_this )
...
@@ -474,8 +473,8 @@ static void Destroy( vlc_object_t *p_this )
#ifdef HAVE_STYLES
#ifdef HAVE_STYLES
if
(
p_sys
->
p_xml
)
xml_ReaderDelete
(
p_sys
->
p_xml
);
if
(
p_sys
->
p_xml
)
xml_ReaderDelete
(
p_sys
->
p_xml
);
#endif
free
(
p_sys
->
psz_fontfamily
);
free
(
p_sys
->
psz_fontfamily
);
#endif
/* FcFini asserts calling the subfunction FcCacheFini()
/* FcFini asserts calling the subfunction FcCacheFini()
* even if no other library functions have been made since FcInit(),
* even if no other library functions have been made since FcInit(),
...
...
modules/misc/text_renderer/text_renderer.h
View file @
375bd7cf
...
@@ -533,7 +533,7 @@ static int ProcessNodes( filter_t *p_filter,
...
@@ -533,7 +533,7 @@ static int ProcessNodes( filter_t *p_filter,
if
(
p_font_style
->
i_style_flags
&
STYLE_STRIKEOUT
)
if
(
p_font_style
->
i_style_flags
&
STYLE_STRIKEOUT
)
b_through
=
true
;
b_through
=
true
;
}
}
#ifdef HAVE_
FONTCONFIG
#ifdef HAVE_
STYLES
else
else
{
{
rv
=
PushFont
(
&
p_fonts
,
rv
=
PushFont
(
&
p_fonts
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment