Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
295ee994
Commit
295ee994
authored
Mar 24, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Freetype: fontconfig cleaning
parent
a9065bdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
27 deletions
+31
-27
modules/misc/freetype.c
modules/misc/freetype.c
+31
-27
No files found.
modules/misc/freetype.c
View file @
295ee994
...
@@ -2191,16 +2191,8 @@ static int RenderHtml( filter_t *p_filter, subpicture_region_t *p_region_out,
...
@@ -2191,16 +2191,8 @@ static int RenderHtml( filter_t *p_filter, subpicture_region_t *p_region_out,
}
}
#ifdef HAVE_FONTCONFIG
#ifdef HAVE_FONTCONFIG
static
int
FontConfig_FindFont
(
filter_t
*
p_filter
,
char
*
psz_fontfamily
,
static
void
FontConfig_BuildCache
(
filter_t
*
p_filter
)
char
**
psz_fontfile
,
int
*
fontindex
)
{
{
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
FcPattern
*
fontpattern
=
NULL
,
*
fontmatch
=
NULL
;
/* Initialise result to Match, as fontconfig doesnt
* really set this other than some error-cases */
FcResult
fontresult
=
FcResultMatch
;
/* */
/* */
msg_Dbg
(
p_filter
,
"Building font databases."
);
msg_Dbg
(
p_filter
,
"Building font databases."
);
mtime_t
t1
;
mtime_t
t1
;
...
@@ -2230,6 +2222,22 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
...
@@ -2230,6 +2222,22 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
p_dialog
=
NULL
;
p_dialog
=
NULL
;
}
}
#endif
#endif
}
/**
* \brief Returns the path of a font matching a fontfamily, using Fc
***/
static
int
FontConfig_FindFont
(
filter_t
*
p_filter
,
char
*
psz_fontfamily
,
char
**
psz_fontfile
,
int
*
fontindex
)
{
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
FcPattern
*
fontpattern
=
NULL
,
*
fontmatch
=
NULL
;
/* Initialise result to Match, as fontconfig doesnt
* really set this other than some error-cases */
FcResult
fontresult
=
FcResultMatch
;
FontConfig_BuildCache
(
p_filter
);
/* Lets find some fontfile from freetype-font variable family */
/* Lets find some fontfile from freetype-font variable family */
char
*
psz_fontsize
;
char
*
psz_fontsize
;
...
@@ -2237,11 +2245,7 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
...
@@ -2237,11 +2245,7 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
goto
error
;
goto
error
;
fontpattern
=
FcPatternCreate
();
fontpattern
=
FcPatternCreate
();
if
(
!
fontpattern
)
if
(
!
fontpattern
)
return
VLC_EGENERIC
;
{
msg_Err
(
p_filter
,
"Creating fontpattern failed"
);
goto
error
;
}
FcPatternAddString
(
fontpattern
,
FC_FAMILY
,
(
const
FcChar8
*
)
psz_fontfamily
);
FcPatternAddString
(
fontpattern
,
FC_FAMILY
,
(
const
FcChar8
*
)
psz_fontfamily
);
FcPatternAddString
(
fontpattern
,
FC_SIZE
,
(
const
FcChar8
*
)
psz_fontsize
);
FcPatternAddString
(
fontpattern
,
FC_SIZE
,
(
const
FcChar8
*
)
psz_fontsize
);
...
@@ -2278,24 +2282,23 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
...
@@ -2278,24 +2282,23 @@ static int FontConfig_FindFont( filter_t *p_filter, char *psz_fontfamily,
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
error:
error:
#ifdef WIN32
if
(
p_dialog
)
dialog_ProgressDestroy
(
p_dialog
);
#endif
if
(
fontmatch
)
FcPatternDestroy
(
fontmatch
);
if
(
fontmatch
)
FcPatternDestroy
(
fontmatch
);
if
(
fontpattern
)
FcPatternDestroy
(
fontpattern
);
if
(
fontpattern
)
FcPatternDestroy
(
fontpattern
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
static
char
*
FontConfig_Select
(
FcConfig
*
priv
,
const
char
*
family
,
/***
* \brief Selects a font matching family, bold, italic provided
***/
static
char
*
FontConfig_Select
(
FcConfig
*
config
,
const
char
*
family
,
bool
b_bold
,
bool
b_italic
,
int
*
i_idx
)
bool
b_bold
,
bool
b_italic
,
int
*
i_idx
)
{
{
FcResult
result
;
FcResult
result
=
FcResultMatch
;
FcPattern
*
pat
,
*
p_pat
;
FcPattern
*
pat
,
*
p_pat
;
FcChar8
*
val_s
;
FcChar8
*
val_s
;
FcBool
val_b
;
FcBool
val_b
;
/* Create a pattern and fills it */
pat
=
FcPatternCreate
();
pat
=
FcPatternCreate
();
if
(
!
pat
)
return
NULL
;
if
(
!
pat
)
return
NULL
;
...
@@ -2306,16 +2309,19 @@ static char* FontConfig_Select( FcConfig* priv, const char* family,
...
@@ -2306,16 +2309,19 @@ static char* FontConfig_Select( FcConfig* priv, const char* family,
FcDefaultSubstitute
(
pat
);
FcDefaultSubstitute
(
pat
);
if
(
!
FcConfigSubstitute
(
priv
,
pat
,
FcMatchPattern
)
)
/* Replace the config (or current config) with the new pattern */
if
(
!
FcConfigSubstitute
(
config
,
pat
,
FcMatchPattern
)
)
{
{
FcPatternDestroy
(
pat
);
FcPatternDestroy
(
pat
);
return
NULL
;
return
NULL
;
}
}
p_pat
=
FcFontMatch
(
priv
,
pat
,
&
result
);
/* Find the best font for the pattern, destroy the pattern */
p_pat
=
FcFontMatch
(
config
,
pat
,
&
result
);
FcPatternDestroy
(
pat
);
FcPatternDestroy
(
pat
);
if
(
!
p_pat
)
return
NULL
;
if
(
!
p_pat
)
return
NULL
;
/* Check the new pattern */
if
(
(
FcResultMatch
!=
FcPatternGetBool
(
p_pat
,
FC_OUTLINE
,
0
,
&
val_b
)
)
if
(
(
FcResultMatch
!=
FcPatternGetBool
(
p_pat
,
FC_OUTLINE
,
0
,
&
val_b
)
)
||
(
val_b
!=
FcTrue
)
)
||
(
val_b
!=
FcTrue
)
)
{
{
...
@@ -2333,12 +2339,10 @@ static char* FontConfig_Select( FcConfig* priv, const char* family,
...
@@ -2333,12 +2339,10 @@ static char* FontConfig_Select( FcConfig* priv, const char* family,
return
NULL
;
return
NULL
;
}
}
/*
/* if( strcasecmp((const char*)val_s, family ) != 0 )
if( strcasecmp((const char*)val_s, family ) != 0 )
msg_Warn( p_filter, "fontconfig: selected font family is not"
msg_Warn( p_filter, "fontconfig: selected font family is not"
"the requested one: '%s' != '%s'\n",
"the requested one: '%s' != '%s'\n",
(const char*)val_s, family );
(const char*)val_s, family ); */
*/
if
(
FcResultMatch
!=
FcPatternGetString
(
p_pat
,
FC_FILE
,
0
,
&
val_s
)
)
if
(
FcResultMatch
!=
FcPatternGetString
(
p_pat
,
FC_FILE
,
0
,
&
val_s
)
)
{
{
...
...
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