annotate libass/ass_fontconfig.c @ 26907:f0d0b666ee35

Fix compilation with internal dvdnav
author rtogni
date Sat, 31 May 2008 13:42:09 +0000
parents 13ef1f050cfc
children bafda9ff0221
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20008
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19902
diff changeset
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19902
diff changeset
2 // vim:ts=8:sw=8:noet:ai:
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19902
diff changeset
3 /*
26723
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
4 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
5 *
26738
588ce97b44f2 Speak of libass instead of MPlayer in the libass license headers.
diego
parents: 26723
diff changeset
6 * This file is part of libass.
26723
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
7 *
26738
588ce97b44f2 Speak of libass instead of MPlayer in the libass license headers.
diego
parents: 26723
diff changeset
8 * libass is free software; you can redistribute it and/or modify
26723
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
9 * it under the terms of the GNU General Public License as published by
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
11 * (at your option) any later version.
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
12 *
26738
588ce97b44f2 Speak of libass instead of MPlayer in the libass license headers.
diego
parents: 26723
diff changeset
13 * libass is distributed in the hope that it will be useful,
26723
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
16 * GNU General Public License for more details.
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
17 *
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
18 * You should have received a copy of the GNU General Public License along
26738
588ce97b44f2 Speak of libass instead of MPlayer in the libass license headers.
diego
parents: 26723
diff changeset
19 * with libass; if not, write to the Free Software Foundation, Inc.,
26723
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
0f892cd714b2 Use standard license header.
diego
parents: 26710
diff changeset
21 */
20008
fa122b7c71c6 Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents: 19902
diff changeset
22
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
23 #include "config.h"
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
24
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
25 #include <stdlib.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
26 #include <stdio.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
27 #include <assert.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
28 #include <string.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
29 #include <sys/types.h>
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
30 #include <sys/stat.h>
22292
2f3f27a014ef Add some missing includes.
eugeni
parents: 21630
diff changeset
31 #include <inttypes.h>
2f3f27a014ef Add some missing includes.
eugeni
parents: 21630
diff changeset
32 #include <ft2build.h>
2f3f27a014ef Add some missing includes.
eugeni
parents: 21630
diff changeset
33 #include FT_FREETYPE_H
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
34
21026
d138463e820b Collect all includes of mplayer headers in libass in a single file (mputils.h).
eugeni
parents: 20629
diff changeset
35 #include "mputils.h"
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
36 #include "ass.h"
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
37 #include "ass_library.h"
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
38 #include "ass_fontconfig.h"
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
39
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
40 #ifdef HAVE_FONTCONFIG
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
41 #include <fontconfig/fontconfig.h>
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
42 #include <fontconfig/fcfreetype.h>
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
43 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
44
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
45 struct fc_instance_s {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
46 #ifdef HAVE_FONTCONFIG
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
47 FcConfig* config;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
48 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
49 char* family_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
50 char* path_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
51 int index_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
52 };
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
53
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
54 #ifdef HAVE_FONTCONFIG
26660
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
55
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
56 // 4yo fontconfig does not have these.
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
57 // They are only needed for debug output, anyway.
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
58 #ifndef FC_FULLNAME
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
59 #define FC_FULLNAME "fullname"
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
60 #endif
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
61 #ifndef FC_EMBOLDEN
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
62 #define FC_EMBOLDEN "embolden"
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
63 #endif
ab5729095d68 Define FC_FULLNAME and FC_EMBOLDEN to fix compilation with ancient fontconfig.
eugeni
parents: 26659
diff changeset
64
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
65 /**
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
66 * \brief Low-level font selection.
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
67 * \param priv private data
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
68 * \param family font family
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
69 * \param bold font weight value
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
70 * \param italic font slant value
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
71 * \param index out: font index inside a file
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
72 * \param code: the character that should be present in the font, can be 0
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
73 * \return font file path
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
74 */
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
75 static char* _select_font(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index,
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
76 uint32_t code)
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
77 {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
78 FcBool rc;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
79 FcResult result;
26709
38d1fdb388f9 Fix possible free of unallocated memory.
eugeni
parents: 26660
diff changeset
80 FcPattern *pat = 0, *rpat = 0;
26616
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
81 int r_index, r_slant, r_weight;
26615
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
82 FcChar8 *r_family, *r_style, *r_file, *r_fullname;
26616
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
83 FcBool r_outline, r_embolden;
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
84 FcCharSet* r_charset;
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
85 FcFontSet* fset = 0;
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
86 int curf;
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
87 char* retval = 0;
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
88 int family_cnt;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
89
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
90 *index = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
91
19063
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
92 pat = FcPatternCreate();
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
93 if (!pat)
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
94 goto error;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
95
19063
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
96 FcPatternAddString(pat, FC_FAMILY, (const FcChar8*)family);
26591
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
97
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
98 // In SSA/ASS fonts are sometimes referenced by their "full name",
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
99 // which is usually a concatenation of family name and font
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
100 // style (ex. Ottawa Bold). Full name is available from
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
101 // FontConfig pattern element FC_FULLNAME, but it is never
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
102 // used for font matching.
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
103 // Therefore, I'm removing words from the end of the name one
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
104 // by one, and adding shortened names to the pattern. It seems
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
105 // that the first value (full name in this case) has
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
106 // precedence in matching.
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
107 // An alternative approach could be to reimplement FcFontSort
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
108 // using FC_FULLNAME instead of FC_FAMILY.
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
109 family_cnt = 1;
26710
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
110 {
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
111 char* s = strdup(family);
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
112 char* p = s + strlen(s);
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
113 while (--p > s)
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
114 if (*p == ' ' || *p == '-') {
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
115 *p = '\0';
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
116 FcPatternAddString(pat, FC_FAMILY, (const FcChar8*)s);
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
117 ++ family_cnt;
605722f2c1b6 When building font pattern, treat both ' ' and '-' as word separators.
eugeni
parents: 26709
diff changeset
118 }
26591
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
119 free(s);
0f069e41d8d2 Allow inexact font family matching.
eugeni
parents: 26582
diff changeset
120 }
19063
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
121 FcPatternAddBool(pat, FC_OUTLINE, FcTrue);
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
122 FcPatternAddInteger(pat, FC_SLANT, italic);
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
123 FcPatternAddInteger(pat, FC_WEIGHT, bold);
5525af2ee4c7 Use FcPatternAdd-Type instead of FcNameParse. The latter, as it turns out, requires escaping of some characters ('-', maybe more).
eugeni
parents: 19001
diff changeset
124
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
125 FcDefaultSubstitute(pat);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
126
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
127 rc = FcConfigSubstitute(priv->config, pat, FcMatchPattern);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
128 if (!rc)
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
129 goto error;
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
130
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
131 fset = FcFontSort(priv->config, pat, FcTrue, NULL, &result);
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
132
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
133 for (curf = 0; curf < fset->nfont; ++curf) {
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
134 FcPattern* curp = fset->fonts[curf];
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
135
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
136 result = FcPatternGetBool(curp, FC_OUTLINE, 0, &r_outline);
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
137 if (result != FcResultMatch)
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
138 continue;
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
139 if (r_outline != FcTrue)
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
140 continue;
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
141 if (!code)
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
142 break;
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
143 result = FcPatternGetCharSet(curp, FC_CHARSET, 0, &r_charset);
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
144 if (result != FcResultMatch)
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
145 continue;
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
146 if (FcCharSetHasChar(r_charset, code))
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
147 break;
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
148 }
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
149
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
150 if (curf >= fset->nfont)
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
151 goto error;
21351
c611dfc4cb85 If a glyph is not found in the current font, switch to another one.
eugeni
parents: 21279
diff changeset
152
26819
d288ec15f2cc Fix compilation with FontConfig <= 2.2.96.
eugeni
parents: 26738
diff changeset
153 #if (FC_VERSION >= 20297)
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
154 // Remove all extra family names from original pattern.
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
155 // After this, FcFontRenderPrepare will select the most relevant family
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
156 // name in case there are more than one of them.
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
157 for (; family_cnt > 1; --family_cnt)
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
158 FcPatternRemove(pat, FC_FAMILY, family_cnt - 1);
26819
d288ec15f2cc Fix compilation with FontConfig <= 2.2.96.
eugeni
parents: 26738
diff changeset
159 #endif
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
160
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
161 rpat = FcFontRenderPrepare(priv->config, pat, fset->fonts[curf]);
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
162 if (!rpat)
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
163 goto error;
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
164
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
165 result = FcPatternGetInteger(rpat, FC_INDEX, 0, &r_index);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
166 if (result != FcResultMatch)
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
167 goto error;
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
168 *index = r_index;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
169
26614
875a7878626c Move font family check to the end of the list.
eugeni
parents: 26613
diff changeset
170 result = FcPatternGetString(rpat, FC_FILE, 0, &r_file);
875a7878626c Move font family check to the end of the list.
eugeni
parents: 26613
diff changeset
171 if (result != FcResultMatch)
875a7878626c Move font family check to the end of the list.
eugeni
parents: 26613
diff changeset
172 goto error;
875a7878626c Move font family check to the end of the list.
eugeni
parents: 26613
diff changeset
173 retval = strdup((const char*)r_file);
875a7878626c Move font family check to the end of the list.
eugeni
parents: 26613
diff changeset
174
26613
92939846ff49 Cosmetics: rename local variables to better reflect their contents.
eugeni
parents: 26592
diff changeset
175 result = FcPatternGetString(rpat, FC_FAMILY, 0, &r_family);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
176 if (result != FcResultMatch)
26615
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
177 r_family = NULL;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
178
26615
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
179 result = FcPatternGetString(rpat, FC_FULLNAME, 0, &r_fullname);
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
180 if (result != FcResultMatch)
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
181 r_fullname = NULL;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
182
26615
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
183 if (!(r_family && strcasecmp((const char*)r_family, family) == 0) &&
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
184 !(r_fullname && strcasecmp((const char*)r_fullname, family) == 0))
75154771f2f3 Rewrite font family check in a simpler way.
eugeni
parents: 26614
diff changeset
185 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_SelectedFontFamilyIsNotTheRequestedOne,
26659
9e1d66c990fa If both full name and family are available, use the former in inexact match warning.
eugeni
parents: 26658
diff changeset
186 (const char*)(r_fullname ? r_fullname : r_family), family);
26616
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
187
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
188 result = FcPatternGetString(rpat, FC_STYLE, 0, &r_style);
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
189 if (result != FcResultMatch)
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
190 r_style = NULL;
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
191
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
192 result = FcPatternGetInteger(rpat, FC_SLANT, 0, &r_slant);
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
193 if (result != FcResultMatch)
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
194 r_slant = 0;
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
195
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
196 result = FcPatternGetInteger(rpat, FC_WEIGHT, 0, &r_weight);
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
197 if (result != FcResultMatch)
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
198 r_weight = 0;
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
199
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
200 result = FcPatternGetBool(rpat, FC_EMBOLDEN, 0, &r_embolden);
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
201 if (result != FcResultMatch)
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
202 r_embolden = 0;
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
203
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
204 mp_msg(MSGT_ASS, MSGL_V, "[ass] Font info: family '%s', style '%s', fullname '%s',"
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
205 " slant %d, weight %d%s\n",
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
206 (const char*)r_family, (const char*)r_style, (const char*)r_fullname,
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
207 r_slant, r_weight, r_embolden ? ", embolden" : "");
c37a85037fc2 Print more info about selected font.
eugeni
parents: 26615
diff changeset
208
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
209 error:
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
210 if (pat) FcPatternDestroy(pat);
26658
1e1ebebc8f5b Remove extra family names from the search pattern after FcFontSort and
eugeni
parents: 26620
diff changeset
211 if (rpat) FcPatternDestroy(rpat);
23215
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
212 if (fset) FcFontSetDestroy(fset);
c52636be7c4b Deallocate FontConfig objects.
eugeni
parents: 22946
diff changeset
213 return retval;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
214 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
215
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
216 /**
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
217 * \brief Find a font. Use default family or path if necessary.
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
218 * \param priv_ private data
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
219 * \param family font family
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
220 * \param bold font weight value
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
221 * \param italic font slant value
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
222 * \param index out: font index inside a file
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
223 * \param code: the character that should be present in the font, can be 0
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
224 * \return font file path
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
225 */
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
226 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index,
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
227 uint32_t code)
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
228 {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
229 char* res = 0;
26582
62ac4f8062ee Remove libass dependency on global font_fontconfig variable.
eugeni
parents: 25351
diff changeset
230 if (!priv->config) {
25351
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
231 *index = priv->index_default;
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
232 return priv->path_default;
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
233 }
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
234 if (family && *family)
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
235 res = _select_font(priv, family, bold, italic, index, code);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
236 if (!res && priv->family_default) {
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
237 res = _select_font(priv, priv->family_default, bold, italic, index, code);
21279
9040bce9f768 Remove obsolete "no_more_font_messages" hack.
eugeni
parents: 21066
diff changeset
238 if (res)
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
239 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingDefaultFontFamily,
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
240 family, bold, italic, res, *index);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
241 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
242 if (!res && priv->path_default) {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
243 res = priv->path_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
244 *index = priv->index_default;
21279
9040bce9f768 Remove obsolete "no_more_font_messages" hack.
eugeni
parents: 21066
diff changeset
245 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingDefaultFont,
9040bce9f768 Remove obsolete "no_more_font_messages" hack.
eugeni
parents: 21066
diff changeset
246 family, bold, italic, res, *index);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
247 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
248 if (!res) {
23980
27bac14b4ce4 More simple and correct font reselection.
eugeni
parents: 23216
diff changeset
249 res = _select_font(priv, "Arial", bold, italic, index, code);
21279
9040bce9f768 Remove obsolete "no_more_font_messages" hack.
eugeni
parents: 21066
diff changeset
250 if (res)
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
251 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingArialFontFamily,
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
252 family, bold, italic, res, *index);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
253 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
254 if (res)
20629
e8885ec63928 Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents: 20105
diff changeset
255 mp_msg(MSGT_ASS, MSGL_V, "fontconfig_select: (%s, %d, %d) -> %s, %d\n",
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
256 family, bold, italic, res, *index);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
257 return res;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
258 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
259
23216
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
260 #if (FC_VERSION < 20402)
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
261 static char* validate_fname(char* name)
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
262 {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
263 char* fname;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
264 char* p;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
265 char* q;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
266 unsigned code;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
267 int sz = strlen(name);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
268
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
269 q = fname = malloc(sz + 1);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
270 p = name;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
271 while (*p) {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
272 code = utf8_get_char(&p);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
273 if (code == 0)
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
274 break;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
275 if ( (code > 0x7F) ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
276 (code == '\\') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
277 (code == '/') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
278 (code == ':') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
279 (code == '*') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
280 (code == '?') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
281 (code == '<') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
282 (code == '>') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
283 (code == '|') ||
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
284 (code == 0))
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
285 {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
286 *q++ = '_';
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
287 } else {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
288 *q++ = code;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
289 }
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
290 if (p - name > sz)
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
291 break;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
292 }
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
293 *q = 0;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
294 return fname;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
295 }
23216
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
296 #endif
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
297
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
298 /**
21630
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
299 * \brief Process memory font.
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
300 * \param priv private data
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
301 * \param library library object
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
302 * \param ftlibrary freetype library object
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
303 * \param idx index of the processed font in library->fontdata
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
304 * With FontConfig >= 2.4.2, builds a font pattern in memory via FT_New_Memory_Face/FcFreeTypeQueryFace.
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
305 * With older FontConfig versions, save the font to ~/.mplayer/fonts.
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
306 */
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
307 static void process_fontdata(fc_instance_t* priv, ass_library_t* library, FT_Library ftlibrary, int idx)
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
308 {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
309 int rc;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
310 const char* name = library->fontdata[idx].name;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
311 const char* data = library->fontdata[idx].data;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
312 int data_size = library->fontdata[idx].size;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
313
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
314 #if (FC_VERSION < 20402)
23216
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
315 struct stat st;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
316 char* fname;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
317 const char* fonts_dir = library->fonts_dir;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
318 char buf[1000];
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
319 FILE* fp = 0;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
320
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
321 if (!fonts_dir)
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
322 return;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
323 rc = stat(fonts_dir, &st);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
324 if (rc) {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
325 int res;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
326 #ifndef __MINGW32__
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
327 res = mkdir(fonts_dir, 0700);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
328 #else
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
329 res = mkdir(fonts_dir);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
330 #endif
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
331 if (res) {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
332 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FailedToCreateDirectory, fonts_dir);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
333 }
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
334 } else if (!S_ISDIR(st.st_mode)) {
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
335 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NotADirectory, fonts_dir);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
336 }
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
337
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
338 fname = validate_fname((char*)name);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
339
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
340 snprintf(buf, 1000, "%s/%s", fonts_dir, fname);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
341 free(fname);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
342
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
343 fp = fopen(buf, "wb");
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
344 if (!fp) return;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
345
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
346 fwrite(data, data_size, 1, fp);
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
347 fclose(fp);
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
348
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
349 #else // (FC_VERSION >= 20402)
23216
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
350 FT_Face face;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
351 FcPattern* pattern;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
352 FcFontSet* fset;
b863ed752149 Move variables and a function under #ifdef FC_VERSION to avoid warnings.
eugeni
parents: 23215
diff changeset
353 FcBool res;
26824
6112b693fab9 Read all faces of a memory font, not just the first one.
eugeni
parents: 26819
diff changeset
354 int face_index, num_faces = 1;
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
355
26824
6112b693fab9 Read all faces of a memory font, not just the first one.
eugeni
parents: 26819
diff changeset
356 for (face_index = 0; face_index < num_faces; ++face_index) {
26825
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
357 rc = FT_New_Memory_Face(ftlibrary, (unsigned char*)data, data_size, face_index, &face);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
358 if (rc) {
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
359 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorOpeningMemoryFont, name);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
360 return;
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
361 }
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
362 num_faces = face->num_faces;
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
363
26825
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
364 pattern = FcFreeTypeQueryFace(face, (unsigned char*)name, 0, FcConfigGetBlanks(priv->config));
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
365 if (!pattern) {
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
366 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FunctionCallFailed, "FcFreeTypeQueryFace");
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
367 FT_Done_Face(face);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
368 return;
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
369 }
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
370
26825
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
371 fset = FcConfigGetFonts(priv->config, FcSetSystem); // somehow it failes when asked for FcSetApplication
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
372 if (!fset) {
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
373 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FunctionCallFailed, "FcConfigGetFonts");
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
374 FT_Done_Face(face);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
375 return;
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
376 }
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
377
26825
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
378 res = FcFontSetAdd(fset, pattern);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
379 if (!res) {
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
380 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FunctionCallFailed, "FcFontSetAdd");
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
381 FT_Done_Face(face);
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
382 return;
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
383 }
13ef1f050cfc Cosmetics: reindent after the last commit.
eugeni
parents: 26824
diff changeset
384
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
385 FT_Done_Face(face);
26824
6112b693fab9 Read all faces of a memory font, not just the first one.
eugeni
parents: 26819
diff changeset
386 }
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
387 #endif
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
388 }
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
389
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
390 /**
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
391 * \brief Init fontconfig.
21630
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
392 * \param library libass library object
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
393 * \param ftlibrary freetype library object
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
394 * \param family default font family
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
395 * \param path default font path
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
396 * \return pointer to fontconfig private data
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
397 */
26582
62ac4f8062ee Remove libass dependency on global font_fontconfig variable.
eugeni
parents: 25351
diff changeset
398 fc_instance_t* fontconfig_init(ass_library_t* library, FT_Library ftlibrary, const char* family, const char* path, int fc)
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
399 {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
400 int rc;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
401 fc_instance_t* priv = calloc(1, sizeof(fc_instance_t));
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
402 const char* dir = library->fonts_dir;
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
403 int i;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
404
26582
62ac4f8062ee Remove libass dependency on global font_fontconfig variable.
eugeni
parents: 25351
diff changeset
405 if (!fc) {
25351
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
406 mp_msg(MSGT_ASS, MSGL_WARN,
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
407 MSGTR_LIBASS_FontconfigDisabledDefaultFontWillBeUsed);
26582
62ac4f8062ee Remove libass dependency on global font_fontconfig variable.
eugeni
parents: 25351
diff changeset
408 priv->config = NULL;
25351
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
409 priv->path_default = strdup(path);
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
410 priv->index_default = 0;
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
411 return priv;
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
412 }
f46e91c64b39 Fix libass to support -nofontconfig.
ulion
parents: 23988
diff changeset
413
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
414 rc = FcInit();
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
415 assert(rc);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
416
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
417 priv->config = FcConfigGetCurrent();
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
418 if (!priv->config) {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
419 mp_msg(MSGT_ASS, MSGL_FATAL, MSGTR_LIBASS_FcInitLoadConfigAndFontsFailed);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
420 return 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
421 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
422
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
423 for (i = 0; i < library->num_fontdata; ++i)
21460
62bd8e0d3a0f Open embedded fonts directly from memory.
eugeni
parents: 21458
diff changeset
424 process_fontdata(priv, library, ftlibrary, i);
21458
7af6c25a0cfc Keep embedded fonts in ass_library_t and perform actual disk write
eugeni
parents: 21351
diff changeset
425
19340
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
426 if (FcDirCacheValid((const FcChar8 *)dir) == FcFalse)
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
427 {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
428 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_UpdatingFontCache);
20105
bcb586a0800c Avoid crash with fontconfig 2.3.9x (as shipped with SuSE 10.1, FcDirScan is broken)
reimar
parents: 20008
diff changeset
429 if (FcGetVersion() >= 20390 && FcGetVersion() < 20400)
20629
e8885ec63928 Introduce MSGT_ASS, use it for all libass messages.
eugeni
parents: 20105
diff changeset
430 mp_msg(MSGT_ASS, MSGL_WARN,
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
431 MSGTR_LIBASS_BetaVersionsOfFontconfigAreNotSupported);
19901
27b87a9dc19a Don't call FcDirScan/FcDirSave with FontConfig >= 2.4.
eugeni
parents: 19481
diff changeset
432 // FontConfig >= 2.4.0 updates cache automatically in FcConfigAppFontAddDir()
20105
bcb586a0800c Avoid crash with fontconfig 2.3.9x (as shipped with SuSE 10.1, FcDirScan is broken)
reimar
parents: 20008
diff changeset
433 if (FcGetVersion() < 20390) {
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
434 FcFontSet* fcs;
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
435 FcStrSet* fss;
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
436 fcs = FcFontSetCreate();
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
437 fss = FcStrSetCreate();
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
438 rc = FcStrSetAdd(fss, (const FcChar8*)dir);
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
439 if (!rc) {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
440 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FcStrSetAddFailed);
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
441 goto ErrorFontCache;
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
442 }
19340
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
443
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
444 rc = FcDirScan(fcs, fss, NULL, FcConfigGetBlanks(priv->config), (const FcChar8 *)dir, FcFalse);
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
445 if (!rc) {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
446 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FcDirScanFailed);
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
447 goto ErrorFontCache;
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
448 }
19340
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
449
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
450 rc = FcDirSave(fcs, fss, (const FcChar8 *)dir);
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
451 if (!rc) {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
452 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FcDirSave);
19902
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
453 goto ErrorFontCache;
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
454 }
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
455 ErrorFontCache:
2c43912bb46a Cosmetics: fix indentation after last commit.
eugeni
parents: 19901
diff changeset
456 ;
19901
27b87a9dc19a Don't call FcDirScan/FcDirSave with FontConfig >= 2.4.
eugeni
parents: 19481
diff changeset
457 }
19340
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
458 }
f0d49f38ce97 Use FontConfig cache to speedup mplayer startup.
eugeni
parents: 19064
diff changeset
459
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
460 rc = FcConfigAppFontAddDir(priv->config, (const FcChar8*)dir);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
461 if (!rc) {
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
462 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FcConfigAppFontAddDirFailed);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
463 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
464
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
465 priv->family_default = family ? strdup(family) : 0;
22946
e7f1374cac88 Don't check if user-supplied default font path exists.
eugeni
parents: 22292
diff changeset
466 priv->path_default = path ? strdup(path) : 0;
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
467 priv->index_default = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
468
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
469 return priv;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
470 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
471
21630
0d8005d2fe5c Update some comments.
eugeni
parents: 21615
diff changeset
472 #else // HAVE_FONTCONFIG
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
473
23988
3b830c7e0eb2 Fix compilation of ass_fontconfig.c when fontconfig is disabled.
iive
parents: 23980
diff changeset
474 char* fontconfig_select(fc_instance_t* priv, const char* family, unsigned bold, unsigned italic, int* index,
3b830c7e0eb2 Fix compilation of ass_fontconfig.c when fontconfig is disabled.
iive
parents: 23980
diff changeset
475 uint32_t code)
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
476 {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
477 *index = priv->index_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
478 return priv->path_default;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
479 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
480
26620
c64b5434f2de Fix the second fontconfig_init function as the declaration in the .h file.
ulion
parents: 26616
diff changeset
481 fc_instance_t* fontconfig_init(ass_library_t* library, FT_Library ftlibrary, const char* family, const char* path, int fc)
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
482 {
19481
5890c54b755c no c++ decls!
rfelker
parents: 19340
diff changeset
483 fc_instance_t* priv;
5890c54b755c no c++ decls!
rfelker
parents: 19340
diff changeset
484
21066
6196ba31e97e MSGTRs for libass
kraymer
parents: 21026
diff changeset
485 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_FontconfigDisabledDefaultFontWillBeUsed);
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
486
19481
5890c54b755c no c++ decls!
rfelker
parents: 19340
diff changeset
487 priv = calloc(1, sizeof(fc_instance_t));
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
488
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
489 priv->path_default = strdup(path);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
490 priv->index_default = 0;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
491 return priv;
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
492 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
493
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
494 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
495
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
496 void fontconfig_done(fc_instance_t* priv)
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
497 {
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
498 // don't call FcFini() here, library can still be used by some code
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
499 if (priv && priv->path_default) free(priv->path_default);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
500 if (priv && priv->family_default) free(priv->family_default);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
501 if (priv) free(priv);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
502 }
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
503
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
504